/* ==========================================================================
           Design System: Editorial Flagship
           This is the core engine of the theme. Changing these variables will 
           update the colors and spacing across the entire website instantly.
            */
:root {
    /* Onyx, Bone & Vermilion Palette (Dark Mode Default) */
    --bg: #0d0d0c;
    --surface: rgba(26, 26, 24, 0.6);
    --surface-solid: #1a1a18;
    --text: #f4f0e6;
    --text-muted: #96948c;
    --accent: #ff542e;
    /* The primary call-to-action color */

    /* Borders and UI States */
    --border: rgba(244, 240, 230, 0.1);
    --border-solid: #2c2b28;
    --error: #ef4444;
    --success: #10b981;

    /* Skeleton Loading Colors */
    --skel-bg: #2c2b28;
    --skel-shine: #3d3c38;

    /* Font Families */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing Scale (Based on an 8px grid for perfect rhythm) */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-6: 48px;
    --sp-8: 64px;
    --sp-12: 120px;
}

/* Light Theme Overrides 
            Triggered automatically when the data-theme attribute on the HTML tag changes.
        */
[data-theme="light"] {
    --bg: #f4f0e6;
    --surface: rgba(255, 255, 255, 0.6);
    --surface-solid: #ffffff;
    --text: #0d0d0c;
    --text-muted: #50504b;
    --border: rgba(13, 13, 12, 0.1);
    --border-solid: #e0ddd3;
    --skel-bg: #e0ddd3;
    --skel-shine: #eeebe1;
}

/* Global Reset & Base Styles 
            Note: We hide the default cursor here because we are using a custom GSAP cursor.
        */
* {
    cursor: none;
}

/* ==========================================================================
           Custom Magnetic Cursor
           ========================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    /* Prevents the cursor from blocking clicks */
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
    /* Inverts color based on background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover State for the Custom Cursor */
.cursor.active {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 1.5px solid var(--text);
    mix-blend-mode: difference;
}

/* Drag state specifically for Swiper carousels */
.cursor.drag-mode::after {
    content: 'DRAG';
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: bold;
    color: var(--text);
}

/* ==========================================================================
           Navigation
           ========================================================================== */
nav {
    /* Safari support for glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ==========================================================================
           1. Kinetic Typography Hero
           ========================================================================== */

/* Rotating Scroll Prompt Badge */
.scroll-badge {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text);
}

.scroll-badge svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin 10s linear infinite;
}

.scroll-badge text {
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    fill: currentColor;
}

.scroll-badge i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--accent);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
           2. Immersive E-Commerce Lookbook
           ========================================================================== */

/* ==========================================================================
           3. Infinite Marquee Divider
           ========================================================================== */

/* ==========================================================================
           4. Expanding Flex Architecture
           Uses flexbox transitions instead of width for hardware-accelerated animations.
           ========================================================================== */

/* Expanded state on hover or when active */
.exp-card:hover,
.exp-card.active {
    flex: 3;
    border-color: var(--text);
}

.exp-desc {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
    /* Hide when compressed to save rendering memory */
}

.exp-card:hover .exp-desc,
.exp-card.active .exp-desc {
    opacity: 1;
    transform: translateY(0);
    display: block;
    transition-delay: 0.2s;
}

.exp-icon {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), color 0.6s;
}

.exp-card:hover .exp-icon,
.exp-card.active .exp-icon {
    transform: scale(1.5) translate(-10px, -10px);
    color: var(--accent);
}

/* ==========================================================================
           5. Sticky Stacked Shop By Need
           Uses position: sticky to let cards naturally stack over each other
           ========================================================================== */
/* Soften shadow for light mode */
[data-theme="light"] .s-card-shadow {
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.kinetic-hero {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-solid) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ==========================================================================
           8. Verified Dashboard Reviews (CoverFlow Cards)
           ========================================================================== */
.reviews-upgraded {
    padding: var(--sp-12) 5%;
    border-top: 1px solid var(--border-solid);
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    background: var(--surface-solid);
}

.reviews-left {
    flex: 1;
    padding-right: var(--sp-6);
}

.reviews-left h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: var(--sp-4);
}

.reviews-left p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: var(--sp-6);
}

.reviews-right {
    flex: 1;
    max-width: 500px;
    perspective: 1000px;
}

.swiper-reviews-cards {
    width: 100%;
    height: 400px;
}

.review-super-card {
    background: var(--bg);
    border: 1px solid var(--border-solid);
    padding: var(--sp-6);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: var(--sp-2);
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
}

.review-author {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: var(--sp-4);
    color: var(--text-muted);
}

/* ==========================================================================
           9. Smart Fit Portal CTA
           ========================================================================== */
/* The scanner effect using an animated pseudo-element */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 20px 5px var(--accent);
    opacity: 0.5;
    animation: scan 3s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: calc(100% - 4px);
    }
}

/* ==========================================================================
           10. Mega Footer Architecture
           ========================================================================== */
.mega-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-solid);
    padding: var(--sp-2) 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.mega-form input:focus {
    border-color: var(--accent);
}

/* Only show red border if the user has tried submitting or blurred (handled via JS .touched class) */
.mega-form input.touched:invalid {
    border-color: var(--error);
}

/* Show a subtle green success state */
.mega-form input.touched:valid {
    border-color: var(--success);
}

.error-msg {
    font-size: 0.85rem;
    color: var(--error);
    margin-top: 4px;
    display: none;
}

/* Displays the error message only when input is invalid AND has been touched */
.mega-form input.touched:invalid+.error-msg {
    display: block;
}

/* ==========================================================================
           Responsive Breakpoints
           ========================================================================== */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }
}

/* Large Mobile & Small Tablet */
@media (max-width: 768px) {
    .exp-card h3 {
        white-space: normal;
    }

    .ed-img-container {
        width: 80vw;
        border-radius: 100px;
    }

    .ed-text-marquee h2 {
        font-size: 25vw;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Very Small Screens — 360px & below */
@media (max-width: 400px) {
    /* Prevent anatomy cards from sliding off-screen */
    .anatomy-card:hover,
    .anatomy-card.active {
        transform: translateX(0);
    }

    /* Reviews section: stack vertically */
    .reviews-upgraded {
        flex-direction: column;
        gap: var(--sp-4);
    }

    .reviews-left {
        padding-right: 0;
    }

    .reviews-left h2 {
        font-size: 2.5rem;
    }

    /* Prevent nav actions overflow */
    .nav-actions {
        gap: var(--sp-1);
    }

    /* Horizontal scroll panels: adjust image height */
    .horiz-panel-img img {
        height: 220px;
    }

    /* Accordion content stacks fully on tiny screens */
    .acc-content {
        flex-direction: column !important;
    }

    /* Ensure overview images in accordion don't overflow */
    .acc-img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ========= HOME 2 EXTRA STYLES ========= */
/* ==========================================================================
           Design System: Editorial Flagship
           ========================================================================== */
:root {
    /* Onyx, Bone & Vermilion Palette */
    --bg: #0d0d0c;
    --surface: rgba(26, 26, 24, 0.6);
    --surface-solid: #1a1a18;
    --text: #f4f0e6;
    --text-muted: #96948c;
    --accent: #ff542e;

    --border: rgba(244, 240, 230, 0.1);
    --border-solid: #2c2b28;
    --error: #ef4444;
    --success: #10b981;

    --skel-bg: #2c2b28;
    --skel-shine: #3d3c38;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-6: 48px;
    --sp-8: 64px;
    --sp-12: 120px;
}

[data-theme="light"] {
    --bg: #f4f0e6;
    --surface: rgba(255, 255, 255, 0.6);
    --surface-solid: #ffffff;
    --text: #0d0d0c;
    --text-muted: #50504b;
    --border: rgba(13, 13, 12, 0.1);
    --border-solid: #e0ddd3;
    --skel-bg: #e0ddd3;
    --skel-shine: #eeebe1;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Reusable Square Image Wrapper (Strict 1:1 rule) */
.sq-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--surface-solid);
    border: 1px solid var(--border-solid);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sq-img i {
    font-size: 5rem;
    color: var(--text-muted);
}

/* ==========================================================================
           Start of the section Custom Cursor
           ========================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor.active {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 1.5px solid var(--text);
    mix-blend-mode: difference;
}

.cursor.drag-mode::after {
    content: 'DRAG';
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: bold;
    color: var(--text);
}

.cursor.view-mode::after {
    content: 'VIEW';
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: bold;
    color: var(--text);
}

/* End of the section Custom Cursor */

/* ==========================================================================
           Start of the section Navigation
           ========================================================================== */
.nav-floating {
    position: fixed;
    top: 24px;
    left: 5%;
    right: 5%;
    z-index: 100;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    gap: var(--sp-2);
    align-items: center;
}

.btn-icon {
    background: transparent;
    color: var(--text);
    border: none;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.cart-btn {
    background: var(--text);
    color: var(--bg);
    padding: 0 24px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: transform 0.3s;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.btn-add {
    width: 100%;
    min-height: 50px;
    border-radius: 100px;
    border: none;
    background: var(--text);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.btn-add:hover {
    transform: scale(1.02);
}

[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

/* End of the section Navigation */

/* ==========================================================================
           Start of the section Engineered Anatomy
           ========================================================================== */
.anatomy-section {
    padding: var(--sp-12) 5%;
    background: var(--surface-solid);
    border-bottom: 1px solid var(--border-solid);
    overflow: hidden;
}

.anatomy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--sp-8);
}

.anatomy-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-8);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.anatomy-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg);
    border: 1px solid var(--border-solid);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anatomy-visual i {
    font-size: 15rem;
    color: var(--text-muted);
    transform-origin: center;
    will-change: transform;
}

.anatomy-target {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.anatomy-target::before,
.anatomy-target::after {
    content: '';
    position: absolute;
    background: var(--accent);
}

.anatomy-target::before {
    top: 50%;
    left: -15px;
    right: -15px;
    height: 1px;
    transform: translateY(-50%);
}

.anatomy-target::after {
    left: 50%;
    top: -15px;
    bottom: -15px;
    width: 1px;
    transform: translateX(-50%);
}

.anatomy-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.anatomy-card {
    padding: var(--sp-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anatomy-card:hover,
.anatomy-card.active {
    background: var(--bg);
    border-color: var(--accent);
    transform: translateX(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.anatomy-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anatomy-card-title i {
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: rotate(-45deg) scale(0.8);
}

.anatomy-card:hover .anatomy-card-title i,
.anatomy-card.active .anatomy-card-title i {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.anatomy-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 350px;
}

/* End of the section Engineered Anatomy */

/* ==========================================================================
           Start of the section Horizontal Scroll Gallery
           ========================================================================== */
.horiz-wrapper {
    height: 100vh;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--border-solid);
}

.horiz-container {
    display: flex;
    height: 100vh;
    width: 400vw;
    align-items: center;
}

.horiz-panel {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    gap: var(--sp-8);
}

.horiz-panel-text {
    flex: 1;
}

.horiz-panel-text h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: var(--sp-3);
}

.horiz-panel-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 400px;
}

.horiz-panel-img {
    flex: 1;
    max-width: 600px;
}

.horiz-panel-img .sq-img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* End of the section Horizontal Scroll Gallery */

/* ==========================================================================
           Start of the section Interactive Accordion Categories
           ========================================================================== */
.accordion-categories {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-solid);
}

.acc-row {
    flex: 1;
    border-top: 1px solid var(--border-solid);
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.acc-row:hover,
.acc-row.active {
    flex: 2.5;
    background: var(--surface-solid);
}

.acc-title {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    width: 40%;
    min-width: 300px;
}

.acc-title h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.5rem);
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.4s;
    margin: 0;
    line-height: 1;
}

.acc-row:hover .acc-title h2,
.acc-row.active .acc-title h2 {
    color: var(--text);
}

.acc-title span {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 500;
}

.acc-content {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 60%;
}

.acc-row:hover .acc-content,
.acc-row.active .acc-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.acc-img {
    width: 250px;
    aspect-ratio: 1 / 1;
    background: var(--bg);
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.acc-img i {
    font-size: 5rem;
    color: var(--text-muted);
}

.acc-meta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 300px;
    margin-bottom: var(--sp-4);
    line-height: 1.6;
}

/* End of the section Interactive Accordion Categories */

/* ==========================================================================
           Start of the section Impact Metrics
           ========================================================================== */
.impact-section {
    padding: var(--sp-12) 5%;
    background: var(--surface-solid);
    border-bottom: 1px solid var(--border-solid);
}

.impact-header {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.impact-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    padding: var(--sp-6) var(--sp-4);
    border: 1px solid var(--border-solid);
    border-radius: 32px;
    background: var(--bg);
    text-align: center;
    transition: border-color 0.4s, transform 0.4s;
}

.impact-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

/* Hollow stroke typography for the numbers */
.metric-num {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--border-solid);
    transition: -webkit-text-stroke 0.4s, color 0.4s;
    display: inline-block;
}

.impact-card:hover .metric-num {
    color: var(--accent);
    -webkit-text-stroke: 2px var(--accent);
}

.impact-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: var(--sp-3) 0 var(--sp-2);
    text-transform: uppercase;
}

.impact-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* End of the section Impact Metrics */

/* ==========================================================================
           Start of the section Mega Footer
           ========================================================================== */
.main-content-wrapper {
    position: relative;
    z-index: 2;
    background: var(--bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.footer-parallax-wrapper {
    position: relative;
    z-index: 1;
    background: var(--bg);
}

.mega-footer {
    padding: var(--sp-12) 5% 0;
    border-top: 1px solid var(--border-solid);
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
}

.footer-col h4 {
    font-family: var(--font-display);
    margin-bottom: var(--sp-3);
    color: var(--accent);
    text-transform: uppercase;
    font-size: 1.2rem;
}

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

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

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text);
}

.mega-form {
    position: relative;
    margin-top: var(--sp-2);
}

.mega-form input {
    width: 100%;
    min-height: 56px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-solid);
    padding: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.mega-form input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.mega-form .error-msg {
    color: var(--error);
    font-size: 0.8rem;
    position: absolute;
    bottom: -20px;
    left: 0;
    display: none;
}

.mega-form input:invalid.touched {
    border-bottom-color: var(--error);
}

.mega-form input:invalid.touched~.error-msg {
    display: block;
}

.footer-massive-text {
    font-family: var(--font-display);
    font-size: 20vw;
    line-height: 0.75;
    text-align: center;
    color: var(--surface);
    margin-top: auto;
    overflow: hidden;
    letter-spacing: -5px;
    user-select: none;
    transition: letter-spacing 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s;
}

.footer-massive-text:hover {
    letter-spacing: 0px;
    color: var(--text);
}

/* End of the section Mega Footer */

/* ==========================================================================
           Responsive Breakpoints for Home 2
           ========================================================================== */
@media (max-width: 1024px) {
    .anatomy-grid {
        grid-template-columns: 1fr;
    }

    .anatomy-visual {
        width: 70%;
        margin: 0 auto;
    }

    .horiz-panel {
        flex-direction: column;
        text-align: center;
    }

    .horiz-panel-img {
        width: 100%;
        margin-top: var(--sp-4);
    }

    .acc-title {
        width: auto;
    }

    .acc-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }
}

@media (max-width: 768px) {
    .hero-center-content h1 {
        font-size: 4rem;
    }

    .anatomy-visual {
        width: 100%;
    }

    .accordion-categories {
        height: auto;
        min-height: 0;
    }

    .acc-row {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--sp-4) 5%;
    }

    .acc-content {
        transform: translateX(0);
        transform: translateY(20px);
        width: 100%;
        margin-top: var(--sp-4);
    }

    .acc-row:hover .acc-content,
    .acc-row.active .acc-content {
        transform: translateY(0);
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
.mega-form input::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

/* Force dark mode variables within permanently dark overlays regardless of global theme */
html[data-theme="light"] .force-dark-theme {
    --bg: #0d0d0c;
    --surface: rgba(26, 26, 24, 0.6);
    --surface-solid: #1a1a18;
    --text: #f4f0e6;
    --text-muted: #96948c;
    --border: rgba(244, 240, 230, 0.1);
    --border-solid: #2c2b28;
    --skel-bg: #2c2b28;
    --skel-shine: #3d3c38;
}


/* ==========================================================================
   DARK-MODE.CSS
   ========================================================================== */



/* ==========================================================================
   RTL.CSS
   ========================================================================== */



/* ==========================================================================
   404.CSS
   ========================================================================== */

/* ==========================================================================
   404 Page Styles
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Typography Stroke Effect for 404 */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--border-solid);
}

/* ==========================================================================
   ABOUT.CSS
   ========================================================================== */

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Typography Stroke Effect */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--text);
}

/* Team Roster Hover States */
.roster-row {
    border-bottom: 1px solid var(--border-solid);
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: border-color 0.3s;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roster-row:hover,
.roster-row.active {
    border-color: var(--text);
}

.roster-row h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.75rem);
    color: var(--text-muted);
    transition: color 0.3s;
}

.roster-row:hover h3,
.roster-row.active h3 {
    color: var(--text);
}

.roster-row span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: transparent;
    transition: color 0.3s;
}

.roster-row:hover span,
.roster-row.active span {
    color: var(--accent);
}

/* Infinite Marquee */
.marquee-inner {
    animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   BLOG.CSS
   ========================================================================== */

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

/* Premium Opacity Pulse Skeleton */
.skeleton {
    background-color: var(--skel-bg);
    animation: premiumPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes premiumPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Hide scrollbar for category filter */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================================================
   CART.CSS
   ========================================================================== */

/* ==========================================================================
   Cart Page Styles
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Interactive Quick Shop Glass Panel (For Cross-Sells) */
.bs-quick-shop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(101%);
    transition: transform 400ms ease-out;
    background: rgba(26, 26, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bs-card:hover .bs-quick-shop {
    transform: translateY(0);
}

/* Number Input Hiding */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   CATEGORIES.CSS
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Category Card Overlay */
.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 12, 0.85) 100%);
    border-radius: 32px;
    transition: opacity 0.4s ease;
}

[data-theme="light"] .cat-card-overlay {
    background: linear-gradient(180deg, transparent 40%, rgba(244, 240, 230, 0.9) 100%);
}

/* ==========================================================================
   CHECKOUT.CSS
   ========================================================================== */

/* ==========================================================================
   Checkout Page Styles
   ========================================================================== */

/* Premium Form Inputs */
.checkout-input {
    width: 100%;
    min-height: 56px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--border-solid);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    transition: border-color 0.2s;
    outline: none;
}

.checkout-input::placeholder {
    color: var(--text-muted);
}

.checkout-input:focus {
    border-color: var(--accent);
}

/* Form Validation */
.checkout-input:invalid.touched {
    border-color: var(--error);
}

.checkout-input:invalid.touched~.error-msg {
    display: block;
}

/* Custom Radio Buttons for Payment/Delivery */
.custom-radio {
    display: none;
}

.custom-radio-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border: 1px solid var(--border-solid);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--surface-solid);
}

.custom-radio-label:hover {
    border-color: var(--text);
}

.custom-radio-label .indicator {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.custom-radio:checked+.custom-radio-label {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 84, 46, 0.1);
}

.custom-radio:checked+.custom-radio-label .indicator {
    border-color: var(--accent);
}

.custom-radio:checked+.custom-radio-label .indicator::after {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    background: var(--accent);
    border-radius: 50%;
}

/* ==========================================================================
   COMING-SOON.CSS
   ========================================================================== */

/* ==========================================================================
   Coming Soon Page Styles
   ========================================================================== */

/* Premium Form Inputs */
.drop-input {
    width: 100%;
    min-height: 64px;
    background-color: var(--surface-solid);
    border: 1px solid var(--border-solid);
    border-radius: 9999px;
    padding: 0 2rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    transition: border-color 0.2s;
    outline: none;
    text-align: center;
}

@media (min-width: 640px) {
    .drop-input {
        text-align: left;
    }
}

.drop-input::placeholder {
    color: var(--text-muted);
}

.drop-input:focus {
    border-color: var(--accent);
}

/* Form Validation */
.drop-input:invalid.touched {
    border-color: var(--error);
}

.drop-input:invalid.touched~.error-msg {
    display: block;
}

/* Typography Stroke Effect */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--border-solid);
}

/* ==========================================================================
   CONTACT.CSS
   ========================================================================== */

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Premium Form Inputs */
.contact-input {
    width: 100%;
    min-height: 60px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-solid);
    padding: 1rem 0.5rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

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

.contact-input:focus {
    border-color: var(--accent);
}

/* Form Validation */
.contact-input:invalid.touched {
    border-color: var(--error);
}

.contact-input:invalid.touched~.error-msg {
    display: block;
}

/* Accordion Animations for FAQ */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.open {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
}

/* ==========================================================================
   DASHBOARD.CSS
   ========================================================================== */

/* ==========================================================================
   Dashboard Page Styles
   ========================================================================== */

/* Premium Opacity Pulse Skeleton */
.skeleton {
    background-color: var(--skel-bg);
    animation: premiumPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes premiumPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Dashboard Tab Navigation */
.dash-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    transition: all 0.2s;
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 1rem;
}

.dash-tab:hover {
    color: var(--text);
}

.dash-tab.active {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border-solid);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Dashboard Content Panels */
.dash-content {
    display: none;
}

.dash-content.active {
    display: block;
}

/* Fit Profile Selectable Cards */
.fit-card {
    border: 1px solid var(--border-solid);
    background: var(--bg);
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.fit-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 84, 46, 0.1);
}

.fit-card .radio-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.fit-card.selected .radio-dot {
    border-color: var(--accent);
}

.fit-card.selected .radio-dot::after {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    background: var(--accent);
    border-radius: 50%;
}

/* ==========================================================================
   DEALS.CSS
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}

/* Strikethrough Price */
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Flash Timer Pulse */
.timer-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 84, 46, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 84, 46, 0);
    }
}

/* Quick Shop Overlay */
.bs-quick-shop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(101%);
    transition: transform 400ms ease-out;
    background: rgba(26, 26, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bs-card:hover .bs-quick-shop {
    transform: translateY(0);
}

/* Filter Tab Active */
.filter-tab.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* ==========================================================================
   LOGIN.CSS
   ========================================================================== */

/* Auth Form Input Styling */
.auth-input {
    width: 100%;
    min-height: 56px;
    background: var(--surface-solid);
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    padding: 0 1.25rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-input:focus {
    border-color: var(--accent);
}

/* Form Validation */
.auth-input:invalid.touched {
    border-color: var(--error);
}

.auth-input:invalid.touched~.error-msg {
    display: block;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-solid);
}

/* Social Button */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    background: var(--surface-solid);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover {
    border-color: var(--text);
    background: var(--surface);
}

/* ==========================================================================
   ORDER-SUCCESS.CSS
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Timeline Step Styling */
.step-active .step-dot {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.step-active .step-line {
    background-color: var(--accent);
}

.step-pending .step-dot {
    background-color: var(--surface);
    border-color: var(--border-solid);
    color: var(--text-muted);
}

.step-pending .step-line {
    background-color: var(--border-solid);
}

/* ==========================================================================
   PRODUCTS.CSS
   ========================================================================== */

/* ==========================================================================
   Products Page Styles
   ========================================================================== */

/* Cursor modes for drag and view states */
.cursor.drag-mode::after {
    content: 'DRAG';
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.cursor.view-mode::after {
    content: 'VIEW';
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

/* Premium Opacity Pulse Skeleton */
.skeleton {
    background-color: var(--skel-bg);
    animation: premiumPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes premiumPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Interactive Quick Shop Glass Panel */
.bs-quick-shop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(101%);
    transition: transform 400ms ease-out;
    background: rgba(26, 26, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Trigger for the Quick Shop panel */
.bs-card:hover .bs-quick-shop {
    transform: translateY(0);
}

/* Expanding Filter Drawer Transition */
.filter-drawer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-drawer.open {
    grid-template-rows: 1fr;
}

.filter-drawer-inner {
    overflow: hidden;
}

/* Custom Checkbox styles for filters */
.custom-checkbox {
    display: none;
}

.custom-checkbox+label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-checkbox+label:hover {
    color: var(--text);
}

.custom-checkbox+label::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--border-solid);
    flex-shrink: 0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 10px;
}

.custom-checkbox:checked+label {
    color: var(--accent);
}

.custom-checkbox:checked+label::before {
    content: '✓';
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 700;
}

/* ==========================================================================
   SIGNUP.CSS
   ========================================================================== */

/* Auth Form Input Styling */
.auth-input {
    width: 100%;
    min-height: 56px;
    background: var(--surface-solid);
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    padding: 0 1.25rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-input:focus {
    border-color: var(--accent);
}

/* Form Validation */
.auth-input:invalid.touched {
    border-color: var(--error);
}

.auth-input:invalid.touched~.error-msg {
    display: block;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-solid);
}

/* Social Button */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    background: var(--surface-solid);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover {
    border-color: var(--text);
    background: var(--surface);
}

/* Password Strength Meter */
.strength-bar {
    height: 4px;
    border-radius: 9999px;
    background: var(--border-solid);
    overflow: hidden;
    transition: all 0.3s;
}

.strength-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s, background 0.3s;
    width: 0%;
}

.strength-fill.weak {
    width: 33%;
    background: var(--error);
}

.strength-fill.medium {
    width: 66%;
    background: #f59e0b;
}

.strength-fill.strong {
    width: 100%;
    background: var(--success);
}

/* ==========================================================================
   SINGLEPRODUCT.CSS
   ========================================================================== */

/* Form Validation */
input:invalid.touched {
    border-bottom-color: var(--error);
}

input:invalid.touched~.error-msg {
    display: block;
}

/* Accordion Animations */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.open {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
}

/* Hide scrollbar for mobile gallery */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Quick Shop Overlay for Related Products */
.bs-quick-shop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(101%);
    transition: transform 400ms ease-out;
    background: rgba(26, 26, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bs-card:hover .bs-quick-shop {
    transform: translateY(0);
}

/* Mobile Sticky CTA Animation */
.sticky-cta {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    transform: translateY(0);
}