@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
/* In-Tents Events — Global CSS v80 */

:root {
 --hot-pink: #F22490;
 --electric-yellow: #F2EC00;
 --deep-purple: #4A2666;
 --dark-bg: #ffffff;
 --card-bg: #f8f8f8;
 --text-light: #1a1a1a;
 --text-muted: #555555;
 --accent-pink: #F22490;
 --accent-yellow: #F2EC00;
 --transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
 --easing: cubic-bezier(0.23, 1, 0.320, 1);
 --dark-card: #f5f5f5;
 --dark-card-hover: #eeeeee;
 --dark-border: #e0e0e0;
 --radius: 16px;
 --radius-sm: 10px;
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
 overflow-x: hidden;
}

body {
 font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
 background-color: #ffffff;
 color: #1a1a1a;
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
 -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
 html {
 scroll-behavior: auto;
 }
 * {
 animation: none !important;
 transition: none !important;
 }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Space Grotesk', sans-serif;
 font-weight: 700;
 letter-spacing: -0.02em;
}

/* Utility Classes */
.container {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 24px;
}

.section { padding: 100px 0; }
.section-label {
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--hot-pink);
 margin-bottom: 12px;
 text-align: center;
}

.section-title {
 font-family: 'Space Grotesk', sans-serif;
 font-size: clamp(2rem, 5vw, 3rem);
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 16px;
 line-height: 1.1;
 text-align: center;
}

.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-muted);
 max-width: 600px;
 text-align: center;
 margin: 0 auto;
}

.text-center {
 text-align: center;
}

.text-center .section-subtitle {
 margin: 0 auto;
}

.gradient-text {
 background: linear-gradient(135deg, var(--hot-pink), var(--electric-yellow));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* Navigation */
nav {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 padding: 1rem 2rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
 background: var(--deep-purple);
 transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
 background: var(--deep-purple);
 box-shadow: 0 2px 20px rgba(0,0,0,0.15);
 padding: 0.8rem 2rem;
}

.logo {
 height: 50px;
 width: auto;
 display: flex;
 align-items: center;
 text-decoration: none;
 transition: filter 0.3s ease;
 border-radius: 8px;
}

.logo:hover {
 filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 24px rgba(242, 36, 144, 0.3));
}

.logo img {
 height: 100%;
 width: auto;
 filter: brightness(1.1);
 transition: transform 0.3s ease;
}

.logo:hover img {
 transform: scale(1.05);
}

.nav-center {
 display: flex;
 gap: 3rem;
 align-items: center;
}

.nav-center a {
 color: #ffffff;
 text-decoration: none;
 font-size: 0.95rem;
 font-weight: 500;
 position: relative;
 transition: color 0.3s ease;
}

.nav-center a::after {
 content: '';
 position: absolute;
 bottom: -5px;
 left: 0;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, var(--hot-pink), var(--electric-yellow));
 transition: width 0.3s ease;
}

.nav-center a:hover::after {
 width: 100%;
}

.nav-dropdown {
 position: relative;
}

.nav-dropdown-trigger {
 color: #ffffff;
 text-decoration: none;
 font-size: 0.95rem;
 font-weight: 500;
 cursor: pointer;
 transition: color 0.3s ease;
}

.nav-dropdown-menu {
 position: absolute;
 top: 100%;
 left: 50%;
 transform: translateX(-50%);
 background: #ffffff;
 box-shadow: 0 8px 30px rgba(0,0,0,0.12);
 border: 1px solid #e0e0e0;
 border-radius: 12px;
 padding: 8px 0;
 min-width: 200px;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.2s ease, visibility 0.2s ease;
 margin-top: 0;
}

/* Invisible hover bridge — fills the space between nav trigger and dropdown so
   the menu doesn't close as the mouse crosses from trigger to menu items */
.nav-dropdown::after {
 content: '';
 position: absolute;
 top: 100%;
 left: -20px;
 right: -20px;
 height: 16px;
 display: none;
}

.nav-dropdown:hover::after {
 display: block;
}

.nav-dropdown:hover .nav-dropdown-menu {
 opacity: 1;
 visibility: visible;
 margin-top: 0;
}

.nav-dropdown-menu a {
 display: block;
 padding: 10px 20px;
 color: #333;
 text-decoration: none;
 font-size: 0.9rem;
 transition: all 0.2s ease;
 white-space: nowrap;
}

.nav-dropdown-menu a:hover {
 color: var(--hot-pink);
 background: rgba(242, 36, 144, 0.08);
}

.nav-right {
 display: flex;
 gap: 1.5rem;
 align-items: center;
}

.cart-btn {
 background: transparent;
 color: #fff;
 border: 2px solid var(--accent-yellow);
 padding: 0.6rem 1.2rem;
 border-radius: 50px;
 font-weight: 600;
 cursor: pointer;
 font-size: 0.85rem;
 transition: all 0.3s ease;
 position: relative;
 display: flex;
 align-items: center;
 gap: 6px;
 font-family: inherit;
}
.cart-btn:hover {
 background: var(--accent-yellow);
 color: #1a1a1a;
 box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
 transform: translateY(-1px);
}
.cart-btn .cart-icon {
 font-size: 1rem;
 line-height: 1;
}
.cart-btn .cart-count {
 background: var(--hot-pink);
 color: #fff;
 font-size: 0.7rem;
 font-weight: 700;
 min-width: 18px;
 height: 18px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 line-height: 1;
}

/* Rolling cart animation */
@keyframes cartRoll {
 0%, 100% { transform: translateX(0) rotate(0deg); }
 15% { transform: translateX(2px) rotate(3deg); }
 30% { transform: translateX(-1px) rotate(-2deg); }
 45% { transform: translateX(1px) rotate(1.5deg); }
 60% { transform: translateX(-0.5px) rotate(-1deg); }
 75% { transform: translateX(0.5px) rotate(0.5deg); }
}
.cart-btn .cart-icon {
 animation: cartRoll 3s ease-in-out infinite;
 display: inline-block;
}
.cart-btn:hover .cart-icon {
 animation: cartRoll 0.8s ease-in-out infinite;
}

.btn-quote {
 background: linear-gradient(135deg, var(--hot-pink), #ff006e);
 color: white;
 border: none;
 padding: 0.75rem 1.5rem;
 border-radius: 50px;
 font-weight: 600;
 cursor: pointer;
 font-size: 0.9rem;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.btn-quote::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: rgba(255, 255, 255, 0.2);
 transition: left 0.3s ease;
}

.btn-quote:hover::before {
 left: 100%;
}

.btn-quote:hover {
 transform: translateY(-2px);
 box-shadow: 0 10px 30px rgba(242, 36, 144, 0.4);
}

.hamburger {
 display: none;
 width: 44px;
 height: 44px;
 cursor: pointer;
 border: none;
 background: rgba(255,255,255,0.08);
 border-radius: 12px;
 position: relative;
 z-index: 1001;
 transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
 backdrop-filter: blur(8px);
 align-items: center;
 justify-content: center;
 flex-direction: column;
 gap: 0;
 padding: 0;
}

@media (hover: hover) {
 .hamburger:hover {
 background: rgba(242,36,144,0.2);
 transform: scale(1.08);
 box-shadow: 0 0 20px rgba(242,36,144,0.25);
 }
}

.hamburger:active {
 transform: scale(0.95);
}

.hamburger span {
 display: block;
 width: 22px;
 height: 2px;
 background: #ffffff;
 border-radius: 2px;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}

.hamburger span:nth-child(1) {
 top: 14px;
}

.hamburger span:nth-child(2) {
 top: 21px;
 width: 16px;
}

.hamburger span:nth-child(3) {
 top: 28px;
}

.hamburger.active {
 background: rgba(242,36,144,0.25);
 box-shadow: 0 0 24px rgba(242,36,144,0.3);
}

.hamburger.active span:nth-child(1) {
 top: 21px;
 transform: translateX(-50%) rotate(45deg);
 background: #F22490;
 width: 22px;
}

.hamburger.active span:nth-child(2) {
 opacity: 0;
 transform: translateX(-50%) scaleX(0);
 width: 0;
}

.hamburger.active span:nth-child(3) {
 top: 21px;
 transform: translateX(-50%) rotate(-45deg);
 background: #F22490;
 width: 22px;
}

/* ── Mobile Menu: Over-the-top animated effects (touch + mouse) ── */
@keyframes menuTextShimmer {
 0% { background-position: -200% center; }
 100% { background-position: 200% center; }
}
@keyframes menuLinkSlideIn {
 0% { opacity: 0; transform: translateX(-40px) scale(0.9) skewX(-3deg); filter: blur(6px); }
 60% { opacity: 1; transform: translateX(8px) scale(1.02) skewX(0deg); filter: blur(0); }
 80% { transform: translateX(-3px) scale(0.99); }
 100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes menuBorderSweep {
 0% { background-position: 0% 50%; }
 100% { background-position: 200% 50%; }
}
@keyframes floatingParticle {
 0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
 50% { transform: translateY(-6px) scale(1.3); opacity: 0.8; }
}
@keyframes menuTextPulse {
 0%, 100% { filter: drop-shadow(0 0 0px rgba(242,36,144,0)); }
 50% { filter: drop-shadow(0 0 6px rgba(242,36,144,0.35)); }
}
@keyframes menuLetterBreathe {
 0%, 100% { letter-spacing: 0.5px; }
 50% { letter-spacing: 2px; }
}

/* ============================================
   MOBILE MENU — clean, stable, no disco
   8 links only. No animations. No shimmer.
   ============================================ */
.mobile-menu {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(160deg, rgba(74,38,102,0.98) 0%, rgba(26,10,42,0.99) 100%);
 backdrop-filter: blur(20px);
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 0;
 padding: 80px 32px 32px;
 z-index: 998;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.3s ease, visibility 0.3s ease;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
 opacity: 1;
 visibility: visible;
}

.mobile-menu a {
 color: #ffffff;
 text-decoration: none;
 font-weight: 600;
 font-size: 1.2rem;
 padding: 16px 20px;
 width: 100%;
 max-width: 320px;
 text-align: center;
 font-family: 'Space Grotesk', sans-serif;
 letter-spacing: 0.5px;
 border-bottom: 1px solid rgba(255,255,255,0.08);
 -webkit-tap-highlight-color: transparent;
 transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu a:last-child {
 border-bottom: none;
 margin-top: 12px;
 background: #F22490;
 border-radius: 8px;
 font-weight: 700;
 padding: 14px 20px;
}

.mobile-menu a:active,
.mobile-menu a:hover {
 background: rgba(255,255,255,0.08);
 border-radius: 8px;
}

.mobile-menu a:last-child:active,
.mobile-menu a:last-child:hover {
 background: #d41f7d;
}

/* Mobile submenu (details/summary) — accordion for Hire section */
.mobile-menu .mobile-submenu {
 width: 100%;
 max-width: 320px;
 border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mobile-submenu summary {
 color: #ffffff;
 font-weight: 600;
 font-size: 1.2rem;
 padding: 16px 20px;
 text-align: center;
 font-family: 'Space Grotesk', sans-serif;
 letter-spacing: 0.5px;
 cursor: pointer;
 list-style: none;
 position: relative;
 -webkit-tap-highlight-color: transparent;
}
.mobile-menu .mobile-submenu summary::-webkit-details-marker { display: none; }
.mobile-menu .mobile-submenu summary::after {
 content: '▾';
 position: absolute;
 right: 24px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 0.85rem;
 color: rgba(255,255,255,0.6);
 transition: transform 0.25s ease;
}
.mobile-menu .mobile-submenu[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.mobile-menu .mobile-submenu a {
 font-size: 1rem;
 padding: 12px 20px;
 color: rgba(255,255,255,0.85);
 border-bottom: none;
 background: rgba(255,255,255,0.03);
 margin-top: 2px;
 border-radius: 6px;
}
.mobile-menu .mobile-submenu a:first-of-type { margin-top: 4px; }
.mobile-menu .mobile-submenu a:last-child {
 margin-top: 2px;
 background: rgba(255,255,255,0.03);
 color: rgba(255,255,255,0.85);
 border-radius: 6px;
 font-weight: 600;
 padding: 12px 20px;
}

@media (max-width: 1024px) and (min-width: 769px) {
 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 768px) {
 .nav-center {
 display: none;
 }
 .hamburger {
 display: flex;
 }
 .nav-right {
 gap: 1rem;
 }
 .btn-quote {
 padding: 0.6rem 1.2rem;
 font-size: 0.85rem;
 }
}

/* Hero Section */
.hero {
 min-height: 100vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 background: var(--deep-purple);
 padding-top: 80px;
 position: relative;
 overflow: hidden;
}

.hero-video {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}
/* Video plays on ALL devices — it's our selling point */

.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(74, 38, 102, 0.3) 100%);
 z-index: 1;
}

.hero::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -20%;
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, rgba(242, 36, 144, 0.15) 0%, transparent 70%);
 border-radius: 50%;
 animation: float 6s ease-in-out infinite;
 z-index: 0;
}

.hero::after {
 content: '';
 position: absolute;
 bottom: -30%;
 left: -10%;
 width: 500px;
 height: 500px;
 background: radial-gradient(circle, rgba(242, 236, 0, 0.1) 0%, transparent 70%);
 border-radius: 50%;
 animation: float 8s ease-in-out infinite reverse;
 z-index: 0;
}

@keyframes float {
 0%, 100% { transform: translateY(0px); }
 50% { transform: translateY(30px); }
}

.hero-content {
 z-index: 10;
 text-align: center;
 max-width: 900px;
 padding: 0 2rem;
}

.hero h1 {
 font-size: clamp(2.5rem, 8vw, 5rem);
 margin-bottom: 1rem;
 line-height: 1.2;
 background: linear-gradient(135deg, var(--hot-pink) 0%, var(--electric-yellow) 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 animation: slideInUp 0.8s ease 0.2s both;
}

@keyframes slideInUp {
 from {
 opacity: 0;
 transform: translateY(40px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.hero p {
 font-size: clamp(1rem, 3vw, 1.3rem);
 color: rgba(255,255,255,0.8);
 margin-bottom: 2.5rem;
 animation: slideInUp 0.8s ease 0.4s both;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.hero-cta {
 display: flex;
 gap: 1.5rem;
 justify-content: center;
 flex-wrap: wrap;
 animation: slideInUp 0.8s ease 0.6s both;
}

.btn-primary {
 background: linear-gradient(135deg, var(--hot-pink), #ff006e);
 color: white;
 border: none;
 padding: 1rem 2.5rem;
 border-radius: 50px;
 font-weight: 700;
 cursor: pointer;
 font-size: 1rem;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 font-family: 'Space Grotesk', sans-serif;
 text-decoration: none;
 display: inline-block;
}

.btn-primary::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: rgba(255, 255, 255, 0.25);
 transition: left 0.4s ease;
}

.btn-primary:hover::before {
 left: 100%;
}

.btn-primary:hover {
 transform: translateY(-4px);
 box-shadow: 0 15px 40px rgba(242, 36, 144, 0.5);
}

.btn-secondary {
 background: transparent;
 color: #1a1a1a;
 border: 2px solid var(--hot-pink);
 padding: 1rem 2.5rem;
 border-radius: 50px;
 font-weight: 700;
 cursor: pointer;
 font-size: 1rem;
 transition: all 0.3s ease;
 font-family: 'Space Grotesk', sans-serif;
 position: relative;
 overflow: hidden;
 text-decoration: none;
 display: inline-block;
}
.hero .btn-secondary,
.btn-secondary-light {
 color: #ffffff !important;
 border-color: rgba(255,255,255,0.3) !important;
 background: rgba(74,38,102,0.85) !important;
 backdrop-filter: blur(8px);
}

.btn-secondary::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: var(--hot-pink);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.4s ease;
 z-index: -1;
}

.btn-secondary:hover {
 color: white;
 transform: translateY(-4px);
 box-shadow: 0 15px 40px rgba(242, 36, 144, 0.3);
}

.btn-secondary:hover::before {
 transform: scaleX(1);
}

.hero-stats {
 margin-top: 4rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(242, 36, 144, 0.2);
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 2rem;
 animation: slideInUp 0.8s ease 0.8s both;
}

.stat-item {
 text-align: center;
}

.stat-value {
 font-size: 2rem;
 font-weight: 700;
 background: linear-gradient(135deg, var(--hot-pink), var(--electric-yellow));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-label {
 font-size: 0.9rem;
 color: rgba(255,255,255,0.7);
 margin-top: 0.5rem;
}

/* Service Cards */
.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 max-width: 1200px;
 margin: 0 auto;
 gap: 24px;
}

.service-card {
 background: #ffffff;
 border: none;
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: 0 2px 16px rgba(0,0,0,0.08);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 text-decoration: none;
 color: inherit;
 display: flex;
 flex-direction: column;
}

.service-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 36px rgba(0,0,0,0.15), 0 0 0 1px rgba(242, 36, 144, 0.2);
}

.service-card-img {
 aspect-ratio: 16/10;
 overflow: hidden;
 background: linear-gradient(135deg, #2d1b3d 0%, #4A2666 55%, #b01a6b 100%);
}

.service-card-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s;
}

.service-card-body {
 padding: 20px;
 flex: 1;
 display: flex;
 flex-direction: column;
}

.service-card-desc {
 margin-top: auto;
}

.service-card-title {
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 4px;
}

.service-card-price {
 color: var(--hot-pink);
 font-weight: 600;
 font-size: 0.9rem;
}

.service-card-price::after {
 content: "Setup & delivery calculated on quote submission";
 display: block;
 font-size: 0.7rem;
 font-weight: 400;
 color: var(--text-muted);
 margin-top: 2px;
}

.service-card-desc {
 font-size: 0.85rem;
 color: var(--text-muted);
 margin-top: 8px;
}

/* Breadcrumb */
.breadcrumb {
 padding: 100px 0 20px;
 font-size: 0.85rem;
 color: var(--text-muted);
 text-align: center;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
}

.breadcrumb a {
 color: var(--hot-pink);
 text-decoration: none;
}

.breadcrumb a:hover {
 text-decoration: underline;
}

.breadcrumb span {
 margin: 0 8px;
}

/* Breadcrumb on dark backgrounds (hero/photo overlays) */
section[style*="overflow: hidden"] .breadcrumb,
.hero .breadcrumb {
 color: rgba(255,255,255,0.7);
}
section[style*="overflow: hidden"] .breadcrumb a,
.hero .breadcrumb a {
 color: var(--electric-yellow);
}

/* Product Page */
.product-page {
 padding-bottom: 100px;
}

.product-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: start;
}

.product-gallery {
 position: sticky;
 top: 100px;
}

.product-gallery-main {
 width: 100%;
 aspect-ratio: 4/3;
 border-radius: var(--radius);
 overflow: hidden;
 background: var(--dark-card);
 margin-bottom: 12px;
}

.product-gallery-main img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.product-gallery-thumbs {
 display: flex;
 gap: 8px;
}

.product-gallery-thumbs img {
 width: 72px;
 height: 54px;
 object-fit: cover;
 border-radius: 8px;
 cursor: pointer;
 opacity: 0.5;
 transition: opacity var(--transition);
 border: 2px solid transparent;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
 opacity: 1;
 border-color: var(--hot-pink);
}

/* Lightbox overlay for product photos */
.photo-lightbox {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0,0,0,0.92);
 z-index: 10000;
 cursor: zoom-out;
 align-items: center;
 justify-content: center;
 animation: lbFadeIn 0.25s ease;
}
.photo-lightbox.active { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.photo-lightbox img {
 max-width: 90vw;
 max-height: 85vh;
 object-fit: contain;
 border-radius: 12px;
 box-shadow: 0 8px 40px rgba(0,0,0,0.5);
 animation: lbZoomIn 0.3s ease;
}
@keyframes lbZoomIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.photo-lightbox .lb-close {
 position: absolute;
 top: 20px;
 right: 24px;
 color: #fff;
 font-size: 2rem;
 cursor: pointer;
 background: rgba(255,255,255,0.1);
 border: none;
 width: 48px;
 height: 48px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background 0.2s;
}
.photo-lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }
.product-gallery-main img,
.product-gallery-thumbs img {
 cursor: zoom-in;
}

.product-info h1 {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 2.2rem;
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 8px;
}

.product-meta {
 display: flex;
 gap: 24px;
 margin-bottom: 24px;
 flex-wrap: wrap;
}

.product-meta-item {
 font-size: 0.85rem;
 color: var(--text-muted);
}

.product-meta-item strong {
 color: var(--hot-pink);
 display: block;
 font-size: 1rem;
}

.product-description {
 color: var(--text-light);
 margin-bottom: 32px;
 line-height: 1.7;
}

.product-features {
 margin-bottom: 32px;
}

.product-features h3 {
 color: #1a1a1a;
 margin-bottom: 12px;
 font-size: 1rem;
}

.product-features ul {
 list-style: none;
}

.product-features li {
 padding: 6px 0;
 color: var(--text-muted);
 font-size: 0.9rem;
 display: flex;
 align-items: center;
 gap: 8px;
}

.product-features li::before {
 content: '✓';
 color: var(--hot-pink);
 font-weight: 700;
}

/* Pack Cards */
.pack-cards {
 display: grid;
 gap: 16px;
 margin-bottom: 32px;
}

.pack-card {
 background: var(--dark-card);
 border: 1px solid var(--dark-border);
 border-radius: var(--radius);
 padding: 24px;
 cursor: pointer;
 transition: all var(--transition);
 position: relative;
}

.pack-card:hover {
 border-color: rgba(242, 36, 144, 0.3);
 background: var(--dark-card-hover);
}

.pack-card.selected {
 border-color: var(--hot-pink);
 background: rgba(242, 36, 144, 0.08);
}

.pack-card.popular {
 border-color: var(--electric-yellow);
}

.pack-card.popular::before {
 content: 'MOST POPULAR';
 position: absolute;
 top: -10px;
 right: 16px;
 background: var(--electric-yellow);
 color: var(--dark-bg);
 font-size: 0.65rem;
 font-weight: 800;
 padding: 3px 10px;
 border-radius: 20px;
 letter-spacing: 1px;
}

.pack-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 12px;
}

.pack-name {
 font-weight: 700;
 color: #1a1a1a;
 font-size: 1.1rem;
}

.pack-price {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--hot-pink);
}

.pack-includes {
 list-style: none;
}

.pack-includes li {
 font-size: 0.82rem;
 color: var(--text-muted);
 padding: 3px 0;
 display: flex;
 align-items: center;
 gap: 6px;
}

.pack-includes li::before {
 content: '•';
 color: var(--hot-pink);
}

.pack-add-btn {
 width: 100%;
 margin-top: 16px;
 padding: 12px;
 border-radius: 50px;
 font-weight: 600;
 font-size: 0.9rem;
 cursor: pointer;
 border: none;
 transition: all var(--transition);
 background: linear-gradient(135deg, var(--hot-pink), #d41f7c);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
}

.pack-add-btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 4px 20px rgba(242, 36, 144, 0.3);
}

/* Specs Table */
.specs-table {
 width: 100%;
 border-collapse: collapse;
 margin-bottom: 32px;
}

.specs-table td {
 padding: 12px 16px;
 border-bottom: 1px solid var(--dark-border);
 font-size: 0.9rem;
}

.specs-table td:first-child {
 color: var(--text-muted);
 width: 40%;
}

.specs-table td:last-child {
 color: #1a1a1a;
 font-weight: 500;
}

/* Size Grid */
.size-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
 gap: 20px;
}

.size-card {
 background: var(--dark-card);
 border: 1px solid var(--dark-border);
 border-radius: var(--radius);
 overflow: hidden;
 transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color var(--transition), box-shadow var(--transition);
 text-decoration: none;
 color: inherit;
 display: flex;
 flex-direction: column;
 transform: translateY(0) rotateX(0deg);
 transform-style: preserve-3d;
 perspective: 800px;
}

.size-card:hover {
 border-color: rgba(242, 36, 144, 0.4);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(242, 36, 144, 0.15);
}

.size-card-img {
 aspect-ratio: 16/10;
 overflow: hidden;
 background: #f0f0f0;
}

.size-card-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s;
}

.size-card-body {
 padding: 16px;
 flex: 1;
 display: flex;
 flex-direction: column;
}

.size-card-title {
 font-weight: 700;
 color: #1a1a1a;
 font-size: 1.1rem;
}

.size-card-meta {
 font-size: 0.8rem;
 color: var(--text-muted);
 margin: 4px 0 8px;
}

.size-card-price {
 color: var(--hot-pink);
 font-weight: 700;
 font-size: 1rem;
}

/* Cart Slide-out */
.cart-overlay {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.6);
 z-index: 9998;
 opacity: 0;
 pointer-events: none;
 transition: opacity var(--transition);
}

.cart-overlay.open {
 opacity: 1;
 pointer-events: all;
}

.cart-panel {
 position: fixed;
 top: 0;
 right: 0; transform: translateX(100%);
 width: 420px;
 max-width: 90vw;
 height: 100vh;
 background: #ffffff;
 z-index: 9999;
 transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 display: flex;
 flex-direction: column;
 overflow-y: auto;
 border-left: 1px solid var(--dark-border);
}

.cart-panel.open {
 transform: translateX(0);
}

.cart-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 20px 24px;
 border-bottom: 1px solid var(--dark-border);
}

.cart-header h2 {
 font-family: 'Space Grotesk', sans-serif;
 color: #1a1a1a;
 font-size: 1.2rem;
}

.cart-close {
 background: none;
 border: none;
 color: var(--text-muted);
 font-size: 1.5rem;
 cursor: pointer;
 transition: color var(--transition);
}

.cart-close:hover {
 color: #1a1a1a;
}

.cart-items {
 flex: 0 0 auto;
 overflow-y: auto;
 padding: 16px 24px;
 max-height: 40vh;
}

.cart-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 16px 0;
 border-bottom: 1px solid var(--dark-border);
}

.cart-item-info h4 {
 color: #1a1a1a;
 font-size: 0.9rem;
 margin-bottom: 2px;
}

.cart-item-info p {
 color: var(--text-muted);
 font-size: 0.8rem;
}

.cart-item-price {
 color: var(--hot-pink);
 font-weight: 700;
 white-space: nowrap;
}

.cart-item-remove {
 background: none;
 border: none;
 color: var(--text-muted);
 cursor: pointer;
 font-size: 0.75rem;
 margin-left: 12px;
}

.cart-item-remove:hover {
 color: #ff4444;
}

.cart-empty {
 text-align: center;
 color: var(--text-muted);
 padding: 60px 0;
}

.cart-empty p {
 margin-bottom: 8px;
}

.cart-footer {
 padding: 20px 24px;
 border-top: 1px solid var(--dark-border);
}

.cart-total {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 8px;
}

.cart-total-label {
 color: var(--text-muted);
 font-size: 0.9rem;
}

.cart-total-price {
 color: #1a1a1a;
 font-family: 'Space Grotesk', sans-serif;
 font-size: 1.3rem;
 font-weight: 700;
}

.cart-note {
 font-size: 0.75rem;
 color: var(--text-muted);
 margin-bottom: 16px;
}

.cart-checkout-btn {
 width: 100%;
 padding: 14px;
 border-radius: 50px;
 font-weight: 700;
 font-size: 1rem;
 cursor: pointer;
 border: none;
 background: linear-gradient(135deg, var(--hot-pink), #d41f7c);
 color: #fff;
 transition: all var(--transition);
}

.cart-checkout-btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 4px 20px rgba(242, 36, 144, 0.3);
}

/* Quote Modal */
.quote-modal-overlay {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0);
 backdrop-filter: blur(0px);
 z-index: 10001;
 display: none;
 align-items: center;
 justify-content: center;
 padding: 24px;
 transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.quote-modal-overlay.open {
 display: flex;
 background: rgba(0, 0, 0, 0.75);
 backdrop-filter: blur(8px);
}

.quote-modal {
 background: linear-gradient(165deg, #111118 0%, #1a1a2e 50%, #0f0f1a 100%);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 20px;
 max-width: 580px;
 width: 100%;
 max-height: 90vh;
 overflow-y: auto;
 padding: 0;
 box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
 transform: translateY(30px) scale(0.95);
 opacity: 0;
 transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
 position: relative;
}

.quote-modal-overlay.open .quote-modal {
 transform: translateY(0) scale(1);
 opacity: 1;
}

.quote-modal-header {
 padding: 32px 32px 0;
 position: relative;
 text-align: center;
}

.quote-modal-close {
 position: absolute;
 top: 16px;
 right: 16px;
 width: 36px;
 height: 36px;
 border-radius: 50%;
 background: rgba(255,255,255,0.06);
 border: 1px solid rgba(255,255,255,0.08);
 color: rgba(255,255,255,0.5);
 font-size: 1.2rem;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.2s ease;
}

.quote-modal-close:hover {
 background: rgba(255,255,255,0.12);
 color: white;
}

.quote-modal-badge {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 background: linear-gradient(135deg, rgba(var(--hot-pink-rgb, 232,0,120), 0.15), rgba(var(--hot-pink-rgb, 232,0,120), 0.05));
 border: 1px solid rgba(232,0,120,0.2);
 border-radius: 20px;
 padding: 6px 14px;
 font-size: 0.72rem;
 font-weight: 700;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 color: var(--hot-pink);
 margin-bottom: 16px;
}

.quote-modal h2 {
 font-family: 'Space Grotesk', sans-serif;
 color: #fff;
 margin-bottom: 6px;
 font-size: 1.6rem;
 font-weight: 800;
 line-height: 1.2;
}

.quote-modal .subtitle {
 color: rgba(255,255,255,0.45);
 margin-bottom: 0;
 font-size: 0.9rem;
 line-height: 1.5;
}

.quote-modal-trust {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
 padding: 16px 32px;
 margin-top: 20px;
 border-top: 1px solid rgba(255,255,255,0.06);
 border-bottom: 1px solid rgba(255,255,255,0.06);
 background: rgba(255,255,255,0.02);
}

.quote-modal-trust-item {
 display: flex;
 align-items: center;
 gap: 6px;
 font-size: 0.78rem;
 color: rgba(255,255,255,0.45);
}

.quote-modal-trust-item svg {
 flex-shrink: 0;
}

.quote-modal-body {
 padding: 24px 32px 32px;
}

.quote-cart-summary {
 background: linear-gradient(135deg, #f8f6ff 0%, #fff5fb 100%);
 border: 1px solid rgba(242,36,144,0.15);
 border-radius: 12px;
 padding: 16px;
 margin-bottom: 20px;
}

.quote-cart-items .quote-cart-line {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 6px 0;
 font-size: 0.88rem;
 color: #333;
 border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quote-cart-line .item-name {
 flex: 1;
 font-weight: 500;
}

.quote-cart-line .item-qty {
 color: #888;
 margin: 0 12px;
 font-size: 0.82rem;
}

.quote-cart-line .item-price {
 font-weight: 700;
 color: #F22490;
 white-space: nowrap;
}

.form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
}

.form-group {
 margin-bottom: 0;
}

.form-group.full {
 grid-column: 1 / -1;
}

.form-group label {
 display: block;
 color: rgba(255,255,255,0.5);
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: 0.5px;
 margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
 width: 100%;
 padding: 13px 16px;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 10px;
 color: #fff;
 font-size: 0.92rem;
 transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
 color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
 outline: none;
 border-color: var(--hot-pink);
 background: rgba(232,0,120,0.04);
 box-shadow: 0 0 0 3px rgba(232,0,120,0.1);
}

.form-group select {
 appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.55)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 16px center;
 padding-right: 40px;
}

.form-group select option {
 background: #1a1a2e;
 color: white;
}

.form-group textarea {
 resize: vertical;
 min-height: 80px;
}

.form-submit-btn {
 width: 100%;
 margin-top: 20px;
 padding: 16px;
 border-radius: 12px;
 font-weight: 700;
 font-size: 1rem;
 cursor: pointer;
 border: none;
 background: linear-gradient(135deg, var(--hot-pink), #c0006a);
 color: #fff;
 transition: all 0.3s ease;
 letter-spacing: 0.5px;
 position: relative;
 overflow: hidden;
}

.form-submit-btn::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
 transition: left 0.5s ease;
}

.form-submit-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(232,0,120,0.35);
}

.form-submit-btn:hover::before {
 left: 100%;
}

.form-submit-fine {
 text-align: center;
 margin-top: 12px;
 font-size: 0.75rem;
 color: rgba(255,255,255,0.25);
}

.form-submit-fine a {
 color: rgba(255,255,255,0.35);
 text-decoration: underline;
}

/* Reviews Carousel */
.reviews-carousel {
 position: relative;
 overflow: hidden;
}

.review-item {
 display: none;
 opacity: 0;
 transition: opacity 0.5s ease;
}

.review-item.active {
 display: block;
 opacity: 1;
}

.review-text {
 font-size: 1.1rem;
 color: var(--text-muted);
 margin-bottom: 16px;
 font-style: italic;
}

.review-author {
 color: #1a1a1a;
 font-weight: 700;
}

.review-title {
 color: var(--hot-pink);
 font-size: 0.85rem;
 margin-bottom: 4px;
}

.review-rating {
 color: var(--electric-yellow);
 font-size: 0.9rem;
}

.carousel-nav {
 display: flex;
 gap: 12px;
 justify-content: center;
 margin-top: 24px;
}

.carousel-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: var(--dark-card);
 cursor: pointer;
 transition: background var(--transition);
 border: 1px solid var(--dark-border);
}

.carousel-dot.active {
 background: var(--hot-pink);
 border-color: var(--hot-pink);
}

/* Contact Form */
.contact-form {
 background: linear-gradient(135deg, rgba(242, 36, 144, 0.1) 0%, rgba(74, 38, 102, 0.1) 100%);
 border: 1px solid rgba(242, 36, 144, 0.2);
 border-radius: var(--radius);
 padding: 40px;
 max-width: 600px;
 margin: 0 auto;
}

.contact-form .form-group {
 margin-bottom: 20px;
}

.contact-form .form-grid {
 grid-template-columns: 1fr;
}

/* Footer */
footer {
 background: #0a0a0a;
 border-top: none;
 padding: 60px 0 20px;
 margin-top: 0;
}

.footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}

.footer-section h3 {
 color: var(--electric-yellow);
 margin-bottom: 16px;
 font-size: 1rem;
}

.footer-section ul {
 list-style: none;
}

.footer-section a {
 color: rgba(255,255,255,0.7);
 text-decoration: none;
 font-size: 0.9rem;
 margin-bottom: 8px;
 display: block;
 transition: color var(--transition);
}

.footer-section a:hover {
 color: var(--hot-pink);
}

.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.15);
 padding-top: 20px;
 text-align: center;
 color: rgba(255,255,255,0.5);
 font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
 .product-grid {
 grid-template-columns: 1fr;
 }
 .product-gallery {
 position: static;
 }
}

@media (max-width: 768px) {
 .section { padding: 60px 0; }
 .services-grid {
 grid-template-columns: 1fr;
 }
 .size-grid {
 grid-template-columns: 1fr;
 }
 .hero-stats {
 grid-template-columns: 1fr 1fr;
 }
 .cart-panel {
 width: 100%;
 max-width: 100%;
 }
 .contact-form {
 padding: 24px;
 }
 .footer-content {
 gap: 24px;
 }
 .pack-cards {
 grid-template-columns: 1fr;
 gap: 16px;
 }
 .pack-card {
 padding: 20px;
 }
 .section-title {
 font-size: 1.6rem;
 }
 .section-subtitle {
 font-size: 0.95rem;
 }
 h1 {
 font-size: 1.8rem;
 }
 .container {
 padding: 0 16px;
 }
 .product-meta {
 flex-direction: column;
 gap: 8px;
 }
 .specs-table {
 font-size: 0.85rem;
 }
 .specs-table td {
 padding: 8px 10px;
 }
 .breadcrumb {
 font-size: 0.8rem;
 }
 nav {
 padding: 0 16px;
 }
 .hero-content h1 {
 font-size: 2rem;
 }
 .hero-content p {
 font-size: 1rem;
 }
}

@media (max-width: 480px) {
 .hero-stats {
 grid-template-columns: 1fr;
 gap: 12px;
 }
 .hero-content h1 {
 font-size: 1.6rem;
 }
 .pack-price {
 font-size: 1.3rem;
 }
 .section {
 padding: 40px 0;
 }
}

/* ============================================
 MOBILE OVERHAUL — clean, minimal, functional
 Rule: NEVER change desktop. Mobile-only overrides.
 ============================================ */

@media (max-width: 768px) {
 /* --- NAV --- */
 nav {
 padding: 0.6rem 12px !important;
 }
 nav.scrolled {
 padding: 0.5rem 12px !important;
 }
 .logo {
 height: 38px;
 }
 .cart-btn {
 font-size: 0.75rem;
 padding: 6px 10px;
 }
 .btn-quote {
 padding: 0.5rem 1rem;
 font-size: 0.8rem;
 }
 .nav-right {
 gap: 8px;
 }
 .mobile-menu {
 padding: 70px 24px 24px;
 }
 .mobile-menu a {
 font-size: 1.1rem;
 padding: 14px 16px;
 }

 /* --- HERO --- */
 .hero {
 min-height: 85vh;
 padding-top: 60px;
 }
 .hero-content {
 padding: 0 16px;
 }
 .hero-content h1 {
 font-size: 1.7rem !important;
 line-height: 1.2;
 }
 .hero-content p,
 .hero p {
 font-size: 0.9rem !important;
 margin-bottom: 1.5rem;
 line-height: 1.6;
 }
 .hero-cta {
 flex-direction: column;
 gap: 10px;
 align-items: center;
 }
 .hero-cta .btn-primary,
 .hero-cta .btn-secondary,
 .hero-cta a {
 width: 100%;
 max-width: 280px;
 text-align: center;
 padding: 14px 20px;
 font-size: 0.9rem;
 }
 .hero-stats {
 margin-top: 2rem;
 padding-top: 1.5rem;
 gap: 16px;
 grid-template-columns: repeat(3, 1fr);
 }
 .stat-value {
 font-size: 1.4rem;
 }
 .stat-label {
 font-size: 0.7rem;
 }
 .hero::before,
 .hero::after {
 display: none;
 }

 /* --- BUTTONS (global) --- */
 .btn-primary,
 .btn-secondary {
 padding: 12px 20px;
 font-size: 0.9rem;
 }

 /* --- SECTIONS --- */
 .section {
 padding: 50px 0;
 }
 .section-title {
 font-size: 1.4rem !important;
 }
 .section-subtitle {
 font-size: 0.9rem;
 }
 .container {
 padding: 0 16px !important;
 }

 /* --- SERVICE CARDS GRID --- */
 .services-grid {
 grid-template-columns: 1fr !important;
 gap: 16px;
 }
 .service-card-body {
 padding: 16px;
 }
 .service-card-title {
 font-size: 1rem;
 }
 .service-card-desc {
 font-size: 0.82rem;
 }

 /* --- SIZE GRID --- */
 .size-grid {
 grid-template-columns: 1fr !important;
 gap: 16px;
 }

 /* --- PACK CARDS --- */
 .pack-cards {
 grid-template-columns: 1fr !important;
 }

 /* --- INLINE 3-COL GRIDS (marquee comparisons, feature grids) --- */
 [style*="grid-template-columns: repeat(3"] {
 grid-template-columns: 1fr !important;
 }
 [style*="grid-template-columns:repeat(3"] {
 grid-template-columns: 1fr !important;
 }

 /* --- INLINE 4-COL GRIDS --- */
 [style*="grid-template-columns: repeat(4"] {
 grid-template-columns: 1fr 1fr !important;
 }

 /* --- INLINE auto-fit GRIDS with large minimums --- */
 [style*="minmax(250px"] {
 grid-template-columns: 1fr !important;
 }
 [style*="minmax(260px"] {
 grid-template-columns: 1fr !important;
 }
 [style*="minmax(280px"] {
 grid-template-columns: 1fr !important;
 }
 [style*="minmax(300px"] {
 grid-template-columns: 1fr !important;
 }
 [style*="minmax(320px"] {
 grid-template-columns: 1fr !important;
 }
 [style*="minmax(380px"] {
 grid-template-columns: 1fr !important;
 }

 /* --- INLINE FLEX ROWS that overflow --- */
 [style*="display: flex"][style*="gap: 24px"],
 [style*="display:flex"][style*="gap:24px"],
 [style*="display: flex"][style*="gap: 32px"],
 [style*="display:flex"][style*="gap:32px"] {
 flex-wrap: wrap !important;
 }

 /* --- PRODUCT PAGES --- */
 .product-grid {
 grid-template-columns: 1fr !important;
 gap: 24px;
 }
 .product-info h1 {
 font-size: 1.5rem;
 }
 .product-meta {
 gap: 12px;
 }
 .specs-table td {
 padding: 8px;
 font-size: 0.82rem;
 }

 /* --- QUOTE MODAL --- */
 .quote-modal {
 max-height: 92vh;
 border-radius: 16px;
 }
 .quote-modal-header {
 padding: 24px 20px 0;
 }
 .quote-modal-body {
 padding: 20px 20px 24px;
 }
 .quote-modal h2 {
 font-size: 1.3rem;
 }
 .quote-modal-trust {
 padding: 12px 20px;
 gap: 10px;
 flex-wrap: wrap;
 }
 .form-grid {
 grid-template-columns: 1fr !important;
 gap: 12px;
 }

 /* --- CART PANEL --- */
 .cart-panel {
 width: 100% !important;
 max-width: 100% !important;
 }

 /* --- BREADCRUMBS --- */
 .breadcrumb {
 padding: 80px 0 12px;
 font-size: 0.75rem;
 }

 /* --- SEO FOOTER --- */
 footer[style*="background: #0a0a0a"] {
 padding: 40px 0 20px !important;
 }
 footer[style*="background: #0a0a0a"] [style*="grid-template-columns"] {
 grid-template-columns: 1fr 1fr !important;
 gap: 24px !important;
 }
 footer[style*="background: #0a0a0a"] h4 {
 font-size: 0.9rem !important;
 margin-bottom: 10px !important;
 }
 footer[style*="background: #0a0a0a"] a {
 font-size: 0.8rem !important;
 }

 /* --- GENERAL OVERFLOW PREVENTION --- */
 img, video, iframe {
 max-width: 100%;
 height: auto;
 }

 body, .container, section, footer, main, article, .services-grid, .size-grid, .pack-cards, .product-grid {
 max-width: 100vw;
 }
 .container, footer, main, article {
 overflow-x: hidden;
 }

 /* --- MARQUEE PAGE: size finder, comparison grids --- */
 [style*="max-width: 900px"][style*="grid-template-columns"] {
 grid-template-columns: 1fr !important;
 }

 /* --- HIDE decorative elements on mobile --- */
 .cursor-glow {
 display: none !important;
 }
 .hide-mobile {
 display: none !important;
 }

 /* --- INLINE display:grid overrides for sub-pages --- */
 [style*="display:grid"][style*="repeat(auto-fill"] {
 grid-template-columns: 1fr !important;
 }
 [style*="display: grid"][style*="repeat(auto-fill"] {
 grid-template-columns: 1fr !important;
 }

 /* --- EQUIPMENT CARDS on home page --- */
 [style*="grid-template-columns: repeat(auto-fill, minmax(2"] {
 grid-template-columns: 1fr !important;
 }

 /* --- WIDE INLINE ELEMENTS --- */
 [style*="max-width: 900px"],
 [style*="max-width: 800px"],
 [style*="max-width: 700px"] {
 max-width: 100% !important;
 }

 /* --- LOCATION PAGES --- */
 [style*="padding-top: 140px"] {
 padding-top: 90px !important;
 }
 [style*="padding-top: 120px"] {
 padding-top: 80px !important;
 }
}

@media (max-width: 480px) {
 /* Extra small screens */
 .hero {
 min-height: 75vh;
 }
 .hero-content h1 {
 font-size: 1.4rem !important;
 }
 .hero-stats {
 grid-template-columns: repeat(3, 1fr) !important;
 gap: 8px;
 }
 .stat-value {
 font-size: 1.2rem;
 }
 .stat-label {
 font-size: 0.65rem;
 }
 .section-title {
 font-size: 1.25rem !important;
 }
 .btn-primary, .btn-secondary {
 padding: 10px 16px;
 font-size: 0.85rem;
 }
 h1 {
 font-size: 1.4rem !important;
 }
 h2 {
 font-size: 1.2rem !important;
 }
 footer[style*="background: #0a0a0a"] [style*="grid-template-columns"] {
 grid-template-columns: 1fr !important;
 }

 /* Marquee pack comparison: stack completely */
 [style*="grid-template-columns:repeat(3,1fr)"] {
 grid-template-columns: 1fr !important;
 }
}

@media (max-width: 360px) {
 .hero-content h1 {
 font-size: 1.2rem !important;
 }
 .hero-content p {
 font-size: 0.82rem !important;
 }
 nav {
 padding: 0.5rem 8px !important;
 }
 .logo {
 height: 32px;
 }
 .btn-quote {
 padding: 0.4rem 0.8rem;
 font-size: 0.75rem;
 }
}

/* ============================================
 PREMIUM MICRO-INTERACTIONS
 ============================================ */

/* Cursor-following glow on cards */
.glow-card {
 position: relative;
 overflow: hidden;
}

.glow-card::after {
 content: '';
 position: absolute;
 width: 300px;
 height: 300px;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(242, 36, 144, 0.15) 0%, transparent 70%);
 pointer-events: none;
 opacity: 0;
 transition: opacity 0.3s ease;
 transform: translate(-50%, -50%);
 z-index: 1;
}

.glow-card:hover::after {
 opacity: 1;
}

/* Magnetic button effect */
.magnetic-btn {
 transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 will-change: transform;
}

/* Animated gradient border */
.gradient-border {
 position: relative;
}

.gradient-border::before {
 content: '';
 position: absolute;
 inset: -1px;
 border-radius: inherit;
 padding: 1px;
 background: linear-gradient(
 var(--border-angle, 0deg),
 var(--hot-pink),
 var(--electric-yellow),
 var(--deep-purple),
 var(--hot-pink)
 );
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 opacity: 0;
 transition: opacity 0.4s ease;
 animation: rotateBorder 4s linear infinite;
}

.gradient-border:hover::before {
 opacity: 1;
}

@property --border-angle {
 syntax: '<angle>';
 initial-value: 0deg;
 inherits: false;
}

@keyframes rotateBorder {
 to { --border-angle: 360deg; }
}

/* Reveal animations — GSAP sets initial state via JS, not CSS.
 These classes are markers only — elements are visible by default
 so the page works even if GSAP fails to load. */

/* Text shimmer effect on hover */
.shimmer-text {
 position: relative;
 display: inline-block;
}

.shimmer-text::after {
 content: attr(data-text);
 position: absolute;
 inset: 0;
 background: linear-gradient(
 120deg,
 transparent 0%,
 transparent 30%,
 rgba(255, 255, 255, 0.4) 50%,
 transparent 70%,
 transparent 100%
 );
 background-size: 200% 100%;
 -webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
 opacity: 0;
 transition: opacity 0.3s;
}

.shimmer-text:hover::after {
 opacity: 1;
 animation: shimmer 1.5s ease forwards;
}

@keyframes shimmer {
 0% { background-position: 200% 0; }
 100% { background-position: -200% 0; }
}

/* 3D Tilt Card */
.tilt-card {
 transform-style: preserve-3d;
 perspective: 1000px;
 will-change: transform;
}

.tilt-card-inner {
 transition: transform 0.1s ease-out;
 transform-style: preserve-3d;
}

.tilt-card .tilt-shine {
 position: absolute;
 inset: 0;
 border-radius: inherit;
 background: linear-gradient(
 135deg,
 rgba(255, 255, 255, 0.1) 0%,
 transparent 60%
 );
 opacity: 0;
 transition: opacity 0.3s ease;
 pointer-events: none;
 z-index: 2;
}

.tilt-card:hover .tilt-shine {
 opacity: 1;
}

/* Floating particles background */
.particles-bg {
 position: absolute;
 inset: 0;
 overflow: hidden;
 pointer-events: none;
 z-index: 0;
}

.particle {
 position: absolute;
 width: 4px;
 height: 4px;
 border-radius: 50%;
 opacity: 0;
}

/* Smooth count-up animation for stats */
.count-up {
 display: inline-block;
}

/* Image reveal on scroll */
.img-reveal {
 position: relative;
 overflow: hidden;
}

.img-reveal::before {
 content: '';
 position: absolute;
 inset: 0;
 background: var(--hot-pink);
 z-index: 2;
 transform-origin: right;
}

/* Hover line-draw effect for nav links */
.nav-center a {
 position: relative;
}

/* Pack card pulse on hover */
.pack-card {
 transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.4s ease;
}

.pack-card:hover {
 box-shadow: 0 0 0 1px rgba(242, 36, 144, 0.2),
 0 8px 30px rgba(242, 36, 144, 0.15),
 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pack-card.popular:hover {
 box-shadow: 0 0 0 1px rgba(242, 236, 0, 0.3),
 0 8px 30px rgba(242, 236, 0, 0.15),
 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Smooth underline draw for links */
.draw-underline {
 position: relative;
 text-decoration: none;
}

.draw-underline::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 50%;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, var(--hot-pink), var(--electric-yellow));
 transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1), left 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.draw-underline:hover::after {
 width: 100%;
 left: 0;
}

/* Button ripple effect */
.ripple-btn {
 position: relative;
 overflow: hidden;
}

.ripple-btn .ripple {
 position: absolute;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.3);
 transform: scale(0);
 animation: rippleEffect 0.6s ease-out forwards;
 pointer-events: none;
}

@keyframes rippleEffect {
 to {
 transform: scale(4);
 opacity: 0;
 }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
 width: 8px;
}

::-webkit-scrollbar-track {
 background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
 background: rgba(242, 36, 144, 0.3);
 border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
 background: rgba(242, 36, 144, 0.5);
}

/* Hero text glitch effect on load */
@keyframes glitchIn {
 0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
 20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -3px); }
 40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 1px); }
 60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -1px); }
 80% { clip-path: inset(54% 0 7% 0); transform: translate(-1px, 2px); }
 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

/* Parallax floating shapes */
.floating-shape {
 position: absolute;
 pointer-events: none;
 will-change: transform;
}

.floating-shape-1 {
 width: 200px;
 height: 200px;
 background: radial-gradient(circle, rgba(242, 36, 144, 0.08) 0%, transparent 70%);
 border-radius: 50%;
 top: 20%;
 right: -5%;
}

.floating-shape-2 {
 width: 150px;
 height: 150px;
 background: radial-gradient(circle, rgba(242, 236, 0, 0.06) 0%, transparent 70%);
 border-radius: 50%;
 bottom: 30%;
 left: -3%;
}

.floating-shape-3 {
 width: 100px;
 height: 100px;
 background: radial-gradient(circle, rgba(74, 38, 102, 0.12) 0%, transparent 70%);
 border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
 top: 60%;
 right: 10%;
}

/* Stat counter glow */
.stat-value {
 text-shadow: 0 0 40px rgba(242, 36, 144, 0.3);
 transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-value {
 text-shadow: 0 0 60px rgba(242, 36, 144, 0.5), 0 0 120px rgba(242, 36, 144, 0.2);
}

/* Smooth page transitions */
.page-content {
 animation: fadeInPage 0.6s ease-out;
}

@keyframes fadeInPage {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}

/* Cart button bounce on add */
@keyframes cartBounce {
 0%, 100% { transform: scale(1); }
 30% { transform: scale(1.2); }
 60% { transform: scale(0.95); }
}

.cart-btn.bounce {
 animation: cartBounce 0.5s ease;
}

/* Success checkmark animation for add-to-cart */
@keyframes checkSlide {
 0% { transform: scale(0) rotate(-45deg); opacity: 0; }
 50% { transform: scale(1.2) rotate(0deg); opacity: 1; }
 100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.pack-add-btn.added {
 background: linear-gradient(135deg, #22c55e, #16a34a);
 pointer-events: none;
}

.pack-add-btn.added::after {
 content: '✓ Added to Quote';
}

/* Nav scrolled enhancement */
nav.scrolled {
 background: var(--deep-purple);
 box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Interactive cursor styles */
.cursor-glow {
 position: fixed;
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(242, 36, 144, 0.2) 0%, rgba(74, 38, 102, 0.1) 40%, transparent 70%);
 pointer-events: none;
 z-index: 99999;
 transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), height 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
 transform: translate(-50%, -50%);
 opacity: 0;
}

.cursor-glow.active {
 opacity: 1;
 width: 250px;
 height: 250px;
}

.cursor-glow.clicking {
 width: 180px;
 height: 180px;
 background: radial-gradient(circle, rgba(242, 36, 144, 0.4) 0%, rgba(74, 38, 102, 0.15) 40%, transparent 70%);
}

/* === SPARKLE PARTICLE === */
.sparkle-particle {
 position: fixed;
 pointer-events: none;
 z-index: 99998;
 border-radius: 50%;
 animation: sparkle-fade 0.8s ease-out forwards;
}

@keyframes sparkle-fade {
 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
 100% { transform: translate(-50%, -50%) scale(0) translateY(-30px); opacity: 0; }
}

/* === SHIMMER TEXT on hover === */
@keyframes shimmer-slide {
 0% { background-position: -200% center; }
 100% { background-position: 200% center; }
}

.shimmer-hover {
 position: relative;
 transition: all 0.3s ease;
}

.shimmer-hover:hover {
 background: linear-gradient(90deg, currentColor 30%, #F22490 45%, #c94fff 50%, #F22490 55%, currentColor 70%);
 background-size: 200% auto;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 animation: shimmer-slide 1.5s linear infinite;
}

/* === GLOWING BORDER on cards/sections === */
@keyframes border-glow-pulse {
 0%, 100% { border-color: rgba(242, 36, 144, 0.15); box-shadow: 0 0 0 rgba(242, 36, 144, 0); }
 50% { border-color: rgba(242, 36, 144, 0.35); box-shadow: 0 0 20px rgba(242, 36, 144, 0.1); }
}

.glow-border-hover {
 transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.glow-border-hover:hover {
 border-color: rgba(242, 36, 144, 0.4) !important;
 box-shadow: 0 0 25px rgba(242, 36, 144, 0.12), 0 0 60px rgba(74, 38, 102, 0.06), 0 8px 32px rgba(0,0,0,0.08) !important;
}

/* === BUTTON SHINE SWEEP === */
@keyframes btn-shine {
 0% { left: -75%; }
 100% { left: 125%; }
}

.btn-shine-hover {
 position: relative;
 overflow: hidden;
}
.btn-shine-hover::after {
 content: '';
 position: absolute;
 top: 0;
 left: -75%;
 width: 50%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
 transform: skewX(-20deg);
 transition: none;
 pointer-events: none;
}
.btn-shine-hover:hover::after {
 animation: btn-shine 0.6s ease forwards;
}

/* hover-lift removed — cards are static */

/* === GLITTER TRAIL PARTICLES === */
.glitter-particle {
 position: fixed;
 pointer-events: none;
 z-index: 99997;
 width: 4px;
 height: 4px;
 border-radius: 50%;
 animation: glitter-drift 1s ease-out forwards;
}

@keyframes glitter-drift {
 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
 50% { opacity: 0.6; }
 100% { transform: translate(-50%, -50%) scale(0) translateY(-20px) rotate(180deg); opacity: 0; }
}

/* === SECTION REVEAL GLOW === */
@keyframes section-glow-in {
 0% { box-shadow: inset 0 0 0 rgba(242,36,144,0); }
 50% { box-shadow: inset 0 0 80px rgba(242,36,144,0.03); }
 100% { box-shadow: inset 0 0 0 rgba(242,36,144,0); }
}

/* === FUTURISTIC UNDERLINE === */
.futuristic-link {
 position: relative;
 text-decoration: none;
}
.futuristic-link::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 50%;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, #F22490, #c94fff, #F22490);
 transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
 border-radius: 2px;
 box-shadow: 0 0 8px rgba(242, 36, 144, 0.4);
}
.futuristic-link:hover::after {
 width: 100%;
 left: 0;
}

/* img-hover-glow removed — cards are static */

/* === PULSE RING on CTA buttons === */
@keyframes pulse-ring {
 0% { transform: scale(1); opacity: 0.6; }
 100% { transform: scale(1.5); opacity: 0; }
}

.pulse-cta {
 position: relative;
}
.pulse-cta::before {
 content: '';
 position: absolute;
 inset: -4px;
 border-radius: inherit;
 border: 2px solid rgba(242, 36, 144, 0.4);
 animation: pulse-ring 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
 pointer-events: none;
}

*:focus-visible {
 outline: 2px solid #F22490;
 outline-offset: 2px;
}

/* ============================================================
   SHARED UTILITY CLASSES
   ============================================================ */

/* Accessibility: skip navigation link */
.skip-nav {
  position: absolute; top: -40px; left: 0; background: #F22490; color: #fff;
  padding: 8px 16px; z-index: 9999; font-weight: 600; text-decoration: none;
  border-radius: 0 0 8px 0; transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* Pack badge — "Most Popular" label inside pack-card.popular */
.pack-badge {
  display: inline-block; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #F22490, #ff006e); color: #fff;
  padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}

/* Marquee system card colour modifiers */
.mq-system-card.card-6m:hover { border-color: rgba(74,38,102,0.4); }
.mq-system-card.card-8m:hover { border-color: rgba(242,36,144,0.4); }

/* ============================================================
   MARQUEES PAGE — mq-* components
   ============================================================ */
@keyframes floatSlow { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-20px) rotate(3deg); } }
@keyframes pulseGlow { 0%,100%{ box-shadow: 0 0 20px rgba(242,36,144,0.2); } 50%{ box-shadow: 0 0 40px rgba(242,36,144,0.4); } }
@keyframes slideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
@keyframes shimmer { 0%{ background-position: -200% 0; } 100%{ background-position: 200% 0; } }
@keyframes drawLine { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }

.mq-hero-badge {
  display: inline-block; background: rgba(242,36,144,0.15); border: 1px solid rgba(242,36,144,0.3);
  color: #F22490; padding: 8px 20px; border-radius: 40px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.mq-system-card {
  position: relative; background: #ffffff; border: 1px solid #e0e0e0;
  border-radius: 16px; padding: 0; overflow: hidden; transition: all 0.4s ease; cursor: pointer;
}
.mq-system-card:hover { border-color: rgba(242,36,144,0.3); transform: translateY(-4px); }
.mq-system-card .card-visual { height: 240px; position: relative; overflow: hidden; }
.mq-system-card .card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mq-system-card:hover .card-visual img { transform: scale(1.05); }
.mq-system-card .card-visual .card-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}
.mq-system-card .card-visual .card-label {
  position: absolute; bottom: 16px; left: 20px; color: #fff; font-size: 1.4rem;
  font-weight: 800; text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.mq-system-card .card-body { padding: 32px; }

.mq-size-finder {
  background: rgba(74,38,102,0.05); border: 2px solid rgba(74,38,102,0.15); border-radius: 16px;
  padding: 40px; text-align: center;
}
.mq-size-finder input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 6px; background: rgba(0,0,0,0.08);
  border-radius: 3px; outline: none; margin: 20px 0;
}
.mq-size-finder input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; background: #F22490;
  border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px rgba(242,36,144,0.5);
}

.mq-pack-card {
  background: #ffffff; border: 1px solid #e0e0e0;
  border-radius: 16px; padding: 32px; position: relative; transition: all 0.4s ease;
}
.mq-pack-card:hover { transform: translateY(-4px); border-color: rgba(242,36,144,0.3); }
.mq-pack-card.pack-popular {
  background: linear-gradient(135deg, rgba(242,36,144,0.06), rgba(74,38,102,0.04));
  border: 2px solid rgba(242,36,144,0.3); animation: pulseGlow 3s ease-in-out infinite;
}
.mq-pack-card .pack-tier { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 8px; }
.mq-pack-card .pack-title { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.mq-pack-card .pack-price { font-size: 2rem; font-weight: 800; color: #F22490; margin-bottom: 4px; }
.mq-pack-card .pack-items { list-style: none; padding: 0; margin: 20px 0 0 0; }
.mq-pack-card .pack-items li {
  padding: 10px 0; border-bottom: 1px solid #e8e8e8; color: #666;
  font-size: 0.9rem; display: flex; align-items: center; gap: 10px;
}
.mq-pack-card .pack-items li:last-child { border-bottom: none; }
.mq-pack-card .pack-items .check { color: #F22490; font-weight: 700; }

.mq-feature-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.mq-feature-strip .strip-item {
  padding: 32px 16px; text-align: center; border-right: 1px solid #e8e8e8;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.mq-feature-strip .strip-item:last-child { border-right: none; }
.mq-feature-strip .strip-item:hover { background: rgba(74,38,102,0.06); }
.mq-feature-strip .strip-item .strip-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(242,36,144,0.15), rgba(242,36,144,0.1));
}

.mq-clearspan-visual { display: flex; align-items: center; gap: 60px; max-width: 900px; margin: 0 auto; }
.mq-clearspan-visual .visual-side { flex: 1; min-width: 0; }

.mq-event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.mq-event-item {
  padding: 40px 28px; border: 1px solid #e8e8e8; position: relative;
  transition: all 0.4s ease; overflow: hidden;
}
.mq-event-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #F22490, #f22490); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.mq-event-item:hover::before { transform: scaleX(1); }
.mq-event-item:hover { background: rgba(74,38,102,0.04); }

.mq-faq-item { border: 1px solid #e0e0e0; border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all 0.3s ease; }
.mq-faq-item summary {
  padding: 20px 24px; color: #1a1a1a; font-weight: 600; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between; font-size: 0.95rem;
  background: #fafafa; transition: background 0.3s ease;
}
.mq-faq-item summary:hover { background: rgba(74,38,102,0.06); }
.mq-faq-item summary::after { content: '+'; color: #F22490; font-size: 1.3rem; font-weight: 300; }
.mq-faq-item[open] summary::after { content: '\2212'; }
.mq-faq-item[open] { border-color: rgba(242,36,144,0.2); }
.mq-faq-item p { padding: 0 24px 20px; color: #666; line-height: 1.7; margin: 0; }

.mq-crosslink-card {
  background: #ffffff; border: 1px solid #e0e0e0; border-radius: 16px;
  padding: 32px; text-align: center; text-decoration: none; display: block;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.mq-crosslink-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #F22490, #f22490); transform: scaleX(0); transition: transform 0.4s ease;
}
.mq-crosslink-card:hover { border-color: rgba(242,36,144,0.3); transform: translateY(-6px); }
.mq-crosslink-card:hover::before { transform: scaleX(1); }

.mq-size-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #ffffff; border-radius: 12px; overflow: hidden; }
.mq-size-table thead th {
  background: rgba(74,38,102,0.08); color: var(--deep-purple); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px; padding: 14px 16px; font-weight: 600;
}
.mq-size-table tbody tr { transition: all 0.2s ease; }
.mq-size-table tbody tr:hover { background: rgba(74,38,102,0.04); }
.mq-size-table td { padding: 12px 16px; color: #555; font-size: 0.9rem; border-bottom: 1px solid #e8e8e8; }
.mq-size-table .range-header td { background: rgba(74,38,102,0.06); color: var(--deep-purple); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; }
.mq-size-table a { color: var(--hot-pink); text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.mq-size-table a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .mq-feature-strip { grid-template-columns: repeat(3, 1fr); }
  .mq-event-grid { grid-template-columns: 1fr; }
  .mq-clearspan-visual { flex-direction: column; gap: 32px; }
  .mq-system-card .card-visual { height: 150px; }
  .mq-size-finder { padding: 24px 16px; }
  .mq-pack-card { padding: 20px; }
  .mq-pack-card .pack-price { font-size: 1.5rem; }
  .mq-pack-card .pack-title { font-size: 1.1rem; }
  .mq-size-table { font-size: 0.8rem; }
  .mq-size-table td { padding: 8px 10px; font-size: 0.78rem; }
  .mq-size-table thead th { padding: 10px 8px; font-size: 0.7rem; }
  .mq-faq-item summary { padding: 16px; font-size: 0.88rem; }
  .mq-faq-item p { padding: 0 16px 16px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .mq-feature-strip { grid-template-columns: repeat(2, 1fr); }
  .mq-feature-strip .strip-item { padding: 20px 10px; }
  .mq-feature-strip .strip-item .strip-icon { width: 36px; height: 36px; font-size: 1rem; }
  .mq-size-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== ACCESSIBILITY FIXES ===== */
/* Minimum touch targets 44x44px */
button, [type="submit"], .btn-primary, .btn-secondary, .pack-add-btn, .cart-btn, .hamburger, a[href^="tel:"] {
  min-height: 44px;
  min-width: 44px;
}
/* Visible focus indicators */
:focus-visible {
  outline: 2px solid #F22490;
  outline-offset: 2px;
}
/* Form labels — ensure visible, not just placeholders */
label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; }
/* Skip link for keyboard users */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 8px; z-index: 99999; background: #F22490; color: #fff; padding: 8px 16px; border-radius: 8px; text-decoration: none; font-weight: 700; }

/* ===== CONTRAST FIXES (WCAG 2.2 AA) ===== */
/* Old #F22490 on white = 3.87:1 FAIL. #D01A78 on white = 5.1:1 PASS */
/* Apply darkened pink ONLY on light backgrounds — original pink stays on dark */
.section a[style*="color:#F22490"], .specs-table a { color: #D01A78 !important; }
/* Old #999 on white = 2.85:1 FAIL. #767676 = 4.54:1 PASS */
.section p[style*="color:#999"], .section span[style*="color:#999"] { color: #767676 !important; }

/* Footer link tap targets — minimum 44px height */
footer a { min-height: 44px; display: inline-flex; align-items: center; }

/* ===== SWIPE CAROUSEL ===== */
.swipe-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
}
.swipe-carousel::-webkit-scrollbar { display: none; }
.swipe-carousel > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ===== PHOTOSWIPE GALLERY GRID ===== */
.pswp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.pswp-gallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pswp-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pswp-gallery a:hover img { transform: scale(1.05); }

/* ============================================================
   GOD MODE MOBILE FIX — 2026-04-14
   Fixes: sticky CTA footer overlap, table overflow, size grid,
   font sizes, touch targets, 375-414px breakpoint gap
   ============================================================ */

/* --- Sticky CTA: add footer breathing room --- */
footer {
  padding-bottom: 80px;
}

/* --- Table overflow: force responsive treatment on ALL inline-styled tables --- */
div[style*="overflow-x:auto"] table,
div[style*="overflow-x: auto"] table {
  min-width: 0;
  word-break: break-word;
}

@media (max-width: 768px) {
  div[style*="overflow-x:auto"] table th,
  div[style*="overflow-x: auto"] table th {
    padding: 10px 10px !important;
    font-size: 0.78rem !important;
  }
  div[style*="overflow-x:auto"] table td,
  div[style*="overflow-x: auto"] table td {
    padding: 9px 10px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 480px) {
  div[style*="overflow-x:auto"] table th,
  div[style*="overflow-x: auto"] table th {
    padding: 8px 7px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0 !important;
  }
  div[style*="overflow-x:auto"] table td,
  div[style*="overflow-x: auto"] table td {
    padding: 7px 7px !important;
    font-size: 0.75rem !important;
  }
  /* Scroll hint on table wrappers */
  div[style*="overflow-x:auto"]::after,
  div[style*="overflow-x: auto"]::after {
    content: '← swipe to scroll →';
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    padding: 6px 0 2px;
    pointer-events: none;
  }
}

/* --- Size grid: 260px minmax breaks at 375px → single column --- */
@media (max-width: 520px) {
  .size-grid,
  [class*="size-grid"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  /* Product grids with large minmax */
  [style*="minmax(260px"],
  [style*="minmax(240px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="minmax(200px"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- 375–414px breakpoint gap (iPhone 12/13/14 SE) --- */
@media (max-width: 414px) {
  /* Prevent any element from blowing past viewport */
  img, video, iframe, svg {
    max-width: 100%;
    height: auto;
  }

  /* Stats bar: ensure wraps gracefully */
  .stats-bar,
  [style*="repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Section headings: clamp more aggressively */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
  }
  .section-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
  }

  /* Pack cards: full width */
  .mq-pack-card {
    padding: 16px !important;
  }

  /* CTA buttons: full width on tiny phones */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group a, .hero-cta-group button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* --- Font sizes: raise anything below 14px to 14px on mobile --- */
@media (max-width: 768px) {
  .stat-badge { font-size: 0.875rem !important; }
  .stat-label { font-size: 0.75rem !important; }
  .breadcrumb { font-size: 0.8rem !important; }
  .mobile-menu-label { font-size: 0.75rem !important; }
  .service-price-label { font-size: 0.8rem !important; }
}

/* --- Touch targets: min 44×44px on all interactive elements --- */
.btn-sm, .btn-secondary, .pack-add-btn {
  min-height: 44px !important;
}
nav a, footer a {
  min-height: 44px;
}

/* --- Back-to-top button: larger tap target --- */
.back-to-top {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
}

/* --- Footer: tighten column sections on mobile for readability --- */
@media (max-width: 480px) {
  footer [style*="flex-direction:column"],
  footer [style*="flex-direction: column"] {
    gap: 6px !important;
  }
  footer [style*="font-size:0.85rem"],
  footer [style*="font-size: 0.85rem"] {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }
  /* Social icons row: allow wrap on tiny screens */
  footer [style*="gap:16px"] {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  /* Footer columns headings */
  footer h3, footer h4 {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }
}

/* ============================================================ */
