/* =================================
   WARCHARGE Landing Page Styles
   Color Scheme: Black, Gray, Red
   CTA: White with Black Text
   ================================= */

:root {
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --red: #15ccbe;
    --red-hover: #47b0ff;
    --white: #ffffff;
    --text-gray: #b3b3b3;
    --border-gray: #444444;
}

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

/* Prevent internal scrolling in sections - only allow page-level scroll */
section {
    overflow: visible;
    height: auto;
    -webkit-overflow-scrolling: auto;
}

section .container,
section .container-fluid {
    overflow: visible;
    height: auto;
}

section .row,
section .col,
section [class*="col-"] {
    overflow: visible;
    height: auto;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: clip;
}

.container-fluid {
    max-width: 100%;
}

/* Custom Cursor Styles */
/*
*, *:hover {
    cursor: url('assets/default_64_2.png') 16 16, auto !important;
}

.btn-cta,
.btn-cta:hover,
.btn-cta *,
.btn-cta *:hover,
button.btn-cta,
button.btn-cta:hover {
    cursor: url('assets/hover64_3.png') 16 16, pointer !important;
}

body.cursor-click *,
body.cursor-click *:hover {
    cursor: url('assets/click64.gif') 16 16, auto !important;
}

body.cursor-click .btn-cta,
body.cursor-click .btn-cta:hover,
body.cursor-click .btn-cta *,
body.cursor-click .btn-cta *:hover {
    cursor: url('assets/click64.gif') 16 16, pointer !important;
}
*/
/* =================================
   NAVIGATION BAR
   ================================= */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 35px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Transparent state - only background disappears, content stays visible */
.navbar-custom.transparent {
    background-color: transparent;
    border-bottom-color: transparent;
}

/* Visible with opacity (any scroll) */
.navbar-custom.visible-opaque {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Shrunk state (reduced height) */
.navbar-custom.shrunk {
    padding: 25px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: var(--red);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    color: var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/*filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));*/
.logo-flame {
    filter: drop-shadow(0 0 10px rgba(0, 200, 200, 0.8));
}

.logo-text {
    letter-spacing: 2px;
}

.navbar-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--red);
}

.nav-link-cta {
    color: var(--red);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--red);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: rgb(228, 0, 15);
    color: var(--white);
    font-size: 12px;
    font-family: "myfont2", sans-serif !important;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =================================
   SIDE MENU
   ================================= */

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-gray);
    z-index: 1100;
    transition: left 0.3s ease;
    padding: 30px;
    border-right: 1px solid var(--border-gray);
}

.side-menu.active {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--red);
}

.menu-list {
    list-style: none;
    margin-top: 80px;
}

.menu-list li {
    margin-bottom: 20px;
}

.menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.menu-list a:hover {
    color: var(--red);
}

.language-toggle {
    position: absolute;
    bottom: 30px;
}

.lang-btn {
    background-color: var(--medium-gray);
    color: var(--white);
    border: 1px solid var(--border-gray);
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--red);
    border-color: var(--red);
}

/* =================================
   STICKY FOOTER CTA
   ================================= */

.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    padding: 20px 0;
    z-index: 999;
    border-top: 2px solid var(--red);
    transform: translateY(100%);
    transition: transform 0.25s ease-out;
    will-change: transform;
}

.sticky-footer-cta[aria-hidden="false"] {
    transform: translateY(0);
}

.footer-cta-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.footer-cta-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

.footer-cta-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.footer-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-cta-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    white-space: nowrap;
    margin: 0;
}

.footer-cta-main-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-cta-content .btn-cta {
    width: auto;
    margin: 0;
    padding: 12px 24px;
    font-size: 14px;
    display: inline-block;
}

.footer-cta-code {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-cta-rating {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .footer-cta-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-cta-main {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .footer-cta-action {
        align-items: center;
        width: 100%;
    }
    
    .footer-cta-rating {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 4px;
    }
}

.footer-cta-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.footer-cta-close:hover {
    opacity: 1;
}

@media (max-width: 576px) {
    .footer-cta-close {
        top: 8px;
        right: 12px;
        transform: none;
    }
}

/* =================================
   BUTTONS
   ================================= */

/*
.btn-cta {
    background-color: var(--white);
    color: var(--red-hover);
      border: 3px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, #f40fc2, #15ccbe) border-box;
  box-shadow: 0 0 12px rgba(21,204,190,.25);
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    width: 80%;
    max-width: 320px;          
    margin: 40px auto 28px;    
    padding: 18px 24px;        
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
}
*/

.btn-cta {
    /* Base styling */
    background: linear-gradient(90deg, #2FA3F3 0%, #47B0FF 100%);
    border: none;
    border-radius: 7px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 44px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: background 250ms ease-out, box-shadow 250ms ease-out, transform 250ms ease-out;
    width: 100%;
    
    /* Depth shadow only - no glow */
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.15),
        0 6px 22px rgba(47, 160, 255, 0.25);
    
    /* Ensure proper display */
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.btn-cta:hover {
    background: linear-gradient(90deg, #1F86D6 0%, #2FA3F3 100%);
    /*transform: scale(1.01);*/
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.18),
        0 8px 26px rgba(47, 160, 255, 0.32);
}

.btn-cta:active {
    background: linear-gradient(90deg, #1F86D6 0%, #1F86D6 100%);
    /*transform: scale(0.985);*/
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.1),
        0 4px 16px rgba(47, 160, 255, 0.2);
}

.btn-cta:focus {
    outline: none;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(71, 176, 255, 0.35),
        inset 0 1px 3px rgba(255, 255, 255, 0.15),
        0 6px 22px rgba(47, 160, 255, 0.25);
}

.btn-cta:disabled,
.btn-cta[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-cta:disabled:hover,
.btn-cta[disabled]:hover {
    transform: none;
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.15),
        0 6px 22px rgba(47, 160, 255, 0.25),
        0 0 14px rgba(71, 176, 255, 0.08);
}
/* SECONDARY CTA*/
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 10px 18px;
    min-height: 40px;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.btn-secondary:active {
    background-color: rgba(255, 255, 255, 0.1);
}



/* CART DRAWER btn-cta */
.btn-cart-cta {
    /* Base styling */
    background: linear-gradient(135deg, #1F86D6 0%, #2FA3F3 50%, #47B0FF 100%);
    border: none;
    border-radius: 7px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-height: 44px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    
    /* Enhanced depth - tight shadows for dense plate feel */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(31, 134, 214, 0.4),
        0 6px 14px rgba(47, 163, 243, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.2);
    
    /* Ensure proper display */
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.btn-cart-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 7px;
    pointer-events: none;
}

.btn-cart-cta:hover {
    background: linear-gradient(135deg, #1A75BB 0%, #1F86D6 50%, #2FA3F3 100%);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.18),
        0 4px 10px rgba(31, 134, 214, 0.45),
        0 7px 16px rgba(47, 163, 243, 0.28),
        0 2px 4px rgba(0, 0, 0, 0.25);
}

.btn-cart-cta:active {
    background: linear-gradient(135deg, #155F9D 0%, #1A75BB 50%, #1F86D6 100%);
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 5px rgba(31, 134, 214, 0.35),
        0 4px 10px rgba(47, 163, 243, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cart-cta:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.5),
        0 0 0 5px rgba(71, 176, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(31, 134, 214, 0.4),
        0 6px 14px rgba(47, 163, 243, 0.25);
}

.btn-cart-cta:disabled,
.btn-cart-cta[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-cart-cta:disabled:hover,
.btn-cart-cta[disabled]:hover {
    transform: none;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(31, 134, 214, 0.4),
        0 6px 14px rgba(47, 163, 243, 0.25);
}


.btn-hero {
    font-size: 16px;
    padding: 18px 50px;
    margin-top: 30px;
    width: fit-content;
    max-width: 100%;
}

.btn-choose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
/* Arrow shoot animation */
.btn-choose:hover i {
    transform: translateX(10px);
    display: inline-block;
    transition: transform 0.15s ease-out;
}

.btn-choose.arrow-shoot i {
    animation: arrowShoot 0.4s ease-out;
}

@keyframes arrowShoot {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(150%);  /* 1.5x width to the right */
        opacity: 0.5;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =================================
   TYPOGRAPHY
   ================================= */

.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title .thin {
    font-weight: 300;
    display: block;
}

.section-title .bold {
    font-weight: 900;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    line-height: 1.8;
    color: var(--text-gray);
}

/* =================================
   SECTION 1: HERO
   ================================= */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
    background-image: url('assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video overlay */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .thin {
    font-weight: 300;
    display: block;
}

.hero-title .bold {
    font-weight: 900;
    display: block;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 300px;
}

.hero-bg {
    background: linear-gradient(
        135deg,
        rgba(152, 216, 255, 0.30) 0%,
        rgba(200, 235, 255, 0.18) 40%,
        rgba(152, 216, 255, 0.35) 100%
    );
    padding: 12px 18px;
    border-radius: 12px 4px 16px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 20px rgba(152, 216, 255, 0.06);
    backdrop-filter: blur(2px);
}

.trust-badge {
    margin-top: 40px;
}

.trust-badge .stars {
    color: white;
    margin-bottom: 10px;
}

.trust-badge .stars i {
    font-size: 20px;
    margin-right: 5px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-gray);
}

.hero-image {
    position: relative;
    text-align: center;
}

/* Hero Section Mobile Layout - Below 1024px */
@media (max-width: 1023px) {
    .hero-section .row {
        flex-direction: column;
    }
    
    .hero-section .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }
    
    .hero-section .col-lg-6.hero-bg {
        margin-bottom: 40px;
    }
    
    .hero-section .hero-image {
        order: 2;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 1;
    }
}

.product-render {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(255, 64, 0, 0.3));
    opacity: 0;
    animation: fadeInProduct 1.5s ease-in 3s forwards, float 3s ease-in-out 4.5s infinite;
}

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

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

/* =================================
   SECTION 2: VALUE PROPOSITION
   ================================= */

/* See How It Works Section */
.see-how-section {
    padding: 20px 180px 10px;
    background-color: var(--black);

}

.see-how-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--white);
    text-align: right;
    padding-right: 15%;
}

@media (max-width: 768px) {
    .see-how-section {
        padding: 60px 0;
    }
    
    .see-how-title {
        text-align: center;
        padding-right: 0;
    }
}

.value-prop-section {
    padding: 100px 0;
    background-color: var(--black);
}

.value-description {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.value-subheading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.upperdivider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, cyan, transparent);
    margin: 40px 0;
}

.lowerdivider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(21, 204, 190, 0.7), transparent);
    margin: 20px 0;
}

.icon-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.icon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.icon-badge i {
    font-size: 40px;
    color: var(--red);
}

/* Specific styling for Performance Approved icon (trophy) */
.icon-badge .fa-trophy {
    font-size: 37.2px; /* 7% smaller than 40px */
}

.icon-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.24px; /* 24% increase from 1px */
    text-transform: uppercase;
}

.product-detail-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    
    position: relative;
    
}

#productDetails.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    padding-left: 30px;
}

.feature-list li:before {
    font-family: Arial, sans-serif; 
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 18px;
}

/* =================================
   SECTION 3: FEATURE GRID
   ================================= */

.feature-grid-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
    overflow: visible;
    height: auto;
}

.feature-grid-section .container {
    overflow: visible;
    height: auto;
}

.grid-intro {
    font-size: 16px;
    color: var(--text-gray);
}

.grid-title {
    font-size: 36px;
    line-height: 1.2;
    text-align: right;
}

.feature-card {
    background-color: var(--medium-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;

    /* 3D card effect */
        box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
}

.feature-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 16px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-grid-section .row {
    overflow: visible;
    height: auto;
}

.feature-grid-section .col-lg-6 {
    overflow: visible;
    height: auto;
}

/*
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.227);
}
*/

.feature-card-image {
    height: 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gray);
}

.feature-card-content {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card-content p {
    font-size: 14px;
    color: var(--text-gray);
}

.shipping-footer {
    margin-top: 60px;
}

.shipping-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Worldwide Icon with Animated Glow */
.worldwide-icon-wrapper {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.worldwide-icon {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 2;
    display: block;
}

.worldwide-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: worldwideGlow 1.05s ease-in-out infinite;
}

/* Base Animation Sequence: a→b→c→d */
@keyframes worldwideGlow {
    /* a: 0.2s at 20% */
    0%, 19% {
        box-shadow: 0 0 40px rgba(204, 255, 255, 0.35);
        opacity: 0.35;
    }
    /* b: 0.05s at 25% */
    19.1%, 23.8% {
        box-shadow: 0 0 45px rgba(204, 255, 255, 0.4);
        opacity: 0.4;
    }
    /* c: 0.5s at 16% */
    23.9%, 71.4% {
        box-shadow: 0 0 35px rgba(204, 255, 255, 0.3);
        opacity: 0.3;
    }
    /* d: 0.3s at 20% */
    71.5%, 100% {
        box-shadow: 0 0 40px rgba(204, 255, 255, 0.35);
        opacity: 0.35;
    }
}

/* Twitch Animation Sequence: x→y→z→v→k→j→h */
@keyframes worldwideTwitch {
    /* x: 0.02s at 5% */
    0%, 10% {
        box-shadow: 0 0 15px rgba(204, 255, 255, 0.15);
        opacity: 0.15;
    }
    /* y: 0.05s at 10% */
    10.1%, 35% {
        box-shadow: 0 0 22px rgba(204, 255, 255, 0.22);
        opacity: 0.22;
    }
    /* z: 0.02s at 5% */
    35.1%, 45% {
        box-shadow: 0 0 15px rgba(204, 255, 255, 0.15);
        opacity: 0.15;
    }
    /* v: 0.03s at 7% */
    45.1%, 60% {
        box-shadow: 0 0 18px rgba(204, 255, 255, 0.18);
        opacity: 0.18;
    }
    /* k: 0.05s at 14% */
    60.1%, 85% {
        box-shadow: 0 0 28px rgba(204, 255, 255, 0.28);
        opacity: 0.28;
    }
    /* j: 0.03s at 7% */
    85.1%, 100% {
        box-shadow: 0 0 18px rgba(204, 255, 255, 0.18);
        opacity: 0.18;
    }
}

/* Applied when twitch is triggered */
.worldwide-icon-wrapper.twitch::before {
    animation: worldwideTwitch 0.2s ease-in-out;
}

/* =================================
   SECTION 4: PRODUCT HIGHLIGHT
   ================================= */

.product-highlight-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
    background-image: url('assets/product-highlight-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.product-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 45, 45, 0.673);
    z-index: 0;
}

.product-highlight-section > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .product-highlight-section {
        background-attachment: scroll;
    }
}

.product-frame {
    position: relative;
    padding: 40px;
    text-align: center;
}

.corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--red);
}

.corner-bracket.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-bracket.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.product-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px cyan);
    transition: all 0.4s ease-out;
}

.product-main-img:hover {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px cyan) 
            drop-shadow(0 0 60px rgba(0, 255, 255, 0.8))
            drop-shadow(0 0 90px rgba(0, 255, 255, 0.5));
    transform: scale(1.05);
    transition: all 0.4s ease-out;
}

.product-price {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.old-price {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.sale-price {
    font-size: 36px;
    font-weight: 700;
    color: rgb(137, 255, 239);
}

.product-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.product-callout {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* =================================
   SECTION 5: TESTIMONIALS
   ================================= */

.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-nav-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
    position: relative;
}

.testimonial-nav-btn.active {
    color: var(--red);
}

.testimonial-nav-btn.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--red);
}

.testimonial-content {
    position: relative;
    min-height: 400px;
}

.testimonial-text {
    padding: 40px;
}

.testimonial-quote {
    font-size: 18px;
    font-family: myfont3;
    font-style: italic;
    color: rgb(105, 105, 105);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-signature {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    color: var(--white);
    margin-bottom: 10px;
}

.testimonial-credentials {
    font-size: 14px;
    color: var(--text-gray);
}

/* Mobile testimonial styles */
@media (max-width: 768px) {
    .testimonial-signature {
        font-size: 28px;
    }
}

.testimonial-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.testimonial-image:hover {
    filter: grayscale(0%);
}

.testimonial-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.testimonial-arrow {
    background-color: var(--medium-gray);
    border: 1px solid var(--border-gray);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background-color: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

/* Fade animation for testimonials */
.testimonial-content.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-content.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* =================================
   SECTION 6: BRAND REINFORCEMENT
   ================================= */

.brand-section {
    padding: 100px 0;
    background-color: var(--black);
}

.brand-feature {
    text-align: center;
    padding: 40px 20px;
}

.brand-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.brand-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-feature-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.brand-feature p {
    font-size: 14px;
    color: var(--text-gray);
}

/* =================================
   SECTION 7: FINAL CTA
   ================================= */

.final-cta-section {
    padding: 100px 0;
    background-color: var(--black);
}

.media-frame {
    position: relative;
    margin: 60px auto;
    max-width: 900px;
}

.media-image {
    width: 100%;
    height: auto;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    min-height: 400px;  /* ADD THIS - prevents collapse */
    aspect-ratio: 16 / 9;  /* ADD THIS - maintains ratio */
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;  /* ADD THIS - keeps video contained */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;  /* ADD THIS - prevents layout shift */
    top: 0;
    left: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    /*filter: invert(1);*/
}

.play-button i {
    font-size: 30px;
    color: white;
    margin-left: 5px;
}

/* =================================
   SECTION 8: VIDEO TESTIMONIALS
   ================================= */

.video-testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
}

/* Pagination dots — max 5 visible, sized by distance from active */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
}

.dot {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    /* default: hidden */
    width: 0;
    height: 0;
    opacity: 0;
}

.dot[data-vis="active"] {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: #15ccbe;
}

.dot[data-vis="adjacent"] {
    width: 8px;
    height: 8px;
    opacity: 1;
}

.dot[data-vis="far"] {
    width: 6px;
    height: 6px;
    opacity: 0.6;
}

.video-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.video-carousel-track::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    min-width: 200px;
    text-align: center;
    scroll-snap-align: start;
}

.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--medium-gray);
    height: 250px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-small:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
}

.play-button-small i {
    font-size: 18px;
    color: var(--white);
    margin-left: 3px;
}

.video-client {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.video-location {
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* Review Card — Photo + Text Below */
.card-a {
    background: #161b22;
    border-radius: 12px;
    overflow: hidden;
}

.card-a .photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
}

.card-a .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-a .stars {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    font-size: 18px;
    color: #f5c518;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-a .verified-badge {
    font-size: 11px;
    color: #4caf80;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-a .content {
    padding: 20px;
}

.card-a .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b8c4;
    margin-bottom: 16px;
    font-style: italic;
    text-align: left;
}

.card-a .reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-a .reviewer .name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.card-a .reviewer .location {
    font-size: 11px;
    color: #636d83;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
}

.card-a .review-date {
    font-size: 11px;
    color: #636d83;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

/* =================================
   SECTION 9: FAQ
   ================================= */

.faq-section {
    padding: 100px 0;
    background-color: var(--black);
    position: relative;
}

.faq-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/faqbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.faq-header {
    text-align: right;
    margin-bottom: 60px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 14px;
    color: cyan;
    letter-spacing: 2px;
    font-weight: 600;
}

.faq-list-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--red-hover);
}

.faq-question {
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--medium-gray);
}

.faq-icon {
    font-size: 24px;
    color: var(--red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--medium-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 30px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

/* =================================
   SECTION 10: EMAIL SIGNUP
   ================================= */

.email-signup-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    text-align: center;
}

.email-signup-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.signup-pretitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.signup-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto 20px;
}

.input-glow {
    display: flex;
    position: relative;
}

.input-glow:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--red), transparent, var(--red));
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-glow:focus-within:before {
    opacity: 1;
}

.input-glow input {
    flex-grow: 1;
    background-color: var(--medium-gray);
    border: 1px solid var(--border-gray);
    color: var(--white);
    padding: 18px 25px;
    font-size: 16px;
    outline: none;
    border-radius: 5px 0 0 5px;
}

.input-glow input::placeholder {
    color: var(--text-gray);
}

.btn-join {
    background-color: #47b0ff;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s ease;
}

.btn-join:hover {
    background-color: var(--red-hover);
}

.signup-disclaimer {
    font-size: 12px;
    color: var(--text-gray);
}

.signup-disclaimer a {
    color: var(--red);
    text-decoration: none;
}

.signup-disclaimer a:hover {
    text-decoration: underline;
}

/* =================================
   CONTACT PAGE
   ================================= */

.contact-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    min-height: 100vh;
    text-align: center;
}

.contact-pretitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    text-align: left;
}

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

.contact-form .form-input {
    width: 100%;
    background-color: var(--medium-gray);
    border: 1px solid var(--border-gray);
    color: var(--white);
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-input:focus {
    border-color: #15ccbe;
}

.contact-form .form-input::placeholder {
    color: var(--text-gray);
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-contact-submit {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: #15ccbe;
    color: var(--black);
}

/* =================================
   SECTION 11: FOOTER
   ================================= */

.footer-section {
    background-color: var(--white);
    color: var(--black);
    padding: 80px 0 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--red);
    transform: scale(1.1);
}

.footer-brand {
    text-align: center;
    margin-top: 60px;
}

/* Desktop: 5-column layout */
@media (min-width: 768px) {
    .footer-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-section .col-lg-3 {
        flex: 0 0 auto;
        width: 18%;
    }
    
    .footer-section .footer-brand {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .footer-section .footer-brand .logo-flame-footer {
        margin-top: 0;
    }
}

.logo-flame-footer {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.5));
}

/* =================================
   INLINE VIDEO PLAYER STYLES
   ================================= */

.video-thumbnail,
.video-thumb {
    position: relative;
}

.video-thumbnail video,
.video-thumb video {
    border-radius: 10px;
}

/* Hide controls initially, show on hover/tap */
.video-thumbnail video::-webkit-media-controls-panel,
.video-thumb video::-webkit-media-controls-panel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail video:hover::-webkit-media-controls-panel,
.video-thumb video:hover::-webkit-media-controls-panel,
.video-thumbnail video:focus::-webkit-media-controls-panel,
.video-thumb video:focus::-webkit-media-controls-panel {
    opacity: 1;
}

/* Ensure video maintains aspect ratio */
.media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 991px) {
    .navbar-content {
        padding: 0 20px;
    }
    
    .navbar-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .product-frame,
    .testimonial-text {
        margin-bottom: 40px;
    }
    
    .video-card {
        width: calc((100% - 20px) / 2);
        min-width: 200px;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .faq-header {
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    /* Prevent horizontal overflow globally */
    html, body {
        overflow-x: clip;
        max-width: 100vw;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Prevent internal scrolling - force page-level scrolling only */
    section {
        overflow: visible !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
        touch-action: pan-y !important;
    }
    
    section .container,
    section .container-fluid {
        overflow: visible !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    section .row,
    section .col,
    section [class*="col-"] {
        overflow: visible !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Container optimization */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* === NAVBAR MOBILE OPTIMIZATION === */
    .navbar-custom {
        padding: 20px 0;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    
    .navbar-custom.shrunk {
        padding: 20px 0;
    }
    
    .navbar-content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
        gap: 0.5rem;
    }
    
    .hamburger {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
        padding-top: 12px;
        margin-left: -6px;
    }
    
    .navbar-logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        padding-top: 2px;
    }
    
    .logo-flame img {
        height: 40px !important;
        width: auto;
    }
    
    .navbar-links {
        display: none;
    }
    
    .cart-icon {
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
        padding-top: 2px;
        margin-top: 10px;
    }
    
    /* === WORLDWIDE ICON MOBILE === */
    .worldwide-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .worldwide-icon-wrapper::before {
        width: 50px !important;
        height: 50px !important;
        box-shadow: 0 0 20px rgba(204, 255, 255, 0.25) !important;
    }
    
    .shipping-content {
        display: block !important;
        width: 100% !important;
        position: relative !important;
        height: 40px !important;
        padding: 0 !important;
    }
    
    .shipping-content > span:first-child {
        /* SHIPPING text - same distance from icon as WORLDWIDE */
        position: absolute !important;
        left: calc(25% - 8px) !important;
        top: 50% !important;
        transform: translateX(-50%) translateY(-50%) !important;
    }
    
    .shipping-content .worldwide-icon-wrapper {
        /* Icon centered at 50% - icon width is 32px */
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translateX(-50%) translateY(-50%) !important;
        z-index: 2 !important;
    }
    
    .shipping-content > span:last-child {
        /* WORLDWIDE text - centered between icon's right edge and screen right edge */
        position: absolute !important;
        left: calc(75% + 8px) !important;
        top: 50% !important;
        transform: translateX(-50%) translateY(-50%) !important;
    }
    
    /* === FEATURE GRID MOBILE === */
    .feature-grid-section {
        overflow: visible !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    .feature-grid-section .row {
        overflow: visible !important;
        max-width: 100% !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    .feature-grid-section .container {
        overflow: visible !important;
        max-width: 100% !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    .feature-grid-section .col-lg-6,
    .feature-grid-section [class*="col-"] {
        overflow: visible !important;
        height: auto !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    .row.g-4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .row.g-4 > * {
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    }
    
    /* Prevent all rows from causing any scroll */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .feature-card {
        margin-bottom: 1.5rem !important;
    }
    
    /* === ICON ROW MOBILE === */
    .icon-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 28px !important; /* Increased row-to-row spacing */
        padding: 0 1rem !important;
    }
    
    .icon-badge {
        flex: 0 1 calc(50% - 1rem) !important;
        min-width: 0 !important;
        text-align: center !important;
        gap: 13px !important; /* Increased icon to label spacing (12-14px range) */
    }
    
}

@media (max-width: 767px) {
    /* === HERO BUY SECTION MOBILE === */
    .hero-buy {
        padding: 60px 0 40px !important;
    }

    .hero-buy__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .hero-buy__gallery {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-buy__gallery-inner {
        position: relative !important;
        top: 0 !important;
        padding: 1.5rem !important;
    }

    .hero-buy__img-wrapper {
        max-width: 100% !important;
    }

    .hero-buy__main-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .hero-buy__carousel {
        display: flex !important;
        gap: 0 !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }

    .carousel-arrow {
        display: none !important;
    }

    .hero-buy__thumbnails {
        gap: 16px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .thumb-buy {
        width: calc((100% - 32px) / 2.8) !important;
        min-width: 120px !important;
    }

    .thumb-buy img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* === HERO BUY DETAILS MOBILE === */
    .hero-buy__details {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
        top: 0 !important;
    }
    
    .hero-buy__title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-buy__subtitle {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .trust-row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stars {
        display: flex !important;
        gap: 2px !important;
    }
    
    .star {
        width: 16px !important;
        height: 16px !important;
    }
    
    .trust-row__text {
        font-size: 0.75rem !important;
    }
    
    .price-block {
        margin-bottom: 1.25rem !important;
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
    }
    
    .price-block__main {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .price-block__compare {
        font-size: 0.9rem !important;
    }
    
    .price-block__current {
        font-size: 1.5rem !important;
    }
    
    .price-block__savings {
        font-size: 0.75rem !important;
    }
    
    /* === VARIANT PILLS MOBILE === */
    .variant-group {
        margin-bottom: 1.25rem !important;
    }
    
    .variant-group__label {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .variant-pills {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .pill {
        padding: 10px 14px !important;
        font-size: 0.8rem !important;
        flex: 1 1 auto !important;
        min-width: calc(33.333% - 0.4rem) !important;
        text-align: center !important;
        border-radius: 8px !important;
    }
    
    /* Animated video inside pill buttons */
    .pill--animated video {
        border-radius: 8px !important;
    }
    
    /* === BUY NOW BUTTON MOBILE === */
    .cta-btn-wrapper {
        width: 100% !important;
    }
    
    .cta-btn-wrapper button.buy-cta {
        padding: 0.75rem 2rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        min-height: 60px !important;
        border-radius: 12px !important;
    }
    
    .cta-btn-wrapper button.buy-cta .btn-text {
        font-size: 1.25rem !important;
        letter-spacing: 1px !important;
        text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.1), 0 0 6px rgba(255, 255, 255, 0.2) !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%) !important;
        background-clip: text !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        display: inline-block !important;
        text-transform: uppercase !important;
    }
    
    .btn-video {
        border-radius: 12px !important;
    }
    
    .cta-group {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }
    
    .cta-group button,
    .cta-group .btn {
        width: 100% !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* === QUANTITY & CHECKBOX MOBILE === */
    .quantity-group {
        margin-bottom: 1.25rem !important;
    }
    
    .quantity-group__label {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .quantity-stepper {
        width: 100% !important;
        max-width: 180px !important;
        padding: 2px !important;
    }
    
    .quantity-stepper::after {
        inset: 2px !important;
    }
    
    .quantity-stepper__btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.25rem !important;
    }
    
    .quantity-stepper__input {
        width: 50px !important;
        font-size: 1rem !important;
    }
    
    .custom-checkbox {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .custom-checkbox__box {
        width: 20px !important;
        height: 20px !important;
    }
    
    .custom-checkbox__label {
        font-size: 0.8rem !important;
    }
    
    /* === SCROLL CUE MOBILE === */
    .scroll-cue {
        margin-top: 2rem !important;
        padding: 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    .scroll-cue i {
        font-size: 1rem !important;
    }
    
    /* === GENERAL MOBILE ADJUSTMENTS === */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .icon-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* === FOOTER MOBILE GRID === */
    .footer-section .row {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 2rem 0.5rem !important;
        margin: 0 !important;
    }
    
    .footer-section .col-lg-3 {
        width: 100% !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    /* Row 1: 3 columns - My Account, Sitemap, Legal */
    .footer-section .col-lg-3:nth-child(1),
    .footer-section .col-lg-3:nth-child(2),
    .footer-section .col-lg-3:nth-child(3) {
        grid-column: span 2 !important;
    }
    
    /* Row 2: Socials takes 3 columns */
    .footer-section .col-lg-3:nth-child(4) {
        grid-column: span 3 !important;
    }
    
    /* Row 2: Brand Logo takes 3 columns */
    .footer-section .col-lg-3.footer-brand {
        grid-column: span 3 !important;
    }
    
    .footer-section h4 {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .footer-links li {
        margin-bottom: 6px !important;
    }
    
    .footer-links a {
        font-size: 10px !important;
    }
    
    .social-icons {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .social-icons a {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .footer-brand .logo-flame-footer img {
        height: 48px !important;
    }
    
    .video-card {
        width: 80%;
        min-width: 240px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .input-glow {
        flex-direction: column;
    }
    
    .input-glow input {
        border-radius: 5px 5px 0 0;
    }
    
    .btn-join {
        border-radius: 0 0 5px 5px;
    }
}

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

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

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* =================================
   ANIMATIONS
   ================================= */

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

.fade-in-element {
    animation: fadeIn 0.6s ease forwards;
}

/* =================================
   PRODUCT PAGE STYLES
   ================================= */

/* Hero Buy Block */
.hero-buy {
    padding: 120px 0 80px;
    background-color: #1a1a1a;
    background-image: url('assets/long-parallax.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    /*
    min-height: 100vh;
    display: flex;
    align-items: center;
    */
    position: relative;
}

.hero-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 50, 70, 0.95) 0%, rgba(255, 210, 185, 0.95) 100%);
    z-index: 0;
}

.hero-buy > .container {
    position: relative;
    z-index: 1;
}

.hero-buy__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 768px) {
    .hero-buy__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-buy__grid {
        gap: 4rem;
    }
}


.hero-buy__animation {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-buy__video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-buy__main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM PRODUCT CAROUSEL — APPLE-LIKE UX
   
   Philosophy: Curated gallery, not generic slider
   Tone: Calm, confident, editorial, museum-plaque aesthetic
   
   Visual Rules:
   - Show 2.5–3.5 thumbnails (never 4+)
   - Inactive: saturate(0.7) only (no opacity changes)
   - Active: fully saturated, anchored feel (no border/glow/scale)
   - Subtle micro-shadow baseline for all
   
   Motion Rules:
   - 250–300ms ease-out (no spring, no bounce)
   - Strong snap, no momentum flick
   - No rubber banding, no elastic behavior
   
   Controls:
   - Desktop: arrows hidden, fade in on hover only
   - Mobile: swipe only, no visible controls
   - No dots, no progress bar, no slider chrome
   ═══════════════════════════════════════════════════════════ */

.hero-buy__gallery-inner {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
}

.hero-buy__img-wrapper {
    position: relative;
    max-width: 500px;
    max-height: calc(100vh - 300px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
}

.hero-buy__main-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 280ms ease-out;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* Constrain gallery max-width on tablet+ */
@media (min-width: 768px) {
    .hero-buy__gallery {
        max-width: 600px;
    }
}

/* Tablet: smaller thumbnails so ~1.4+ visible at narrow widths */
.hero-buy__carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
}

/* Arrow Controls — Overlaid on main image, fade in on hover (desktop) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 220ms ease-out, background 220ms ease-out;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    z-index: 10;
}

.carousel-arrow--left {
    left: 10px;
}

.carousel-arrow--right {
    right: 10px;
}

/* Desktop: show arrows on image hover */
@media (min-width: 769px) {
    .hero-buy__img-wrapper:hover .carousel-arrow:not(:disabled) {
        opacity: 1;
        pointer-events: auto;
    }

    .carousel-arrow:hover {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Mobile: completely hide arrows */
@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
}

.carousel-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

/* Thumbnail Strip — Curated gallery feel */
.hero-buy__thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 2px 0;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.hero-buy__thumbnails::-webkit-scrollbar {
    display: none;
}

/* Thumbnail — Larger, deliberate spacing, 2.5–3.5 visible */
.thumb-buy {
    flex: 0 0 auto;
    width: calc((100% - 36px) / 3.4);
    min-width: 130px;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: white;
    cursor: pointer;
    transition: none;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.thumb-buy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 280ms ease-out;
    filter: saturate(0.7);
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Active State — Anchored, not highlighted (museum plaque philosophy) */
.thumb-buy--active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.thumb-buy--active img {
    filter: saturate(1.0);
}

/* Mobile Responsive — Maintain premium feel */
@media (max-width: 768px) {
    .hero-buy__gallery-inner {
        padding: 1.5rem;
    }
    
    .hero-buy__carousel {
        gap: 0;
        margin-top: 1.5rem;
    }
    
    .hero-buy__thumbnails {
        gap: 16px;
    }
    
    .thumb-buy {
        width: calc((100% - 32px) / 2.8);
        min-width: 120px;
    }

    .thumb-buy img {
        transition: none;
        filter: none;
    }

    .thumb-buy--active img {
        filter: none;
    }
}

@media (max-width: 576px) {
    .hero-buy__gallery-inner {
        padding: 1rem;
    }

    .hero-buy__thumbnails {
        gap: 12px;
    }

    .thumb-buy {
        width: calc((100% - 24px) / 2.5);
        min-width: 100px;
    }
}

/* Tablet: show ~1.5 thumbnails */
@media (min-width: 768px) and (max-width: 991px) {
    .thumb-buy {
        width: calc((100% - 12px) / 1.5);
        min-width: unset;
        max-width: unset;
    }
}

/* Hero Buy Details */
.hero-buy__details {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    color: var(--white);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 767px) {
    .hero-buy__details {
        position: relative;
        top: 0;
    }
}

.hero-buy__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-buy__subtitle {
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 4px;
    color: #15CCBE;
}

.star {
    color: #f5c518;
    animation: glowPattern 12s infinite;
}

/*
@keyframes glowPattern {
    
    0%, 8.33% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    4.17%, 12.5% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    
    
    16.67%, 25% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    20.83%, 29.17% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    
    
    33.33%, 41.67% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    37.5%, 45.83% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    
    
    50%, 54.17% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    52.08%, 58.33% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    62.5%, 66.67% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    64.58%, 70.83% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    75%, 79.17% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    77.08%, 100% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
}
*/

.trust-row__text {
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-block__main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-block__compare {
    font-size: 1.25rem;
    color: var(--light-gray);
    text-decoration: line-through;
}

.price-block__current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.price-block__savings {
    background-color: #00F0FF;
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Variant Groups */
.variant-group {
    margin-bottom: 1.5rem;
}

.variant-group__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.variant-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Pills */
.pill {
    padding: 10px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    background-color: transparent;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.18s ease;
    cursor: pointer;
    overflow: visible;
}

.pill:hover {
    background-color: rgba(0, 174, 255, 0.156);
}

.pill:focus-visible {
    outline: 2px solid rgb(153, 255, 255);
    outline-offset: 2px;
}

.pill--active {
    border-color: rgb(153, 255, 255);
    background-color: rgba(0, 174, 255, 0.156);
    color: rgb(153, 255, 255);
}

/* Animated Pills with Hover Video */
.pill--animated {
    position: relative;
    overflow: hidden;
}

.pill--animated__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.pill--animated:hover .pill--animated__video {
    opacity: 0.3;
}

.pill--animated > span,
.pill--animated > .pill--animated__text {
    position: relative;
    z-index: 1;
}

/* Quantity */
.quantity-group {
    margin-bottom: 1.5rem;
}

.quantity-group__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.quantity-stepper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-gray);
    isolation: isolate;
}

.quantity-stepper::before {
    content: '';
    position: absolute;
    inset: -50%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 120deg,
        rgba(192, 192, 192, 0.3) 150deg,
        rgba(255, 255, 255, 1) 180deg,
        rgba(192, 192, 192, 0.3) 210deg,
        transparent 240deg,
        transparent 360deg
    );
    animation: steelFlash 1.575s ease-in-out infinite;
    z-index: -1;
}

.quantity-stepper::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark-gray);
    border-radius: 10px;
    z-index: -1;
}

@keyframes steelFlash {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    5% {
        transform: rotate(270deg);
        opacity: 1;
    }
    8% {
        opacity: 0;
    }
    100% {
        transform: rotate(270deg);
        opacity: 0;
    }
}

.quantity-stepper__btn {
    padding: 10px 16px;
    background-color: transparent;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    transition: background-color 0.18s ease;
    cursor: pointer;
}

.quantity-stepper__btn:hover {
    background-color: var(--medium-gray);
}

.quantity-stepper__input {
    width: 60px;
    padding: 10px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-gray);
    border-right: 1px solid var(--border-gray);
    background-color: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.quantity-stepper__input:focus {
    outline: none;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox__box {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    background-color: transparent;
    transition: all 0.18s ease;
    position: relative;
    flex-shrink: 0;
}

.custom-checkbox__box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-color: cyan;
    border-radius: 2px;
    transition: transform 0.18s ease;
}

.custom-checkbox input:checked + .custom-checkbox__box {
    border-color: cyan;
    background-color: rgba(0, 255, 255, 0.1);
}

.custom-checkbox input:checked + .custom-checkbox__box::after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-checkbox__label {
    font-size: 0.875rem;
    color: var(--white);
}

/* TOGGLE  SWITCH*/
.toggle-switch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-switch__slider {
    position: relative;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    transition: background 0.3s;
}

.toggle-switch__slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch__slider {
    background: #4CAF50;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch__slider::after {
    transform: translateX(24px);
}

.toggle-switch__label {
    font-size: 16px;
    color: #333;
}


/* CTAs */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#addToCart {
    width: 100%;
    margin-bottom: 7px;
}

.product-trust-badges {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.trust-badges-image {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
}

.btn--compact {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Micro Copy */
.micro-copy {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.micro-copy p {
    margin-bottom: 4px;
}

/* Scroll Cue */
.scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 2rem auto 0;
    color: cyan;
    border: 2px solid cyan;
    border-radius: 50%;
    background: transparent;
    transition: all 0.18s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-cue:hover {
    background-color: cyan;
    color: var(--dark-gray);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.benefits__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.benefits__subtitle {
    text-align: center;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background-color: var(--dark-gray);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    border-color: cyan;
}

.benefit-card__icon {
    color: #15CCBE;
    margin-bottom: 1.5rem;
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card__text {
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* Hero Product Featured */
.hero-product {
    padding: 80px 0;
    background-color: var(--black);
}

.hero-product__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .hero-product__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .hero-product__gallery {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 767px) {
    .hero-product {
        background-attachment: scroll;
    }
    
    .hero-product__grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }
}

.hero-product__main-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-product__animation {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-product__video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-product__details {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

.hero-product__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: cyan;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.075rem;
    color: rgb(227, 227, 227);
}

#productDetails.feature-list li {
    font-size: 0.875rem;
}

.feature-list li::before {
    content: none;
    font-family: Arial, sans-serif; 
    position: absolute;
    left: 0;
    color: rgb(25, 239, 239);
    font-weight: 900;
}

#productDetails.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(25, 239, 239);
    font-weight: 900;
}

/* Spec Table */
.spec-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.spec-table__caption {
    text-align: left;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(53, 45, 45);
}

.spec-table th,
.spec-table td {
    padding: 0.5rem 0;
    text-align: left;
    font-size: 0.875rem;
}

.spec-table th {
    font-weight: 600;
    color: rgb(77, 77, 77);
}

.spec-table td {
    color: rgb(227, 227, 227);
}

.spec-table tr {
    border-bottom: 1px solid var(--border-gray);
}

.spec-table tr:last-child {
    border-bottom: none;
}

/* Price Callout */
.price-callout {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(0, 255, 255, 0.05);
    border: 1px solid cyan;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-callout__label {
    font-size: 0.875rem;
    color: var(--light-gray);
}

.price-callout__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: cyan;
}

/* What's in Box */
.whats-in-box {
    margin-bottom: 2rem;
}

.whats-in-box__title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.whats-in-box__list {
    list-style: none;
}

.whats-in-box__list li {
    padding: 4px 0;
    font-size: 0.875rem;
    color: rgb(77, 77, 77);
}

/* Link Subtle */
.link-subtle {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: cyan;
    text-decoration: none;
    transition: color 0.18s ease;
}

.link-subtle:hover {
    color: var(--white);
}

/* Brand Video */
.brand-video {
    padding: 80px 0;
    background-color: #1a1a1a;
    background-image: url('assets/product-hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.brand-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.85);
    z-index: 0;
}

.brand-video > .container {
    position: relative;
    z-index: 1;
}

.video-module {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.video-module__wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.video-module__poster {
    width: 100%;
    display: block;
}

.video-module__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--red);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.1s ease;
}

.video-module__play:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 100px 1000px rgba(240, 255, 255, 0.1);
    /*filter: invert(1);*/
}

.video-module__video {
    width: 100%;
    display: block;
}

.video-module__caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* Credibility Badges */
.credibility-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-gray);
    margin-bottom: 4px;
}

.badge__value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Our DNA */
.our-dna {
    padding: 80px 0;
    background-color: #2d2d2d;
    background-image: url('assets/long-parallax.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}

/* .our-dna::before - Removed to show background image fully without overlay */

.our-dna > .container {
    position: relative;
    z-index: 1;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gray), transparent);
    margin: 4rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.dna-tile {
    text-align: center;
    padding: 2rem;
}

.dna-tile__icon {
    color: cyan;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    font-size: 64px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

.dna-tile__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.dna-tile__text {
    font-size: 0.875rem;
    color: var(--light-gray);
    line-height: 1.7;
}

/* Categories */
.categories {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    border-color: cyan;
}

.category-card__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-card__content {
    padding: 2rem;
    background-color: var(--dark-gray);
}

.category-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.category-card__desc {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.category-card__cta {
    display: inline-block;
    font-size: 0.875rem;
    color: cyan;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s ease;
}

.category-card__cta:hover {
    color: var(--white);
}

/* Story */
.story {
    padding: 80px 0;
    background-color: #2d2d2d;
    background-image: url('assets/long-parallax.png');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 45, 45, 0.85);
    z-index: 0;
}

.story > .container {
    position: relative;
    z-index: 1;
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .story__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story__column {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

.story__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.story__text {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story__quote {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-left: 4px solid cyan;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    border-left: 4px solid cyan;
}

.story__quote p {
    font-size: 1.25rem;
    font-family: myfont;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--white);
}

.story__quote footer {
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    border-color: cyan;
}

.gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery__tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid cyan;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: cyan;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery__item:hover .gallery__tag {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky Cart */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 4.5rem 0; /* 200% more height (was 1.5rem, now 4.5rem) */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--red);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.sticky-cart[aria-hidden="false"] {
    transform: translateY(0);
}

.sticky-cart__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sticky-cart__product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-cart__thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.sticky-cart__info {
    color: white;
}

.sticky-cart__name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sticky-cart__variant {
    font-size: 0.75rem;
    color: var(--light-gray);
}

.sticky-cart__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-left: auto;
}

.sticky-cart__qty {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.sticky-cart__qty-btn {
    color: white;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    padding: 0 8px;
    cursor: pointer;
}

.sticky-cart__qty-value {
    color: white;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.sticky-cart__actions {
    display: flex;
    gap: 0.5rem;
}

.quick-add {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gray);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.18s ease;
    cursor: pointer;
}

.quick-add:hover {
    background-color: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.sticky-cart__count {
    position: relative;
    background-color: var(--red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    min-width: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .sticky-cart {
        padding: 0.5rem 0;
    }
    
    .sticky-cart__content {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .sticky-cart__product {
        gap: 0.5rem;
    }
    
    .sticky-cart__thumb {
        width: 40px;
        height: 40px;
    }
    
    .sticky-cart__name {
        font-size: 0.75rem;
    }
    
    .sticky-cart__variant {
        font-size: 0.65rem;
    }
    
    .sticky-cart__price {
        margin-left: 0;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .sticky-cart__qty {
        padding: 4px 8px;
        gap: 0.5rem;
    }
    
    .sticky-cart__qty-btn {
        font-size: 1rem;
        padding: 0 4px;
    }
    
    .sticky-cart__qty-value {
        font-size: 0.875rem;
        min-width: 24px;
    }
    
    .sticky-cart__actions {
        width: 100%;
        justify-content: center;
        gap: 0.35rem;
    }
    
    .quick-add {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .btn--compact {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.18s ease;
}

.lightbox__close:hover {
    transform: rotate(90deg);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

#lightboxImg {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.lightbox__caption {
    color: white;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 100px;
    right: 2rem;
    background-color: var(--red);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(124, 222, 255, 0.5);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

/* Mobile Parallax Disable for Performance */
@media (max-width: 767px) {
    .hero-buy,
    .our-dna,
    .story,
    .brand-video {
        background-attachment: scroll;
    }
}

/*special button ///////////////////////////////////////////////////////////*/


@font-face {
    font-family: 'myfont';
    src: url('assets/myfont.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;

  }

@font-face {
  font-family: 'myfont2';
  src: url('assets/myfont2.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'myfont2r';
  src: url('assets/myfont2r.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'myfont3';
  src: url('assets/myfont3.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
  
  .cta-btn-wrapper button.buy-cta {
    position: relative !important;
    border: 15px solid rgb(255, 255, 255) !important;
    background: transparent !important;
    overflow: hidden !important;
    transition: border-color 0.05s, background-color 0.05s !important;
    border-radius: 0 0 50% 50% / 0 0 100% 100% !important;
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 80%,
      50% 100%,
      0% 80%
    ) !important;
    padding: 1rem 10rem !important;
    cursor: pointer !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'myfont', sans-serif !important;
    min-height: 120px !important;
  }
  
  .cta-btn-wrapper button.buy-cta::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    box-shadow: inset 0 0 20px 20px rgba(0, 251, 255, 0.3) !important;
  }
  
  .cta-btn-wrapper .btn-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -1 !important;
    transition: opacity 0.1s steps(30) !important;
  }
  
  .cta-btn-wrapper .btn-video-default {
    opacity: 0.6 !important;
  }
  
  .cta-btn-wrapper .btn-video-hover {
    opacity: 0 !important;
  }
  
  .cta-btn-wrapper .btn-text {
    position: relative !important;
    z-index: 2 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.1), 0 0 8px rgba(255, 255, 255, 0.2) !important;
    font-size: 1.5rem !important;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
    text-transform: uppercase !important;
  }
  
  .cta-btn-wrapper button.buy-cta:hover {
    border: 10px;
    border-color: rgb(255, 255, 255) !important;
    box-shadow: none !important;
  }
  
  .cta-btn-wrapper button.buy-cta:hover .btn-video-default {
    opacity: 0 !important;
  }
  
  .cta-btn-wrapper button.buy-cta:hover .btn-video-hover {
    opacity: 0.6 !important;
  }
  
  .cta-btn-wrapper button.buy-cta:active,
  .cta-btn-wrapper button.buy-cta:active:hover {
    background-color: rgb(0, 0, 0) !important;
    border-color: rgb(0, 149, 160) !important;
    box-shadow: none !important;
  }
  
  .cta-btn-wrapper button.buy-cta:active .btn-video,
  .cta-btn-wrapper button.buy-cta:active:hover .btn-video {
    opacity: 0.1 !important;
  
  }

  .cta-btn-wrapper button.buy-cta:active .btn-text {
    -webkit-text-fill-color: rgb(0, 30, 30) !important;
}
    
    @keyframes fadeOutSteps {
      to { opacity: 0; }
    }
    
    @keyframes clickFlash {
      0%, 100% {
        box-shadow: inset 0 0 0 500px rgba(255, 20, 147, 0.7);
      }
    }


/*special button ///////////////////////////////////////////////////////////*/

/* Desktop wrapper */
.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.cta-btn-double-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

#addtocart.cta-btn-wrapper {
    margin-bottom:20px;
}

/* Mobile override for special BUY NOW button - MUST be last */
@media (max-width: 767px) {
    .cta-btn-wrapper {
        width: 100% !important;
        display: block !important;
    }
    
    .cta-btn-wrapper button.buy-cta {
        padding: 0.9rem 3rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        min-height: 70px !important;
        /* Keep the special shape - pentagon with curved bottom */
        border-radius: 0 0 50% 50% / 0 0 100% 100% !important;
        clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 80%,
            50% 100%,
            0% 80%
        ) !important;
        border-width: 17px !important;
        border-style: solid !important;
        border-color: rgb(255, 255, 255) !important;
    }
    
    .cta-btn-wrapper button.buy-cta .btn-text {
        font-size: 1.25rem !important;
        letter-spacing: 1px !important;
        text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.1), 0 0 6px rgba(255, 255, 255, 0.2) !important;
    }
    
    .cta-btn-wrapper button.buy-cta::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none !important;
        z-index: 0 !important;
        box-shadow: inset 0 0 15px 15px rgba(0, 251, 255, 0.3) !important;
    }
    
    .cta-btn-wrapper button.buy-cta:hover {
        background-color: rgb(0, 0, 0) !important;
        box-shadow: none !important;
        border-color: rgb(255, 255, 255) !important;
    }
    
    .cta-btn-wrapper button.buy-cta:active,
    .cta-btn-wrapper button.buy-cta:active:hover {
        border-color: rgb(0, 149, 160) !important;
        /*border-color: rgb(0, 70, 70) !important;*/
        border-color: none !important;
        box-shadow: none !important;
    }
}

#shipping {
    letter-spacing: 3px;
}

#worldwide {
    letter-spacing: 1px;
}

/* Shopify Buy Button Container Overrides */
#product-component-1764860843692 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

@media (max-width: 767px) {
    #product-component-1764860843692 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    #product-component-1764860843692 iframe {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Override Shopify's inline styles if needed */
    [data-shopify-buy-ui] {
        width: 100% !important;
    }
}

/* Product page navbar — static, always opaque */
#navbarProduct {
    position: relative;
    background-color: rgba(0, 0, 0, 0.95);
}

.cta-btn-wrapper button.buy-cta {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-user-select: none !important;
    user-select: none !important;
  }

/* ADD TO CART CTA*/
#addtocart.cta-btn-wrapper button.buy-cta {
position: relative !important;
border: 17px solid !important;
border-image: linear-gradient(to bottom, rgb(255, 241, 216), rgb(255, 80, 0)) 1 !important;
/*border-image: linear-gradient(to bottom, rgb(135, 200, 203), rgb(255, 220, 205)) 1 !important;*/
/*background-color: rgb(28, 0, 60) !important;*/
background-color: rgb(4, 31, 82) !important;
overflow: hidden !important;
transition: border-image 0s, background-color 0.2s, box-shadow 0.1s !important;
border-radius: 20px !important;
padding: 0.7rem 2rem !important;
cursor: pointer !important;
font-family: 'myfont', sans-serif !important;
width: 100% !important;
box-sizing: border-box !important;
}
#addtocart.cta-btn-wrapper button.buy-cta .btn-video {
transition: opacity 0s ease !important;
}
#addtocart.cta-btn-wrapper button.buy-cta:active .btn-text {
-webkit-text-fill-color: rgb(0, 0, 0) !important;
}
#addtocart.cta-btn-wrapper button.buy-cta:hover {
    border-image: linear-gradient(to bottom, rgb(230, 235, 240), rgb(140, 150, 160)) 1 !important;
  box-shadow: 0 0 20px rgba(192, 247, 255, 0.4) !important;
}
#addtocart.cta-btn-wrapper button.buy-cta:active,
#addtocart.cta-btn-wrapper button.buy-cta:active:hover {
  background-color: rgba(0, 226, 181, 0.233) !important;
  border-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(168, 168, 168)) 1 !important;
  box-shadow: none !important;
}
#addtocart.cta-btn-wrapper button.buy-cta:hover {
    border-image: linear-gradient(to bottom, rgb(230, 235, 240), rgb(140, 150, 160)) 1 !important;
  box-shadow: none !important;
}
/*SOME MEDIA QUERY
@media (hover: none) {
    .cta-btn-wrapper button.buy-cta:hover {
      border-color: rgb(0, 200, 200) !important;
      box-shadow: none !important;
    }
    
    .cta-btn-wrapper button.buy-cta:hover .btn-video-default {
      opacity: 0.6 !important;
    }
    
    .cta-btn-wrapper button.buy-cta:hover .btn-video-hover {
      opacity: 0 !important;
    }
    
    #addtocart.cta-btn-wrapper button.buy-cta:hover {
        border-image: linear-gradient(to top, rgb(230, 235, 240), rgb(140, 150, 160)) 1 !important;
      box-shadow: none !important;
    }
  }
    */

.variant-pills--bundle {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    overflow: visible;
}

.variant-pills--bundle button {
    flex: 1 1 0;
    min-width: 0;
    height:100px;
    text-align: left;
    overflow: visible;
}

/* Bundle Contents Visualizer */
.bundle-contents-section {
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(153, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(153, 255, 255, 0.08);
}

.bundle-contents-label {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-align: center;
}

.bundle-contents-chips {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Increased spacing when only 2 fans are displayed (2-pack) */
.bundle-contents-chips:has(.fan-chip:nth-child(2):last-child) {
    gap: 24px;
}

/* Bundle Badges - Premium Animated Badges */
.bundle-card {
    position: relative;
    overflow: visible;
}

.bundle-badge {
    position: absolute;
    z-index: 10;
    
    /* CRITICAL: Remove from layout flow completely */
    pointer-events: none;
    
    /* Visual styling (matching btn-cta theme) */
    background: linear-gradient(90deg, #2FA3F3 0%, #47B0FF 100%);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    
    /* Shadow - matching btn-cta depth & glow */
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        0 3px 12px rgba(47, 160, 255, 0.35),
        0 2px 6px rgba(71, 176, 255, 0.25);
    
    /* Performance optimization */
    will-change: transform, opacity, filter;
    
    /* Continuous animation */
    animation: badge-pulse 2s ease-in-out infinite;
}

/* Top right badge - overlapping corner (floating above) */
.bundle-badge--top-right {
    top: -6px;
    right: -6px;
    transform-origin: top right;
}

/* Bottom left badge - inside pill, near corner (floating above) */
.bundle-badge--bottom-left {
    bottom: 6px;
    left: 6px;
    transform-origin: bottom left;
}

/* Continuous pulse animation */
@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0px);
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
        filter: blur(0.4px);
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bundle-badge {
        animation: none;
    }
}

.fan-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(153, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.fan-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(153, 255, 255, 0.3);
    transform: translateY(-2px);
}

.fan-chip.active {
    background: rgba(21, 204, 190, 0.15);
    border-color: #15ccbe;
    box-shadow: 0 0 12px rgba(21, 204, 190, 0.3);
}

.fan-chip__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Chip label - muted hierarchy by default */
.fan-chip__label {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: uppercase;
    letter-spacing: 0.8px !important;
    opacity: 1;
    transition: color 0.2s ease;
}

/* Active chip label - full white emphasis */
.fan-chip.active .fan-chip__label {
    color: rgba(255, 255, 255, 0.98) !important;
    opacity: 1;
}

/* Unit badge - neutral indexing marker (NOT a status indicator) */
.unit-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 4px;
    padding: 0 4px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

/* Active chip: badge text slightly brighter only (NO cyan fill) */
.fan-chip.active .unit-badge {
    color: rgba(255, 255, 255, 0.90);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Mobile optimization */
@media (max-width: 480px) {
    .bundle-contents-chips {
        gap: 6px;
    }
    
    .fan-chip {
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .fan-chip__icon {
        width: 40px;
        height: 40px;
    }
    
    .fan-chip__label {
        font-size: 9px !important;
    }
    
    .unit-badge {
        top: 3px;
        left: 3px;
        min-width: 15px;
        height: 15px;
        font-size: 8px;
    }
}

/* Color Variant Pills - Always in 1 row */
.variant-pills--color {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
}

.pill--color {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    position: relative;
    padding-bottom: 14px !important; /* Extra space for the line */
}

/* Colored line indicator at bottom (only when selected) */
.pill--color.pill--active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Stealth (Black) - Stronger glow to compensate for optical illusion */
.pill--color[data-value="black"].pill--active::after {
    background-color: #000000;
    box-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(0, 0, 0, 0.6),
        0 0 16px rgba(0, 0, 0, 0.4);
}

/* Arctic (White) */
.pill--color[data-value="white"].pill--active::after {
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Ion (Violet) */
.pill--color[data-value="violet"].pill--active::after {
    background-color: #9b59b6;
    box-shadow: 0 0 6px rgba(155, 89, 182, 0.8);
}

/* Mobile: Keep pills compact and in one row */
@media (max-width: 576px) {
    .variant-pills--color {
        gap: 6px;
    }
    
    .pill--color {
        font-size: 0.8rem;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Progressive Lock-In Animations */
#progressiveSelectorState {
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

#summaryState {
    transition: opacity 0.28s ease-out;
}

#microFeedback {
    transition: all 0.28s ease-out;
}

#feedbackText {
    transition: opacity 0.14s ease-out;
}

/* Smooth pill transitions during selection - CALM, NOT RUSHED */
.pill--color {
    transition: all 0.22s ease-out !important;
}

.pill--color:active {
    transform: scale(0.96);
}

/* ═══════════════════════════════════════════════════════════
   COMPLETION STATE VISUAL REFINEMENT
   Design goal: Calm, resolved, human (not technical or form-like)
═══════════════════════════════════════════════════════════ */

/* Summary Container: Softer, reassuring (not alert-style) */
.summary-container {
    padding: 20px 22px;
    /* Softer background with subtle inner glow for calm feel */
    background: linear-gradient(135deg, rgba(153, 255, 255, 0.04) 0%, rgba(153, 255, 255, 0.08) 100%);
    border-radius: 14px;
    /* Soft outline, not sharp border */
    border: 1px solid rgba(153, 255, 255, 0.15);
    /* Optional subtle inner glow for warmth */
    box-shadow: inset 0 1px 2px rgba(153, 255, 255, 0.05);
}

/* Header: Warm and welcoming, not technical */
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Changed to flex-start to accommodate edit area */
    margin-bottom: 18px;
    padding-bottom: 14px;
    /* Soft separator, not harsh line */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-title {
    font-size: 1.4rem;
    font-weight: 500; /* Medium, not bold - friendlier */
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.3px;
    /* Calm tone, no aggressive icons */
}

/* Edit Area: Contains button and hint text */
.edit-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-height: 48px; /* Reserve space for hint text to prevent layout jump */
}

/* Edit Button: Secondary emphasis (safe escape hatch, not competing action) */
.edit-btn {
    padding: 7px 15px;
    /* Lower contrast than header - reduced further */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.28s ease-out;
    display: flex;
    align-items: center;
    gap: 5px;
    /* Nudge down a few pixels */
    position: relative;
    top: 3px;
}

/* Subtle hover glow - text only, no background competition */
.edit-btn:hover {
    color: rgba(255, 255, 255, 0.75);
    /* Low-opacity cyan glow on text only */
    text-shadow: 0 0 12px rgba(153, 255, 255, 0.25);
    /* Remove background effects for text-only affordance */
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.edit-btn:active {
    transform: translateY(0);
}

/* Synchronized glow when hint appears - matches hover effect */
.edit-btn--glow {
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 12px rgba(153, 255, 255, 0.25);
    transition: all 0.28s ease-out;
}

.edit-icon {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Edit Hint: Temporary text that fades in/out after completion */
.edit-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: myfont;
    opacity: 0;
    transition: opacity 0.2s ease-out; /* Fade-in: 200ms */
    max-width: 200px;
    text-align: right;
    line-height: 1.3;
    margin-top: 2px;
}

/* Fade-out class (applied via JS) */
.edit-hint--fadeout {
    opacity: 0;
    transition: opacity 0.4s ease-out; /* Fade-out: 400ms */
}

/* Show hint class (applied via JS) */
.edit-hint--show {
    opacity: 1;
}

/* Summary Grid: Responsive layout based on fan count */
.summary-grid {
    display: grid;
    gap: 12px;
}

/* 2 fans: 1 column × 2 rows (compact, not tall stack) */
.summary-grid--2fans {
    grid-template-columns: 1fr;
    max-width: 360px; /* Prevent too wide on desktop */
}

/* 4 fans: 2 columns × 2 rows (prevents tall stacks) */
.summary-grid--4fans {
    grid-template-columns: repeat(2, 1fr);
}

/* Summary Item: Clean, informational AND clickable for quick edits */
.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px; /* Increased horizontal padding from 12px to 16px */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease-out; /* Smoother: 300ms ease-out */
    cursor: pointer;
    /* Subtle hint that it's interactive */
    border: 1px solid transparent;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.summary-item:active {
    transform: translateY(0);
}

/* Color Dot: Small, informational marker (NOT checkbox or square) */
.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%; /* Perfect circle */
    flex-shrink: 0;
    /* Border color matches the dot color for better definition */
    border: 1.5px solid rgba(255, 255, 255, 0.2); /* Default, overridden by specific colors */
    /* Small shadow for depth */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Color-specific borders for better visual definition */
.color-dot[data-color="black"] {
    border-color: rgba(0, 0, 0, 0.95); /* Almost completely black */
}

.color-dot[data-color="white"] {
    border-color: rgba(200, 200, 200, 0.7); /* Slightly darker than white */
}

.color-dot[data-color="violet"] {
    border-color: rgba(108, 41, 128, 0.85); /* Darker purple tone */
}

/* Fan Label: Subtle, not prominent */
.fan-label {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    min-width: 42px;
}

/* Color Name: Primary information */
.color-name {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease-out; /* Match 300ms timing */
}

/* Hover hint: Make clickable nature clear with MUTED cyan */
.summary-item:hover .color-name {
    color: rgba(153, 255, 255, 0.7); /* Muted cyan (was 100% opacity) */
}

.summary-item:hover .fan-label {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease-out; /* Smooth transition */
}

/* Mobile: Stack to single column for clarity */
@media (max-width: 576px) {
    .summary-grid--4fans {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .summary-container {
        padding: 16px 18px;
    }
    
    .summary-header {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }
    
    .summary-title {
        font-size: 1rem;
    }
    
    .edit-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .summary-item {
        padding: 9px 10px;
    }
}

/* Equal-height panel guarantee */
#colorSelectionContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#panelA, #panelB {
    transition: all 0.28s ease-out;
}

/* CTA status transitions */
#ctaStatus {
    transition: all 0.28s ease-out;
    margin-top: -6px; /* Bring closer to the summary card above */
}

.frostedText {
    display: inline-block;
    padding: 8px 14px;
  
    /* subtle cold mist */
    background: linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.02)
    );
  
    backdrop-filter: blur(18px) brightness(1.08);
    -webkit-backdrop-filter: blur(18px) brightness(1.08);
  
    border-radius: 6px;
  
    /* airy depth without looking like UI glitter */
    box-shadow:
      0 12px 40px rgba(0, 180, 255, 0.08),
      0 4px 10px rgba(0,0,0,0.18),
      inset 0 0 25px rgba(255,255,255,0.07);
  
    color: #E8FFFF;
  }

body, p, h3 {
    font-family: "myfont3", sans-serif !important;
    font-weight: 300;
  }

  .myfont2 {
    font-family: "myfont2", sans-serif !important;
    font-weight: 300;
  }

  .myfont2r {
    font-family: "myfont2r", sans-serif !important;
    font-weight: 300;
  }

h1, h2 {
    font-family: "myfont", sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em !important;
}

.bold.frostedText{
    font-size: 1.875em !important;
    
}

.icon-row{
    font-family: "myfont", sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.22em !important;
    font-size: em !important;
}
#editHint{
    font-family: "myfont3", sans-serif !important;
    font-weight: 300;
}

/*html { font-size: 140%; } */

/* ═══════════════════════════════════════════════════
   CART DRAWER - Dark Theme
   ═══════════════════════════════════════════════════ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}
.cart-drawer.open {
    pointer-events: auto;
}
.cart-drawer__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-drawer.open .cart-drawer__overlay {
    opacity: 1;
}
.cart-drawer__content {
    position: absolute;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #0d0d0d;
    color: #f0f0f0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.cart-drawer.open .cart-drawer__content {
    transform: translateX(0);
}

/* Header */
.cart-drawer__header {
    padding: 20px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.cart-drawer__header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.cart-drawer__close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
    line-height: 1;
    padding: 0 4px;
}
.cart-drawer__close:hover {
    color: #fff;
}

/* Scrollable items */
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

/* Cart item */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #1f1f1f;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item__img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #1a1a1a;
    flex-shrink: 0;
}
.cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cart-item__name {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}
.cart-item__meta {
    font-size: 12px;
    color: #888;
    margin: 0;
}
.cart-item__price {
    font-weight: 600;
    font-size: 14px;
    color: #15ccbe;
    margin: 4px 0 0;
}
.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

/* Quantity buttons */
.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #3a3a3a;
    background: #1a1a1a;
    color: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.qty-btn:hover {
    background: #2a2a2a;
    border-color: #15ccbe;
}
.qty-btn--trash {
    color: #e54545;
    border-color: #3a3a3a;
}
.qty-btn--trash:hover {
    background: rgba(229, 69, 69, 0.15);
    border-color: #e54545;
}
.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #15ccbe;
}

/* Empty state */
.cart-drawer__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}
.cart-drawer__empty-logo {
    width: 80px;
    height: auto;
    opacity: 0.15;
    margin-bottom: 24px;
}
.cart-drawer__empty p {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}
.cart-drawer__continue-btn {
    background: none;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.cart-drawer__continue-btn:hover {
    border-color: #15ccbe;
    color: #15ccbe;
}

/* Footer */
.cart-drawer__footer {
    flex-shrink: 0;
    padding: 16px 24px 20px;
    border-top: 1px solid #2a2a2a;
    background: #0d0d0d;
}

/* Promo code */
.cart-drawer__promo {
    margin-bottom: 12px;
}
.cart-drawer__promo-toggle {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s;
}
.cart-drawer__promo-toggle:hover {
    color: #15ccbe;
}
.cart-drawer__promo-chevron {
    font-size: 10px;
    transition: transform 0.3s;
}
.cart-drawer__promo-chevron.open {
    transform: rotate(180deg);
}
.cart-drawer__promo-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
}
.cart-drawer__promo-body.open {
    max-height: 100px;
    margin-top: 10px;
}
.cart-drawer__promo-input-row {
    display: flex;
    gap: 8px;
}
.cart-drawer__promo-input {
    flex: 1;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: #f0f0f0;
    font-size: 13px;
    outline: none;
}
.cart-drawer__promo-input:focus {
    border-color: #15ccbe;
}
.cart-drawer__promo-input::placeholder {
    color: #666;
}
.cart-drawer__promo-apply {
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: #f0f0f0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cart-drawer__promo-apply:hover {
    border-color: #15ccbe;
    color: #15ccbe;
}
.cart-drawer__promo-message {
    font-size: 12px;
    margin: 6px 0 0;
    min-height: 0;
}
.cart-drawer__promo-message--success {
    color: #4caf50;
}
.cart-drawer__promo-message--error {
    color: #e54545;
}

/* Totals */
.cart-drawer__totals {
    margin-bottom: 16px;
}
.cart-drawer__totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
    padding: 4px 0;
}
.cart-drawer__totals-row--total {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid #2a2a2a;
}
.cart-drawer__free-shipping {
    color: #15ccbe;
    font-size: 13px;
}

/* Continue shopping link */
.cart-drawer__continue-link {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    display: block;
    text-align: center;
    margin: 10px auto 12px;
    text-decoration: underline;
    transition: color 0.2s;
}
.cart-drawer__continue-link:hover {
    color: #15ccbe;
}

/* Trust row */
.cart-drawer__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
}
.cart-drawer__trust-img {
    height: 22px;
    width: auto;
    opacity: 0.6;
}
.cart-drawer__secure {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cart-drawer__secure i {
    font-size: 10px;
}

/* Arc animation dot */
.cart-arc-dot {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #15ccbe;
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 0 14px rgba(21, 204, 190, 0.6);
}

@keyframes cartIconBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.cart-icon--bounce {
    animation: cartIconBounce 0.2s ease-out;
}

/* Mobile */
@media (max-width: 480px) {
    .cart-drawer__content {
        width: 100%;
    }
}

  /*media for displaying <br> for shipping for visual grid*/
    .show-md-up { display: none; }
  @media (min-width: 768px) {
    .show-md-up { display: block; }
  }

  /* Tutorial Grid */
  .tutorial-tagline {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #9CA3AF;
    margin: 0 auto 60px;
    max-width: 800px;
    width: fit-content;
  }

  .tutorial-tagline p {
    margin: 8px 0;
    line-height: 1.6;
  }

  .tutorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
    padding: 0 20px;
    justify-items: center;
  }

  .tutorial-item {
    width: 80%;
    max-width: 500px;
  }

  .tutorial-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
  }

  .tutorial-text {
    margin-top: 15px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #D1D5DB;
    width: 100%;
  }

  /* Tablet and Desktop: 2x2 grid - each image ~40% of screen */
  @media (min-width: 768px) {
    .tutorial-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      max-width: 2000px;
      margin: 40px auto;
      padding: 0 60px;
    }

    .tutorial-item {
      width: 100%;
      max-width: 600px;
    }
  }

  .microcopy-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}