/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ========================================
   LOUD LEGION - Custom Theme Styles
   ======================================== */

/* ---------- Global Reset & Base ---------- */
:root {
  --ll-black: #0a0a0f;
  --ll-dark: #12121a;
  --ll-darker: #0e0e16;
  --ll-red: #c0392b;
  --ll-red-bright: #e74c3c;
  --ll-gold: #f39c12;
  --ll-orange: #e67e22;
  --ll-pink: #e91e8c;
  --ll-white: #f5f5f5;
  --ll-gray: #8a8a9a;
  --ll-font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --ll-font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

body {
  background-color: var(--ll-black) !important;
  color: var(--ll-white) !important;
  font-family: var(--ll-font-body) !important;
  overflow-x: hidden;
}

/* ---------- Age Gate Overrides ---------- */
.age-gate-wrapper {
  font-family: var(--ll-font-body) !important;
}

.age-gate-wrapper .age-gate__heading {
  font-family: var(--ll-font-heading) !important;
  letter-spacing: 4px;
  font-size: 3rem !important;
  text-transform: uppercase;
}

.age-gate-wrapper .age-gate__subheading {
  font-size: 1.1rem !important;
  opacity: 0.8;
  letter-spacing: 1px;
}

.age-gate-wrapper button {
  font-family: var(--ll-font-heading) !important;
  letter-spacing: 2px;
  font-size: 1.2rem !important;
  padding: 12px 40px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
}

.age-gate-wrapper button.age-gate-submit-yes {
  background: var(--ll-red) !important;
  border: 2px solid var(--ll-red-bright) !important;
}

.age-gate-wrapper button.age-gate-submit-yes:hover {
  background: var(--ll-red-bright) !important;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(231, 76, 60, 0.5);
}

.age-gate-wrapper button.age-gate-submit-no {
  background: transparent !important;
  border: 2px solid var(--ll-gray) !important;
}

.age-gate-wrapper button.age-gate-submit-no:hover {
  border-color: var(--ll-white) !important;
}

/* ---------- Navigation ---------- */
.ll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease;
}

.ll-nav.scrolled {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.ll-nav__logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(192, 57, 43, 0.3));
}

.ll-nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ll-nav__links a {
  color: var(--ll-white);
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.ll-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ll-red);
  transition: width 0.3s ease;
}

.ll-nav__links a:hover {
  color: var(--ll-red-bright);
}

.ll-nav__links a:hover::after {
  width: 100%;
}

/* ---------- Hero Section ---------- */
.ll-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ll-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.ll-hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.3) 0%,
    rgba(10,10,15,0.1) 40%,
    rgba(10,10,15,0.6) 80%,
    rgba(10,10,15,1) 100%
  );
}

.ll-hero__content {
  position: relative;
  z-index: 2;
  margin-top: 40vh;
  cursor: pointer;
}

.ll-hero__logo {
  max-width: 400px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
  animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ll-hero__tagline {
  font-family: var(--ll-font-heading);
  font-size: 1.3rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ll-white);
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.ll-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.ll-hero__scroll svg {
  width: 30px;
  height: 30px;
  fill: var(--ll-white);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---------- Section Base ---------- */
.ll-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ll-section__title {
  font-family: var(--ll-font-heading) !important;
  font-size: 3.5rem !important;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px !important;
  color: var(--ll-white) !important;
}

.ll-section__subtitle {
  text-align: center;
  color: var(--ll-gray);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.ll-section__divider {
  width: 60px;
  height: 3px;
  background: var(--ll-red);
  margin: 0 auto 60px;
}

/* ---------- Products Grid ---------- */
.ll-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.ll-product-card {
  position: relative;
  background: var(--ll-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}

.ll-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ll-product-card--georgia:hover {
  border-color: rgba(243,156,18,0.4);
  background: linear-gradient(0deg, rgba(243,156,18,0.35) 0%, rgba(243,156,18,0.15) 50%, var(--ll-dark) 80%);
  box-shadow: 0 20px 60px rgba(243,156,18,0.15);
}

.ll-product-card--jetfuel:hover {
  border-color: rgba(192,57,43,0.4);
  background: linear-gradient(0deg, rgba(192,57,43,0.35) 0%, rgba(192,57,43,0.15) 50%, var(--ll-dark) 80%);
  box-shadow: 0 20px 60px rgba(192,57,43,0.15);
}

.ll-product-card--pinkgoo:hover {
  border-color: rgba(233,30,140,0.4);
  background: linear-gradient(0deg, rgba(233,30,140,0.35) 0%, rgba(233,30,140,0.15) 50%, var(--ll-dark) 80%);
  box-shadow: 0 20px 60px rgba(233,30,140,0.15);
}

.ll-product-card__image {
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  overflow: hidden;
}

.ll-product-card__image img {
  max-height: 280px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}

.ll-product-card:hover .ll-product-card__image img {
  transform: scale(1.08) rotate(-2deg);
}

.ll-product-card--georgia .ll-product-card__image {
  background: radial-gradient(circle at center, rgba(243,156,18,0.15) 0%, transparent 70%);
}

.ll-product-card--jetfuel .ll-product-card__image {
  background: radial-gradient(circle at center, rgba(192,57,43,0.15) 0%, transparent 70%);
}

.ll-product-card--pinkgoo .ll-product-card__image {
  background: radial-gradient(circle at center, rgba(233,30,140,0.15) 0%, transparent 70%);
}

.ll-product-card__info {
  padding: 25px 30px 30px;
  text-align: center;
}

.ll-product-card__name {
  font-family: var(--ll-font-heading) !important;
  font-size: 2rem !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ll-white) !important;
  margin-bottom: 8px !important;
}

.ll-product-card__type {
  color: var(--ll-red);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.ll-product-card__sizes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.ll-product-card__size {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--ll-gray);
  letter-spacing: 1px;
}

/* ---------- About Section ---------- */
.ll-about {
  position: relative;
  background: var(--ll-darker);
  overflow: hidden;
}

.ll-about::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ll-about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ll-about__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ll-gray);
  margin-bottom: 30px;
}

.ll-about__text strong {
  color: var(--ll-white);
}

/* ---------- Footer ---------- */
.ll-footer {
  background: var(--ll-darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 40px 30px;
  text-align: center;
}

.ll-footer__logo img {
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.ll-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ll-footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ll-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ll-footer__social a:hover {
  border-color: var(--ll-red);
  background: rgba(192,57,43,0.15);
  transform: translateY(-3px);
}

.ll-footer__legal {
  color: var(--ll-gray);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.ll-footer__warning {
  color: var(--ll-gray);
  font-size: 0.75rem;
  margin-top: 15px;
  opacity: 0.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
/* ---------- Tablet (max 992px) ---------- */
@media (max-width: 992px) {
  .ll-products {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .ll-section__title {
    font-size: 2.5rem !important;
  }
  
  .ll-hero__logo {
    max-width: 280px;
  }
  
  .ll-hero__tagline {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }
  
  .ll-nav {
    padding: 12px 20px;
  }
  
  .ll-nav__links {
    gap: 15px;
  }
  
  .ll-nav__links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .ll-product-card__image {
    height: 280px;
  }
  
  .ll-product-card__name {
    font-size: 1.6rem !important;
  }
  
  .ll-modal__header {
    padding: 25px 25px 15px;
  }
  
  .ll-modal__body {
    padding: 0 25px 25px;
  }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  .ll-products {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .ll-section {
    padding: 70px 20px;
  }
  
  .ll-section__title {
    font-size: 2.2rem !important;
    letter-spacing: 4px;
  }
  
  .ll-section__subtitle {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }
  
  .ll-hero__logo {
    max-width: 240px;
  }
  
  .ll-hero__tagline {
    font-size: 1rem;
    letter-spacing: 4px;
  }
  
  .ll-hero__content {
    margin-top: 35vh !important;
  }
  
  .ll-nav__links {
    display: none;
  }
  
  .ll-nav {
    display: none !important;
  }
  
  .ll-nav__logo img {
    height: 40px;
  }
  
  .ll-product-card__image {
    height: 300px;
    padding: 25px;
  }
  
  .ll-product-card__image img {
    max-height: 260px;
  }
  
  .ll-product-card__name {
    font-size: 1.8rem !important;
  }
  
  .ll-product-card__info {
    padding: 20px 20px 25px;
  }
  
  .ll-about__text {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .ll-footer {
    padding: 40px 20px 25px;
  }
  
  /* Modal mobile */
  .ll-modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 60px;
  }
  
  .ll-modal {
    max-height: calc(100vh - 80px);
    border-radius: 12px;
  }
  
  .ll-modal__header {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px 15px;
    gap: 15px;
  }
  
  .ll-modal__artwork {
    width: 120px;
    height: 120px;
  }
  
  .ll-modal__name {
    font-size: 2rem !important;
  }
  
  .ll-modal__strain-type {
    font-size: 0.65rem;
  }
  
  .ll-modal__body {
    padding: 0 20px 25px;
  }
  
  .ll-modal__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .ll-modal__close {
    top: 10px;
    right: 12px;
  }
  
  .ll-modal__sizes {
    justify-content: center;
  }
  
  /* Contact form mobile */
  .ll-contact-form__input {
    padding: 12px 15px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  
  .ll-contact-form__submit {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* ---------- Small Mobile (max 400px) ---------- */
@media (max-width: 400px) {
  .ll-section__title {
    font-size: 1.8rem !important;
    letter-spacing: 3px;
  }
  
  .ll-hero__logo {
    max-width: 200px;
  }
  
  .ll-hero__tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }
  
  .ll-product-card__name {
    font-size: 1.5rem !important;
  }
  
  .ll-modal__name {
    font-size: 1.7rem !important;
  }
  
  .ll-effect-bar__label {
    font-size: 0.7rem;
  }
  
  .ll-modal__flavor-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  
  .ll-about__text {
    font-size: 0.95rem;
  }
}

/* ---------- Animations ---------- */
.ll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Smoke/Glow Effects ---------- */
.ll-glow {
  position: relative;
}

.ll-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192,57,43,0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---------- WP Overrides ---------- */
.site-header, .site-footer {
  display: none !important;
}

.elementor-page .page-content,
.elementor-page .site-main {
  padding: 0 !important;
  margin: 0 !important;
}

a {
  color: var(--ll-red-bright);
}

a:hover {
  color: var(--ll-red);
}

/* ---------- Product Modal ---------- */
.ll-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ll-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.ll-modal {
  background: var(--ll-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.ll-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--ll-gray);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ll-modal__close:hover {
  color: var(--ll-white);
  background: rgba(255,255,255,0.1);
}

.ll-modal__header {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 30px 20px;
}

.ll-modal__artwork {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ll-modal__artwork img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ll-modal__artwork img:hover {
  transform: scale(1.1);
}

.ll-modal__title-area {
  flex: 1;
}

.ll-modal__name {
  font-family: var(--ll-font-heading) !important;
  font-size: 2.5rem !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ll-white) !important;
  margin: 0 0 5px !important;
  line-height: 1.1;
}

.ll-modal__strain-type {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.ll-modal__strain-type--hybrid {
  background: rgba(243,156,18,0.15);
  color: var(--ll-gold);
  border: 1px solid rgba(243,156,18,0.3);
}

.ll-modal__strain-type--sativa {
  background: rgba(192,57,43,0.15);
  color: var(--ll-red-bright);
  border: 1px solid rgba(192,57,43,0.3);
}

.ll-modal__strain-type--indica {
  background: rgba(233,30,140,0.15);
  color: var(--ll-pink);
  border: 1px solid rgba(233,30,140,0.3);
}

.ll-modal__genetics {
  color: var(--ll-gray);
  font-size: 0.85rem;
  margin: 0;
}

.ll-modal__body {
  padding: 0 30px 30px;
}

.ll-modal__description {
  color: var(--ll-gray);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 25px;
}

.ll-modal__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.ll-modal__stat {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.ll-modal__stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ll-gray);
  margin-bottom: 5px;
}

.ll-modal__stat-value {
  font-family: var(--ll-font-heading);
  font-size: 1.4rem;
  color: var(--ll-white);
  letter-spacing: 1px;
}

.ll-modal__section-title {
  font-family: var(--ll-font-heading) !important;
  font-size: 1.2rem !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ll-white) !important;
  margin: 0 0 15px !important;
}

/* Effect Bars */
.ll-effect-bar {
  margin-bottom: 12px;
}

.ll-effect-bar__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: var(--ll-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ll-effect-bar__track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.ll-effect-bar__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.ll-modal.active .ll-effect-bar__fill {
  /* width set inline */
}

.ll-effect-bar__fill--gold {
  background: linear-gradient(90deg, var(--ll-gold), var(--ll-orange));
}

.ll-effect-bar__fill--red {
  background: linear-gradient(90deg, var(--ll-red), var(--ll-red-bright));
}

.ll-effect-bar__fill--pink {
  background: linear-gradient(90deg, var(--ll-pink), #ff69b4);
}

/* Flavor Tags */
.ll-modal__flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.ll-modal__flavor-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--ll-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sizes in modal */
.ll-modal__sizes {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ll-modal__size {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: var(--ll-font-heading);
  font-size: 1rem;
  color: var(--ll-white);
  letter-spacing: 2px;
}

/* Modal Responsive */
@media (max-width: 600px) {
  .ll-modal__header {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px 15px;
  }
  
  .ll-modal__artwork {
    width: 120px;
    height: 120px;
  }
  
  .ll-modal__name {
    font-size: 2rem !important;
  }
  
  .ll-modal__body {
    padding: 0 20px 25px;
  }
  
  .ll-modal__stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .ll-modal__sizes {
    justify-content: center;
  }
}

/* Scrollbar for modal */
.ll-modal::-webkit-scrollbar {
  width: 6px;
}

.ll-modal::-webkit-scrollbar-track {
  background: transparent;
}

.ll-modal::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.ll-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

/* ---------- Contact Form ---------- */
.ll-contact {
  max-width: 600px;
  margin: 0 auto;
}

.ll-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ll-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ll-contact-form__label {
  font-family: var(--ll-font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ll-gray);
}

.ll-contact-form__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--ll-white);
  font-family: var(--ll-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.ll-contact-form__input:focus {
  border-color: var(--ll-red);
  background: rgba(255,255,255,0.08);
}

.ll-contact-form__input::placeholder {
  color: rgba(255,255,255,0.2);
}

.ll-contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.ll-contact-form__submit {
  background: var(--ll-red);
  border: 2px solid var(--ll-red-bright);
  border-radius: 8px;
  padding: 14px 30px;
  color: var(--ll-white);
  font-family: var(--ll-font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.ll-contact-form__submit:hover {
  background: var(--ll-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.ll-contact-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.ll-contact-form__success.show {
  display: block;
}

.ll-contact-form__success h3 {
  font-family: var(--ll-font-heading) !important;
  font-size: 2rem !important;
  letter-spacing: 3px;
  color: var(--ll-white) !important;
  margin-bottom: 10px !important;
}

.ll-contact-form__success p {
  color: var(--ll-gray);
  font-size: 1rem;
}

/* ---------- Image Lightbox ---------- */
.ll-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.ll-lightbox.active {
  display: flex;
  opacity: 1;
}

.ll-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.8));
  animation: lightboxZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes lightboxZoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ll-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--ll-white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.ll-lightbox__close:hover {
  opacity: 1;
}

/* ---------- Contact Form 7 Dark Theme ---------- */
.wpcf7 label {
  font-family: var(--ll-font-heading) !important;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ll-gray) !important;
  display: block;
  margin-bottom: 18px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  color: var(--ll-white) !important;
  font-family: var(--ll-font-body) !important;
  font-size: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none !important;
  margin-top: 6px;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--ll-red) !important;
  background: rgba(255,255,255,0.08) !important;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255,255,255,0.2) !important;
}

.wpcf7 textarea {
  min-height: 120px !important;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  background: var(--ll-red) !important;
  border: 2px solid var(--ll-red-bright) !important;
  border-radius: 8px !important;
  padding: 14px 30px !important;
  color: var(--ll-white) !important;
  font-family: var(--ll-font-heading) !important;
  font-size: 1.1rem !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 10px;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--ll-red-bright) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.wpcf7-response-output {
  border: none !important;
  background: rgba(255,255,255,0.05) !important;
  color: var(--ll-white) !important;
  border-radius: 8px !important;
  padding: 15px 20px !important;
  text-align: center;
  font-family: var(--ll-font-body) !important;
  margin: 15px 0 0 !important;
}

.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
  background: rgba(46, 204, 113, 0.1) !important;
  color: #2ecc71 !important;
}

.wpcf7-not-valid-tip {
  color: var(--ll-red-bright) !important;
  font-size: 0.8rem;
  margin-top: 5px;
}

.wpcf7-spinner {
  margin: 10px auto;
}