@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('motion.css');

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

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 10px;
    border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(155, 155, 155, 0.7);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(90deg, rgba(40, 40, 40, 0.95), rgba(50, 50, 50, 0.95));
    color: #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    font-weight: 400;
    font-size: 0.85rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #e0e0e0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.promo-banner.is-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideIn 20s linear infinite;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.promo-text {
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.promo-text strong {
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 500;
    margin: 0 1px;
    color: #ffffff;
}

.promo-timer {
    font-size: 0.75rem;
    opacity: 0.7;
    font-style: italic;
    margin-left: 20px;
}

/* Adjust navbar position when banner is visible */
.navbar {
    margin-top: 0;
    transition: margin-top 0.3s ease;
}

body.promo-closed .navbar {
    margin-top: 0;
}

/* Sold Out Styles */
.option-item.sold-out {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.option-item.sold-out .option-image {
    position: relative;
    overflow: hidden;
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.option-item.sold-out:hover {
    transform: none;
    box-shadow: none;
}

.option-item.sold-out .option-info {
    opacity: 0.7;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --muted-text: #666666;
    --muted-text-strong: #999999;
    --section-bg: #f5f5f5;
    --section-bg-alt: #fafafa;
    --nav-bg: #ffffff;
    --nav-border: #000000;
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
    --border-strong: #000000;
    --input-bg: #ffffff;
    --input-border: #cccccc;
    --input-text: #000000;
    --focus-ring: rgba(0, 102, 255, 0.25);
    --modal-bg: #ffffff;
    --button-bg: #000000;
    --button-text: #ffffff;
    --button-hover: #0066ff;
    --footer-bg: #ffffff;
    --footer-text: #000000;
    --footer-link: #333333;
    --footer-border: #e0e0e0;
}

body.dark-theme {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --muted-text: #b5b5b5;
    --muted-text-strong: #9a9a9a;
    --section-bg: #1a1a1a;
    --section-bg-alt: #222222;
    --nav-bg: #1e1e1e;
    --nav-border: #333333;
    --card-bg: #1e1e1e;
    --card-border: #333333;
    --border-strong: #e0e0e0;
    --input-bg: #2a2a2a;
    --input-border: #444444;
    --input-text: #e0e0e0;
    --focus-ring: rgba(0, 102, 255, 0.35);
    --modal-bg: #1e1e1e;
    --button-bg: #e0e0e0;
    --button-text: #121212;
    --button-hover: #0066ff;
    --footer-bg: #1a1a1a;
    --footer-text: #e0e0e0;
    --footer-link: #b5b5b5;
    --footer-border: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-y: scroll;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Smooth reveal animation for sections */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.animate {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced card hover effects */
.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card-meta {
    position: relative;
    z-index: 2;
}

/* Product card enhanced hover */
.product-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card .sale-badge {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* FAQ enhanced styling */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--section-bg-alt);
}

.faq-item summary {
    transition: color 0.3s ease;
}

.faq-item:hover summary {
    color: #0066ff;
}

/* CTA Button magnetic enhancement */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.cta-button:hover::before {
    left: 100%;
}

/* Navbar link hover effects */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Cart badge animation */
.cart-count {
    animation: cart-bounce 0.5s ease;
}

@keyframes cart-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Footer link hover */
.footer a {
    position: relative;
    transition: color 0.3s ease;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--footer-link);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading skeleton for images */
.img-skeleton {
    background: linear-gradient(90deg, var(--section-bg) 25%, var(--section-bg-alt) 50%, var(--section-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
}

/* Theme Switcher */
.theme-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 0.25rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.theme-toggle:hover {
    transform: translateY(-1px);
}

.theme-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    display: none;
    flex-direction: column;
    min-width: 0;
    box-shadow: none;
    z-index: 1000;
}

.theme-dropdown.open {
    display: flex;
}

.theme-option {
    padding: 0.5rem;
    cursor: pointer;
    background: transparent;
    color: var(--text-color);
    border: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
}

.theme-icon svg,
.theme-option-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 0.6px rgba(0, 0, 0, 0.7));
}

.theme-option:hover {
    background: rgba(0, 0, 0, 0.08);
}

body.dark-theme .theme-option:hover {
    background: rgba(255, 255, 255, 0.12);
}

.theme-option.active {
    background: #0066ff;
    color: #ffffff;
}

.theme-toggle::after,
.theme-option::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.theme-toggle:hover::after,
.theme-option:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: var(--nav-bg);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--nav-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 1rem;
    min-width: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: 0;
    padding: 0.25em;
    margin: -0.25em;
    border-radius: 4px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Logo stays full size: fixed height, small hitbox so it doesn't get squeezed */
.logo-text-image {
    height: 60px;
    width: auto;
    min-height: 60px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hamburger button - hidden on desktop */
.nav-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.nav-menu-btn:hover {
    background: var(--section-bg);
}
.nav-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile search icon - hidden on desktop */
.nav-mobile-search {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-color);
    border-radius: 8px;
    transition: background 0.2s ease;
}
.nav-mobile-search:hover {
    background: var(--section-bg);
}
.nav-mobile-search svg {
    width: 22px;
    height: 22px;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--nav-bg);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s ease;
}
.mobile-menu-close:hover {
    background: var(--section-bg);
}
.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-links li {
    border-bottom: 1px solid var(--nav-border);
}
.mobile-menu-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color);
    transition: opacity 0.2s ease;
}
.mobile-menu-links a:hover {
    opacity: 0.7;
}
.mobile-menu-search {
    margin-top: 2rem;
}
.mobile-menu-search .site-search {
    width: 100%;
    max-width: 100%;
    margin: 0;
    --search-width: 100%;
    height: 48px;
}
.mobile-menu-search .site-search-input {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .logo-text-image {
        height: 56px;
        min-height: 56px;
        max-height: 56px;
    }
}

.cart-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-icon {
    position: relative;
    /* other styles remain */
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nav-bg);
}

.cart-icon:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

body.dark-theme .cart-icon svg {
    fill: currentColor;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
}

.hero-banner {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-banner {
        height: 360px;
    }

    .hero-overlay h1 {
        font-size: 3.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 600px) {
    .hero-banner {
        height: 300px;
    }

    .hero-overlay h1 {
        font-size: 2.6rem;
    }

    .hero-overlay p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transform: scale(1.05);
    animation: bannerMove 30s ease-in-out infinite;
}

@keyframes bannerMove {
    0% {
        transform: scale(1.05) translateX(0) translateY(0);
    }

    50% {
        transform: scale(1.06) translateX(-3px) translateY(-3px);
    }

    100% {
        transform: scale(1.05) translateX(0) translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.hero-overlay h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out, heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s backwards, heroPulse 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: #0066ff;
    color: #ffffff;
    padding: 1.1rem 2.75rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    border-radius: 2px;
    animation: fadeInUp 1.2s ease-out 0.4s backwards, heroPulse 3s ease-in-out infinite, buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 102, 255, 0.6);
    }
}

.cta-button:hover {
    background: #0052cc;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.6);
}

.cta-button.alt {
    background: var(--button-bg);
    color: var(--button-text);
    box-shadow: none;
}

.cta-button.alt:hover {
    background: var(--button-hover);
    color: #ffffff;
}

.ghost-link {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 0.2rem;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.ghost-link:hover {
    opacity: 0.7;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Motion Band */
.motion-band {
    padding: 1.25rem 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    overflow: hidden;
}

body.dark-theme .motion-band {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.motion-track {
    display: flex;
    align-items: center;
    animation: motionDrift 30s linear infinite;
    width: max-content;
    will-change: transform;
    gap: 0;
    --motion-shift: 0px;
}

.motion-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 0 0 auto;
    padding-right: 0;
}

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

    100% {
        transform: translateX(calc(-1 * var(--motion-shift)));
    }
}

.motion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    flex: 0 0 auto;
}

.motion-item img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--card-border);
    background: var(--section-bg);
}

.motion-item span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

/* Showcase */
.showcase {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .showcase {
        grid-template-columns: 1fr;
        margin: 3rem auto;
    }

    .showcase-media {
        min-height: 0;
        display: grid;
        gap: 1rem;
    }

    .showcase-card {
        position: relative;
        width: 100%;
        height: 200px;
        inset: auto;
        animation: none;
    }

    .showcase-card.large {
        height: 240px;
    }

    .showcase-card.small {
        display: block;
        height: 180px;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

.showcase-media {
    position: relative;
    min-height: 420px;
}

.showcase-card {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    animation: floatSoft 6s ease-in-out infinite;
}

.showcase-card.large {
    width: 70%;
    height: 100%;
    left: 0;
    top: 0;
}

.showcase-card.small {
    width: 38%;
    height: 42%;
    right: 0;
}

.showcase-card.small.top {
    top: 0;
    animation-delay: 0.6s;
}

.showcase-card.small.bottom {
    bottom: 0;
    animation-delay: 1.2s;
}

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

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.showcase-copy h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.showcase-copy p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.showcase-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Scroll Gallery */
.scroll-gallery {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

@media (max-width: 600px) {

    .scroll-gallery,
    .showcase,
    .featured {
        padding: 0 1.25rem;
    }

    .scroll-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.scroll-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.scroll-head h2 {
    font-size: 2.2rem;
    font-weight: 900;
}

.scroll-hint {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--muted-text);
}

.scroll-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.scroll-cards::-webkit-scrollbar {
    height: 6px;
}

.scroll-cards::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 999px;
}

.scroll-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-6px);
}

.scroll-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.scroll-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 700;
}

.scroll-meta span {
    color: var(--text-color);
}

.scroll-meta strong {
    color: var(--text-color);
}

@media (prefers-reduced-motion: reduce) {

    .motion-track,
    .showcase-card,
    .hero-banner-image,
    .cta-button,
    .hero-overlay h1,
    .hero-overlay p {
        animation: none;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Products Banner */
.products-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .products-banner {
        height: 280px;
    }

    .products-banner-overlay h1 {
        font-size: 2.4rem;
    }
}

.products-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    animation: bannerMove 30s ease-in-out infinite;
}

.products-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.products-banner-overlay h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Featured Section */
.featured {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.featured .products-grid {
    max-width: 900px;
}

.featured .product-card {
    max-width: 520px;
    margin: 0 auto;
}

/* Featured card hover / elastic: see motion.css (.motion-card) */

.featured .product-image {
    height: 320px;
}

.featured h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.featured p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.products-page {
    margin-top: 2rem;
}

.products-header {
    margin-bottom: 2rem;
}

.products-header h2 {
    margin-bottom: 0.5rem;
}

.products-header p {
    margin-bottom: 1.5rem;
}

.category-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.65rem 1.25rem;
    border: 2px solid var(--border-strong);
    background: var(--card-bg);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 4px;
}

.category-btn:hover {
    background: var(--section-bg);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.products-page {
    margin-top: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #b3261e;
    color: #ffffff;
    padding: 0.5rem 0.85rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    z-index: 30;
    letter-spacing: 0.5px;
}

.product-image {
    width: 100%;
    height: 400px;
    min-height: 400px;
    flex-shrink: 0;
    background: var(--section-bg);
    overflow: hidden;
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--section-bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text-strong);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
}

.product-card .description {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.option-chip {
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-color);
    background: var(--card-bg);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.product-price-section {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--muted-text-strong);
    text-decoration: line-through;
    font-weight: 500;
}

.sale-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #b3261e;
}

.price-plain {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.add-to-cart {
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--button-hover);
}

.product-card-content .add-to-cart {
    margin-top: auto;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s ease, padding 0.25s ease;
    color: var(--text-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--text-color);
}

.faq-item p {
    padding: 0 1.5rem;
    color: var(--muted-text);
    line-height: 1.6;
    font-size: 0.95rem;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
    overflow: hidden;
}

.faq-item[open] summary {
    padding-bottom: 1rem;
    background: var(--section-bg-alt);
}

.faq-item[open] p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

/* Why Us / Features Section */
.why-us {
    background: var(--section-bg);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.why-us h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    background: var(--card-bg);
    padding: 2rem;
    border: 2px solid var(--border-strong);
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #0066ff;
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--button-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-text);
    font-size: 1.8rem;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: var(--muted-text);
}

/* Sign In Section */
.signin-section {
    padding: 4rem 0 5rem;
    background: var(--bg-color);
    border-top: 2px solid var(--border-strong);
    border-bottom: 2px solid var(--border-strong);
}

body.dark-theme .signin-section {
    background: var(--bg-color);
}

.signin-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.signin-hero h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.signin-hero p {
    color: var(--muted-text);
    font-size: 1.05rem;
    max-width: 420px;
    margin-bottom: 1.5rem;
}

.signin-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.signin-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.signin-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.signin-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--text-color);
}

.signin-card {
    background: var(--card-bg);
    border: 2px solid var(--border-strong);
    border-radius: 2px;
    padding: 2.25rem;
    box-shadow: none;
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 680px;
}

body.dark-theme .signin-card {
    box-shadow: none;
}

.signin-card-header h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.signin-card-header p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.signin-form {
    display: grid;
    gap: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input-border);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--input-bg);
    color: var(--input-text);
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px var(--focus-ring);
}

.signin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.signin-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.signin-checkbox input {
    accent-color: #0066ff;
}

.signin-link {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 600;
}

.signin-primary,
.signin-secondary {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid var(--border-strong);
    cursor: pointer;
    transition: all 0.3s ease;
}

.signin-primary {
    background: var(--button-bg);
    color: var(--button-text);
    box-shadow: none;
}

.signin-primary:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.signin-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-strong);
}

.signin-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted-text);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

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

.signin-divider span {
    padding: 0 0.5rem;
}

.signin-social {
    display: grid;
    gap: 0.75rem;
}

.signin-social button {
    padding: 0.85rem 1rem;
    border-radius: 2px;
    border: 2px solid var(--border-strong);
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signin-social button:hover {
    background: var(--button-bg);
    color: var(--button-text);
}

.signin-note {
    font-size: 0.85rem;
    color: var(--muted-text);
    text-align: center;
}

@media (max-width: 900px) {
    .signin-shell {
        grid-template-columns: 1fr;
    }

    .signin-card {
        padding: 1.8rem;
    }
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
    border-top: 2px solid var(--button-hover);
}

/* Page layout - footer at bottom */
html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

body > *:not(.footer):not(script):not(style) {
    flex-shrink: 0;
}

.footer {
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

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

.footer-section a {
    color: var(--footer-link);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--footer-border);
    font-size: 0.9rem;
    color: var(--footer-text);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {

    /* Hide theme toggle on mobile */
    .theme-switcher,
    .theme-dropdown {
        display: none !important;
    }

    /* Navigation - mobile: menu left | logo centered | search + cart right */
    .navbar {
        padding: 0.65rem 0;
    }

    .nav-container {
        position: relative;
        padding: 0 0.75rem;
        gap: 0.35rem;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        min-height: 52px;
    }

    .nav-menu-btn {
        display: flex;
        order: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        margin: 0;
        max-width: min(58vw, 220px);
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
    }

    .nav-container .logo-text-image {
        height: 72px;
        min-height: 72px;
        max-height: 72px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .logo-image {
        width: 28px;
        height: 28px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-search {
        display: flex;
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .nav-container .cart-icon {
        order: 3;
        width: 44px;
        height: 44px;
        border-width: 2px;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .nav-container .cart-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Hero & Banners */
    .hero-banner {
        height: 350px;
    }

    .hero-overlay h1,
    .products-banner-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .products-banner {
        height: 300px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .motion-track {
        animation-duration: 24s;
    }

    .showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-media {
        min-height: auto;
        display: grid;
        gap: 0.75rem;
    }

    .showcase-card {
        position: relative;
        width: 100%;
        inset: auto;
        animation: none;
    }

    .showcase-card.large {
        height: 220px;
    }

    .showcase-card.small {
        display: block;
        height: 160px;
        width: 100%;
    }

    .showcase-copy h2 {
        font-size: 1.8rem;
    }

    .scroll-head h2 {
        font-size: 1.8rem;
    }

    /* Category Filters */
    .category-filters {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Products */
    .featured {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .featured h2,
    .signin-hero h2,
    .why-us h2 {
        font-size: 1.75rem;
    }

    .products-header p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 300px;
        min-height: 300px;
    }

    .product-card-content {
        padding: 1.25rem;
    }

    /* Product Modal */
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 1rem;
        flex-direction: column;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-gallery {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .main-image {
        height: 250px;
    }

    .modal-details {
        width: 100%;
        padding: 1rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .options-list {
        gap: 0.5rem;
    }

    .option-item {
        padding: 0.5rem 0.75rem;
    }

    .option-image {
        width: 52px;
        height: 52px;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.open {
        right: 0;
    }

    /* FAQ */
    .faq-container {
        gap: 1rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

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

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Sign In */
    .signin-card {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }

    .nav-container .logo-text-image {
        height: 64px;
        min-height: 64px;
        max-height: 64px;
    }

    .nav-links {
        gap: 0.3rem 0.45rem;
    }

    .nav-links a {
        font-size: 0.65rem;
    }

    .cart-icon {
        width: 26px;
        height: 26px;
    }

    .cart-icon svg {
        width: 13px;
        height: 13px;
    }

    .nav-container .cart-icon {
        width: 44px;
        height: 44px;
    }

    .nav-container .cart-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Hero & Banner */
    .hero-banner {
        height: 250px;
    }

    .hero-overlay h1,
    .products-banner-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

    .products-banner {
        height: 200px;
    }

    .motion-track {
        gap: 1rem;
    }

    .motion-item {
        padding: 0.6rem 1rem;
    }

    .motion-item img {
        width: 38px;
        height: 38px;
    }

    .showcase-copy h2 {
        font-size: 1.6rem;
    }

    .scroll-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Products */
    .featured h2,
    .signin-hero h2,
    .why-us h2 {
        font-size: 1.5rem;
    }

    .products-header {
        margin-bottom: 1.5rem;
    }

    .category-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }

    .product-card-content h3 {
        font-size: 1rem;
    }

    .product-price,
    .sale-price {
        font-size: 1.1rem;
    }

    .original-price {
        font-size: 0.95rem;
    }

    .add-to-cart {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    /* Product Modal */
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .modal-details h2 {
        font-size: 1.25rem;
    }

    .modal-price {
        font-size: 1.4rem;
    }

    .quantity-selector {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-controls {
        width: 100%;
        justify-content: center;
    }

    .quantity-controls button,
    .quantity-controls input {
        padding: 0.75rem;
    }

    .add-to-cart-modal {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Cart */
    .cart-header {
        padding: 1rem;
    }

    .cart-header h3 {
        font-size: 1.25rem;
    }

    .cart-close {
        width: 35px;
        height: 35px;
    }

    .cart-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    /* TOS Modal */
    .tos-modal {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .tos-modal h2 {
        font-size: 1.25rem;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 0.9rem;
        padding: 0.85rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.product-modal.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--modal-bg);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

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

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--button-hover), #00a8e8);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--section-bg);
    border: 1px solid var(--card-border);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1001;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--button-hover);
    border-color: var(--button-hover);
    background: var(--section-bg-alt);
    transform: scale(1.05);
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    min-width: 0;
}

.main-image {
    width: 100%;
    height: 360px;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--section-bg);
    border: 1px solid var(--card-border);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

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

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thumbnail:hover {
    border-color: var(--button-hover);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--button-hover);
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.25);
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    overflow-y: auto;
}

.modal-details h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.25;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.modal-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
    padding: 0.75rem 1rem;
    transition: transform 0.25s ease;
    background: var(--section-bg);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    display: inline-block;
    letter-spacing: -0.02em;
}

.price-up {
    color: #0a7a33 !important;
    transform: translateY(-2px);
}

.price-down {
    color: #b3261e !important;
    transform: translateY(2px);
}

.modal-description {
    font-size: 0.85rem;
    color: var(--muted-text);
    line-height: 1.45;
    margin: 0 0 0.5rem 0;
    max-height: 2.9em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.crypto-modal-content {
    grid-template-columns: 1fr;
    max-width: 650px;
    padding: 2.5rem;
}

.crypto-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.crypto-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.crypto-total {
    display: inline-flex;
    align-items: baseline;
    gap: 0.85rem;
}

.crypto-total-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.crypto-total-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.crypto-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.crypto-coins {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.crypto-coin {
    --coin-accent: #f7931a;
    --coin-glow: rgba(247, 147, 26, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-coin:hover {
    border-color: var(--coin-accent);
    box-shadow: 0 12px 24px var(--coin-glow);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}

.crypto-coin.active {
    border-color: var(--coin-accent);
    box-shadow: 0 14px 28px var(--coin-glow), inset 0 0 0 1px var(--coin-accent);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    padding-right: 1.25rem;
}

.crypto-coin .coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.crypto-coin:hover .coin-icon,
.crypto-coin.active .coin-icon {
    border-color: var(--coin-accent);
    box-shadow: 0 0 20px var(--coin-glow);
}

.crypto-coin svg {
    width: 22px;
    height: 22px;
    fill: var(--coin-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.crypto-coin .coin-icon img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.crypto-coin .coin-label {
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-6px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-coin:hover .coin-label,
.crypto-coin.active .coin-label {
    max-width: 120px;
    opacity: 1;
    transform: translateX(0);
}

.crypto-coin[data-coin="btc"] {
    --coin-accent: #f7931a;
    --coin-glow: rgba(247, 147, 26, 0.35);
}

.crypto-coin[data-coin="eth"] {
    --coin-accent: #8a92b2;
    --coin-glow: rgba(138, 146, 178, 0.35);
}

.crypto-coin[data-coin="ltc"] {
    --coin-accent: #b8b8b8;
    --coin-glow: rgba(184, 184, 184, 0.35);
}

.crypto-payment-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.crypto-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.crypto-field-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.crypto-field-value {
    font-family: "Space Grotesk", "Inter", monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    word-break: break-all;
    line-height: 1.5;
}

.crypto-amount-value {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.crypto-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(56, 189, 248, 0.04));
    border: 1px solid rgba(56, 189, 248, 0.2);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader {
    --fill-color: #0b5cff;
    --shine-color: rgba(11, 92, 255, 0.35);
    color: var(--fill-color);
    transform: scale(0.65);
    width: 120px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 0 10px var(--shine-color));
}

.loader svg {
    width: 120px;
    height: 120px;
}

.loader #pegtopone {
    position: absolute;
    animation: flowe-one 1s linear infinite;
}

.loader #pegtoptwo {
    position: absolute;
    opacity: 0;
    transform: scale(0) translateY(-200px) translateX(-100px);
    animation: flowe-two 1s linear infinite;
    animation-delay: 0.3s;
}

.loader #pegtopthree {
    position: absolute;
    opacity: 0;
    transform: scale(0) translateY(-200px) translateX(100px);
    animation: flowe-three 1s linear infinite;
    animation-delay: 0.6s;
}

.loader svg g path:first-child {
    fill: var(--fill-color);
}

@keyframes flowe-one {
    0% {
        transform: scale(0.5) translateY(-200px);
        opacity: 0;
    }

    25% {
        transform: scale(0.75) translateY(-100px);
        opacity: 1;
    }

    50% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) translateY(50px);
        opacity: 1;
    }

    100% {
        transform: scale(0) translateY(100px);
        opacity: 0;
    }
}

@keyframes flowe-two {
    0% {
        transform: scale(0.5) rotateZ(-10deg) translateY(-200px) translateX(-100px);
        opacity: 0;
    }

    25% {
        transform: scale(1) rotateZ(-5deg) translateY(-100px) translateX(-50px);
        opacity: 1;
    }

    50% {
        transform: scale(1) rotateZ(0deg) translateY(0px) translateX(-25px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) rotateZ(5deg) translateY(50px) translateX(0px);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotateZ(10deg) translateY(100px) translateX(25px);
        opacity: 0;
    }
}

@keyframes flowe-three {
    0% {
        transform: scale(0.5) rotateZ(10deg) translateY(-200px) translateX(100px);
        opacity: 0;
    }

    25% {
        transform: scale(1) rotateZ(5deg) translateY(-100px) translateX(50px);
        opacity: 1;
    }

    50% {
        transform: scale(1) rotateZ(0deg) translateY(0px) translateX(25px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) rotateZ(-5deg) translateY(50px) translateX(0px);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotateZ(-10deg) translateY(100px) translateX(-25px);
        opacity: 0;
    }
}

body.dark-theme .loader {
    --fill-color: #ffffff;
    --shine-color: rgba(255, 255, 255, 0.25);
}

.global-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.global-loader.active {
    opacity: 1;
    visibility: visible;
}

body.dark-theme .global-loader {
    background: rgba(8, 10, 18, 0.88);
}


.crypto-progress-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.crypto-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crypto-progress-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.crypto-progress-percent {
    font-size: 1.5rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: -0.02em;
}

.crypto-progress-bar {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.crypto-progress-fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, #22d3ee, #38bdf8, #2563eb);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-progress-fill.loading {
    background: linear-gradient(90deg, #22d3ee, #38bdf8, #2563eb, #22d3ee);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

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

    100% {
        background-position: 0% 50%;
    }
}

.crypto-progress-details {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    text-align: center;
}

.crypto-status {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-paid-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
}

.crypto-status.success {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.crypto-status.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.crypto-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #ffffff;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.crypto-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.crypto-submit-btn:hover::before {
    transform: translateX(100%);
}

.crypto-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0052cc, #0041a3);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.crypto-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.crypto-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    box-shadow: none;
}

.crypto-submit-btn.loading {
    background: linear-gradient(90deg, #0066ff, #38bdf8, #0066ff);
    background-size: 200% 100%;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.crypto-status.loading {
    position: relative;
    color: var(--muted-text);
}

.crypto-status.loading::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #38bdf8;
    animation: crypto-spin 0.9s linear infinite;
    vertical-align: middle;
}

body:not(.dark-theme) .crypto-coin {
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

body:not(.dark-theme) .crypto-coin:hover {
    background: rgba(0, 0, 0, 0.04);
}

body:not(.dark-theme) .crypto-coin.active {
    background: radial-gradient(circle at top, rgba(0, 102, 255, 0.08), rgba(0, 0, 0, 0.02));
}

body:not(.dark-theme) .crypto-coin .coin-icon {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

body:not(.dark-theme) .crypto-coin svg,
body:not(.dark-theme) .crypto-coin .coin-icon img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 10px var(--coin-glow));
}

body:not(.dark-theme) .crypto-coin.active .coin-icon,
body:not(.dark-theme) .crypto-coin:hover .coin-icon {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.02));
    box-shadow: 0 0 16px var(--coin-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

body:not(.dark-theme) .crypto-payment-info {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
}

body:not(.dark-theme) .crypto-field-value {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111111;
}

body:not(.dark-theme) .crypto-progress-container {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(56, 189, 248, 0.03));
    border: 1px solid rgba(0, 102, 255, 0.18);
}

body:not(.dark-theme) .crypto-progress-bar {
    background: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

body:not(.dark-theme) .crypto-status {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .crypto-status.success {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(56, 189, 248, 0.06));
    border: 1px solid rgba(34, 211, 238, 0.25);
}

body:not(.dark-theme) .crypto-status.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.06));
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.add-to-cart-modal:disabled {
    opacity: 0.7;
    cursor: wait;
    box-shadow: none;
}

@keyframes crypto-sweep {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes crypto-spin {
    to {
        transform: rotate(360deg);
    }
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--section-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.quantity-selector label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quantity-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.quantity-controls button {
    width: 48px;
    height: 48px;
    border: 2px solid var(--card-border);
    background: var(--input-bg);
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-radius: 12px;
}

.quantity-controls button:hover {
    background: var(--section-bg-alt);
    border-color: var(--button-hover);
    color: var(--button-hover);
}

.quantity-controls input,
.quantity-input,
#quantity {
    width: 72px;
    padding: 0.75rem;
    text-align: center;
    border: 2px solid var(--card-border);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--input-text);
}

.add-to-cart-modal {
    background: var(--button-hover);
    color: #ffffff;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 12px;
    transition: all 0.25s ease;
    width: 100%;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.4);
}

.add-to-cart-modal:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.45);
    transform: translateY(-1px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .modal-gallery {
        padding: 1.25rem 1.25rem 0;
    }

    .main-image {
        height: 280px;
        border-radius: 12px;
    }

    .modal-details {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .modal-details h2 {
        font-size: 1.35rem;
    }

    .modal-price {
        font-size: 1.5rem;
        padding: 0.6rem 0.9rem;
    }
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.options-label {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-text);
    margin-bottom: 0.25rem;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 10px;
    position: relative;
}

.option-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.option-item:hover {
    border-color: var(--button-hover);
    background: var(--section-bg-alt);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.12);
    transform: translateY(-2px);
}

.option-item.selected {
    border-color: var(--button-hover);
    background: linear-gradient(135deg, var(--section-bg-alt) 0%, var(--section-bg) 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.2), inset 0 0 0 1px rgba(0, 102, 255, 0.1);
}

.option-item.selected::after {
    border-color: var(--button-hover);
}

.option-image {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.option-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.option-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.option-price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--button-hover);
    margin: 0;
}

.price-section {
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: left;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.site-search {
    --search-width: 320px;
    --search-height: 44px;
    --search-border: 2px solid var(--border-strong);
    --search-bg: var(--card-bg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: var(--search-width);
    height: var(--search-height);
    padding: 0 0.65rem;
    margin: 1.25rem auto 1.5rem;
    border: var(--search-border);
    background: var(--search-bg);
    border-radius: 2px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-search:focus-within {
    box-shadow: 0 0 0 3px var(--focus-ring);
    transform: translateY(-1px);
}

.site-search button {
    border: none;
    background: none;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-search-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.site-search-input:focus {
    outline: none;
}

.site-search-reset {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.site-search-input:not(:placeholder-shown)~.site-search-reset {
    opacity: 1;
    visibility: visible;
}

.site-search svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .site-search {
        --search-width: 120px;
        height: 30px;
        margin: 0;
        padding: 0 0.35rem;
        border-width: 1.5px;
    }

    .site-search-input {
        font-size: 0.75rem;
    }

    .site-search svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .site-search {
        --search-width: 90px;
        height: 26px;
    }

    .site-search-input {
        font-size: 0.7rem;
    }

    .site-search svg {
        width: 12px;
        height: 12px;
    }
}

.no-results {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border: 1px dashed var(--border-strong);
    background: var(--section-bg);
    color: var(--muted-text);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* TOS Modal */
.tos-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tos-overlay.open {
    display: flex;
}

.tos-modal {
    background: var(--modal-bg);
    border: 2px solid var(--border-strong);
    max-width: 720px;
    width: 100%;
    padding: 2rem;
    max-height: 85vh;
    overflow: auto;
}

.tos-modal h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.tos-modal p {
    color: var(--muted-text);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.tos-modal ul {
    padding-left: 1.25rem;
    margin: 0 0 1.5rem 0;
    color: var(--muted-text);
}

.tos-more {
    border-top: 1px solid var(--card-border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.tos-more summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tos-more summary::-webkit-details-marker {
    display: none;
}

.tos-more summary::after {
    content: '+';
    font-weight: 700;
    transition: transform 0.25s ease;
}

.tos-more[open] summary::after {
    transform: rotate(45deg);
}

.tos-more-content {
    margin-top: 0.75rem;
    color: var(--muted-text);
    line-height: 1.6;
}

.tos-more-content p {
    margin: 0 0 0.75rem 0;
}

.tos-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.tos-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-strong);
    background: var(--card-bg);
    color: var(--text-color);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.tos-btn.primary {
    background: var(--button-bg);
    color: var(--button-text);
}

.tos-btn:hover {
    transform: translateY(-1px);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--card-bg);
    border-left: 2px solid var(--border-strong);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}


.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-strong);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cart-close {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-strong);
    background: transparent;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    color: var(--text-color);
}

.cart-close:hover {
    background: var(--border-strong);
    color: var(--bg-color);
}

/* Cart item remove button */
.cart-item-remove {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-strong);
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    color: var(--text-color);
}

.cart-item-remove:hover {
    background: var(--border-strong);
    color: var(--bg-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

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

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--card-border);
    margin-bottom: 1rem;
    background: var(--card-bg);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.cart-item-details {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.cart-item-remove {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-strong);
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.cart-item-remove:hover {
    background: var(--border-strong);
    color: var(--bg-color);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-strong);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--button-bg);
    color: var(--button-text);
    border: 2px solid var(--border-strong);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background: var(--card-bg);
    color: var(--text-color);
}

/* Come Back Message */
.come-back-message {
    position: fixed;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: left 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.come-back-message.show {
    left: 20px;
}

.come-back-message span {
display: block;
animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}

/* Modern Promo Code Notifications */
.promo-notification {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(-8px);
padding: 12px 20px;
border-radius: 8px;
font-size: 0.875rem;
font-weight: 500;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
z-index: 10;
white-space: nowrap;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

.promo-notification.show {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}

.promo-notification.success {
background: rgba(16, 185, 129, 0.95);
color: white;
border: 1px solid rgba(16, 185, 129, 0.3);
}

.promo-notification.error {
background: rgba(239, 68, 68, 0.95);
color: white;
border: 1px solid rgba(239, 68, 68, 0.3);
}

.promo-notification.neutral {
background: rgba(107, 114, 128, 0.95);
color: white;
border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Subtle input feedback */
.promo-row.validating input {
border-color: rgba(59, 130, 246, 0.5);
box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.promo-row.success input {
border-color: rgba(16, 185, 129, 0.3);
box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.promo-row.error input {
border-color: rgba(239, 68, 68, 0.3);
box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.promo-row .promo-apply {
transition: all 0.2s ease;
}

.promo-row .promo-apply:hover {
transform: translateY(-1px);
}

.promo-row .promo-apply:active {
transform: translateY(0);
}

/* Modern Promo Code Input Animations */
.promo-row input.success-pulse {
    animation: successPulse 0.8s ease-out;
    border: 2px solid #10b981 !important;
    box-shadow: 0px 0px 0px 7px rgb(16, 185, 129, 20%) !important;
}

.promo-row input.error-pulse {
    animation: errorPulse 0.8s ease-out;
    border: 2px solid #ef4444 !important;
    box-shadow: 0px 0px 0px 7px rgb(239, 68, 68, 20%) !important;
}

@keyframes successPulse {
    0% {
        border: 2px solid #10b981 !important;
        box-shadow: 0px 0px 0px 7px rgb(16, 185, 129, 20%) !important;
        transform: scale(1);
    }
    25% {
        border: 2px solid #10b981 !important;
        box-shadow: 0px 0px 0px 8px rgb(16, 185, 129, 25%) !important;
        transform: scale(1.02);
    }
    50% {
        border: 2px solid #10b981 !important;
        box-shadow: 0px 0px 0px 10px rgb(16, 185, 129, 35%) !important;
        transform: scale(1.03);
    }
    75% {
        border: 2px solid #10b981 !important;
        box-shadow: 0px 0px 0px 8px rgb(16, 185, 129, 25%) !important;
        transform: scale(1.02);
    }
    100% {
        border: revert !important;
        box-shadow: revert !important;
        transform: scale(1);
    }
}

@keyframes errorPulse {
    0% {
        border: 2px solid #ef4444 !important;
        box-shadow: 0px 0px 0px 7px rgb(239, 68, 68, 20%) !important;
        transform: scale(1);
    }
    25% {
        border: 2px solid #ef4444 !important;
        box-shadow: 0px 0px 0px 8px rgb(239, 68, 68, 25%) !important;
        transform: scale(1.02);
    }
    50% {
        border: 2px solid #ef4444 !important;
        box-shadow: 0px 0px 0px 10px rgb(239, 68, 68, 35%) !important;
        transform: scale(1.03);
    }
    75% {
        border: 2px solid #ef4444 !important;
        box-shadow: 0px 0px 0px 8px rgb(239, 68, 68, 25%) !important;
        transform: scale(1.02);
    }
    100% {
        border: revert !important;
        box-shadow: revert !important;
        transform: scale(1);
    }
}

/* ===== 2026 Home + Products Refresh ===== */
.hero-premium .hero-overlay {
    background: linear-gradient(120deg, rgba(5, 7, 17, 0.68), rgba(5, 7, 17, 0.35));
    align-items: flex-start;
    text-align: left;
    padding: 4rem clamp(1.25rem, 5vw, 4.5rem);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #d9e7ff;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
}

.hero-premium .hero-overlay h1 {
    max-width: 9ch;
    font-size: clamp(2.3rem, 7vw, 5.6rem);
    margin-bottom: 0.75rem;
}

.hero-premium .hero-overlay p {
    max-width: 560px;
    margin-bottom: 1.4rem;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.trust-strip {
    max-width: 1200px;
    margin: 1.8rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.trust-item {
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-item strong {
    font-size: 0.95rem;
}

.trust-item span {
    font-size: 0.86rem;
    color: var(--muted-text);
}

.home-collections {
    max-width: 1200px;
    margin: 2.7rem auto;
    padding: 0 2rem;
}

.section-topline {
    margin-bottom: 1.1rem;
}

.section-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 0.45rem;
}

.section-topline h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
}

.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.collection-card {
    position: relative;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: #0f1118;
}

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

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 16, 0.85), rgba(8, 10, 16, 0.2));
}

.collection-card:hover img {
    transform: scale(1.06);
}

.collection-card-meta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.95rem;
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.collection-card-meta span {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.86;
}

.collection-card-meta strong {
    font-size: 1.25rem;
    line-height: 1.2;
}

.products-banner-premium .products-banner-overlay {
    background: linear-gradient(115deg, rgba(5, 7, 17, 0.76), rgba(5, 7, 17, 0.42));
    align-items: flex-start;
    text-align: left;
    padding: 0 clamp(1.25rem, 5vw, 4.5rem);
}

.products-kicker {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d9e7ff;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.35rem 0.68rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}

.products-subcopy {
    margin-top: 0.8rem;
    max-width: 560px;
    font-size: 1.05rem;
    color: #d3dbeb;
}

.products-header-premium {
    background: linear-gradient(145deg, var(--section-bg-alt), var(--section-bg));
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.2rem;
}

.products-header-premium h2,
.products-header-premium p {
    text-align: left;
}

.products-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 0 1rem;
}

.products-mini-stats span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 0.34rem 0.64rem;
    background: var(--card-bg);
}

@media (max-width: 900px) {
    .trust-strip,
    .home-collections {
        padding: 0 1rem;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .home-collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        min-height: 220px;
    }
}

/* ===== Refinement pass: more natural + premium ===== */
.hero-premium .hero-overlay {
    background: linear-gradient(100deg, rgba(10, 12, 20, 0.64), rgba(10, 12, 20, 0.3));
}

.hero-premium .hero-overlay h1,
.hero-premium .hero-overlay p,
.hero-premium .hero-overlay .cta-button {
    animation: none;
}

.hero-premium .hero-overlay h1 {
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
}

.hero-premium .hero-overlay p {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    opacity: 0.95;
}

.hero-cta-row .cta-button {
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.96rem;
    font-weight: 700;
    padding: 0.95rem 1.3rem;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.35);
}

.hero-cta-row .ghost-link {
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
    border-bottom-width: 1px;
}

.products-banner-premium .products-banner-overlay h1 {
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 5vw, 3.35rem);
}

.products-header-premium {
    border-radius: 20px;
    padding: 1.45rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.products-header-premium h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.35rem;
}

.products-header-premium p {
    margin-bottom: 0.9rem;
}

.products-page .products-grid {
    gap: 1.25rem;
    max-width: 1300px;
}

.products-page .product-card {
    border: 1px solid rgba(120, 132, 158, 0.24);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(165deg, var(--card-bg), var(--section-bg-alt));
    box-shadow: 0 12px 28px rgba(14, 20, 34, 0.09);
}

.products-page .product-image {
    height: 300px;
    min-height: 300px;
}

.products-page .product-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
    pointer-events: none;
}

/* Products grid card hover: motion.css (.motion-card) */

.products-page .product-card-content {
    padding: 1.15rem 1.15rem 1.2rem;
    gap: 0.5rem;
}

.products-page .product-card h3 {
    font-size: 1.06rem;
    font-weight: 750;
    margin-bottom: 0.2rem;
    line-height: 1.32;
}

.products-page .product-card .description {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 0.75rem;
}

.products-page .product-price-section {
    margin-bottom: 0.75rem;
}

.products-page .sale-price {
    font-size: 1.25rem;
}

.products-page .price-plain {
    font-size: 1.08rem;
}

.products-page .option-chip {
    font-size: 0.7rem;
    padding: 0.26rem 0.58rem;
    border-color: rgba(121, 132, 155, 0.28);
    background: rgba(255, 255, 255, 0.5);
}

body.dark-theme .products-page .option-chip {
    background: rgba(255, 255, 255, 0.04);
}

.products-page .add-to-cart {
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.92rem;
    padding: 0.78rem 1rem;
    background: linear-gradient(135deg, #0a57d4, #0b46aa);
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 82, 204, 0.28);
}

.products-page .add-to-cart:hover {
    background: linear-gradient(135deg, #0b4fc1, #0a3e95);
}

@media (max-width: 768px) {
    .products-page .product-image {
        height: 250px;
        min-height: 250px;
    }

    .products-header-premium {
        border-radius: 16px;
        padding: 1rem;
    }
}

/* ===== Modal card refinement (keep product grid unchanged) ===== */
.product-modal .modal-content {
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 4rem);
    margin: auto 0;
}

.product-modal .modal-content::before {
    display: none;
}

.product-modal .modal-gallery {
    padding: 1rem 1rem 1rem 1.2rem;
    background: var(--section-bg-alt);
    border-right: 1px solid var(--card-border);
}

.product-modal .main-image {
    border-radius: 10px;
    height: 330px;
    border: 1px solid var(--card-border);
    box-shadow: none;
    background: var(--card-bg);
}

.product-modal .gallery-thumbnails,
.product-modal .modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.product-modal .thumbnail {
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.product-modal .thumbnail:hover,
.product-modal .thumbnail.active {
    border-color: var(--button-hover);
    box-shadow: none;
    transform: none;
}

.product-modal .modal-details {
    padding: 1.2rem 1.2rem 1.25rem 1rem;
    gap: 0.9rem;
    background: var(--card-bg);
}

.product-modal .modal-details h2 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-modal .modal-description {
    font-size: 0.9rem;
    max-height: none;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
}

.product-modal .options-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-modal .options-list {
    gap: 0.55rem;
}

.product-modal .option-item {
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    box-shadow: none;
    background: var(--card-bg);
    transform: none;
}

.product-modal .option-item::after {
    display: none;
}

.product-modal .option-item:hover {
    border-color: var(--button-hover);
    background: var(--section-bg);
    transform: none;
    box-shadow: none;
}

.product-modal .option-item.selected {
    border-color: var(--button-hover);
    background: rgba(0, 102, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 102, 255, 0.15);
}

body.dark-theme .product-modal .option-item.selected {
    background: rgba(0, 102, 255, 0.18);
}

.product-modal .option-image {
    width: 50px;
    height: 50px;
    border-radius: 7px;
}

.product-modal .option-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.product-modal .option-price {
    font-size: 0.95rem;
    font-weight: 700;
}

.product-modal .price-section {
    padding: 0;
}

.product-modal .modal-price {
    font-size: 1.45rem;
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    box-shadow: none;
}

.product-modal .quantity-selector {
    border-radius: 10px;
    padding: 0.9rem;
    gap: 0.55rem;
}

.product-modal .quantity-controls button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.product-modal .quantity-controls input,
.product-modal .quantity-input,
.product-modal #quantity {
    width: 64px;
    border-radius: 8px;
}

.product-modal .add-to-cart-modal {
    border-radius: 10px;
    padding: 0.9rem 1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    box-shadow: none;
    background: linear-gradient(135deg, #0a57d4, #0b46aa);
}

.product-modal .add-to-cart-modal:hover {
    transform: none;
    box-shadow: none;
}

/* Scroll hint (more content below) — product modals */
.product-modal .modal-scroll-more {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%) translateY(10px);
    z-index: 1002;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-modal .modal-scroll-more.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.product-modal .modal-scroll-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem 0.4rem;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--card-bg));
    color: var(--text-primary);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

body.dark-theme .product-modal .modal-scroll-more-btn {
    background: linear-gradient(180deg, rgba(36, 36, 40, 0.98), var(--card-bg));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.product-modal .modal-scroll-more-btn:hover {
    border-color: rgba(0, 102, 255, 0.55);
    color: var(--button-hover);
}

.product-modal .modal-scroll-more-icon {
    display: block;
    opacity: 0.85;
}

/* Titanium bolt kit picker */
#titaniumBoltsModal .modal-details--titanium {
    max-height: min(58vh, 560px);
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-gutter: stable;
}

#titaniumBoltsModal .modal-details--titanium::-webkit-scrollbar {
    width: 6px;
}

#titaniumBoltsModal .modal-details--titanium::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.28);
    border-radius: 999px;
}

.titanium-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.titanium-product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--card-border);
    border-radius: 11px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 0.55rem 0.65rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.titanium-product-btn:hover {
    border-color: rgba(0, 102, 255, 0.4);
    background: var(--section-bg);
}

.titanium-product-btn--active {
    border-color: rgba(0, 102, 255, 0.85);
    background: rgba(0, 102, 255, 0.08);
    box-shadow: inset 2px 0 0 0 rgba(0, 102, 255, 0.85);
}

body.dark-theme .titanium-product-btn--active {
    background: rgba(0, 102, 255, 0.18);
}

.titanium-product-btn img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

body.dark-theme .titanium-product-btn img {
    background: rgba(255, 255, 255, 0.06);
}

.titanium-product-title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.titanium-pack-toolbar {
    margin-top: 0.75rem;
    border: 1px solid var(--card-border);
    border-radius: 11px;
    background: var(--section-bg);
    padding: 0.7rem;
}

.titanium-pack-label {
    margin: 0 0 0.45rem 0;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.titanium-pack-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
}

.titanium-pack-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.titanium-pack-btn {
    min-height: 2.4rem;
    border: 1px solid var(--card-border);
    border-radius: 9px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    font-size: 0.79rem;
    font-weight: 700;
    padding: 0.35rem 0.2rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.titanium-pack-btn:hover {
    border-color: rgba(0, 102, 255, 0.45);
    background: rgba(0, 102, 255, 0.06);
}

.titanium-pack-btn.selected {
    border-color: rgba(0, 102, 255, 0.85);
    background: rgba(0, 102, 255, 0.14);
}

body.dark-theme .titanium-pack-btn.selected {
    background: rgba(0, 102, 255, 0.24);
}

.titanium-current-selection {
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    border: 1px dashed var(--card-border);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    background: var(--card-bg);
}

#titaniumSelectionName {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}

#titaniumSelectionPrice {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--button-bg);
}

@media (max-width: 768px) {
    .product-modal {
        padding: 0.9rem;
    }

    .product-modal .modal-content {
        max-height: calc(100vh - 1.8rem);
    }

    .product-modal .modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
        padding: 0.95rem;
    }

    .product-modal .main-image {
        height: 270px;
    }

    .product-modal .modal-details {
        padding: 1rem;
    }

    #titaniumBoltsModal .modal-details--titanium {
        max-height: min(46vh, 440px);
    }

    .titanium-pack-row {
        gap: 0.28rem;
    }

    .titanium-pack-btn {
        min-height: 2.25rem;
        font-size: 0.74rem;
    }

    #titaniumSelectionName {
        font-size: 0.77rem;
    }
}

/* Mobile touch-up: stable hero CTA + tighter products cards */
@media (max-width: 768px) {
    .hero-premium .hero-overlay {
        padding: 2rem 1rem 1.4rem;
    }

    .hero-cta-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .hero-cta-row .cta-button,
    .hero-cta-row .ghost-link {
        flex: 1 1 46%;
        min-width: 130px;
        text-align: center;
        justify-content: center;
    }

    .products-header-premium {
        overflow: hidden;
    }

    .products-header-premium p {
        font-size: 0.95rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    .products-mini-stats span {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .products-page .product-image {
        height: 220px;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-premium .hero-overlay h1 {
        font-size: clamp(1.7rem, 9vw, 2.25rem);
    }

    .hero-premium .hero-overlay p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-cta-row .cta-button,
    .hero-cta-row .ghost-link {
        font-size: 0.84rem;
        padding: 0.74rem 0.6rem;
    }

    .products-header-premium {
        padding: 0.95rem;
    }

    .products-header-premium h2 {
        font-size: 1.6rem;
    }

    .products-header-premium p {
        font-size: 0.88rem;
    }

    .products-page .product-image {
        height: 185px;
        min-height: 185px;
    }
}

/* ===== MOBILE FIXES: Home + Products ===== */
@media (max-width: 768px) {
    /* Nav */
    .nav-container .logo-text-image {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
    }

    /* Home Hero */
    .hero-banner {
        height: 280px !important;
    }

    .hero-premium .hero-overlay {
        padding: 1.2rem 0.9rem 0.8rem !important;
    }

    .hero-premium .hero-overlay h1 {
        font-size: 1.9rem !important;
        line-height: 1.1 !important;
    }

    .hero-premium .hero-overlay p {
        font-size: 0.92rem !important;
        margin-bottom: 0.7rem !important;
    }

    .hero-cta-row {
        gap: 0.4rem !important;
    }

    .hero-cta-row .cta-button,
    .hero-cta-row .ghost-link {
        flex: 1 1 45% !important;
        font-size: 0.8rem !important;
        padding: 0.65rem 0.5rem !important;
        min-width: 0 !important;
    }

    /* Products Page */
    .products-banner {
        height: 220px !important;
    }

    .products-header-premium {
        padding: 0.9rem !important;
    }

    .products-header-premium h2 {
        font-size: 1.4rem !important;
    }

    .products-header-premium p {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
    }

    .products-mini-stats span {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.45rem !important;
    }

    .products-page .product-image,
    .products-page .product-card .product-image {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .products-grid {
        gap: 1rem !important;
    }

    .product-card-content {
        padding: 1rem !important;
    }

    .product-card h3 {
        font-size: 0.95rem !important;
    }

    /* Footer - Clean */
    .footer {
        min-height: auto !important;
        padding: 1.8rem 1rem 1.2rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        text-align: center !important;
        padding-bottom: 1.2rem !important;
    }

    .footer-section h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.6rem !important;
    }

    .footer-section a {
        font-size: 0.8rem !important;
        margin-bottom: 0.35rem !important;
    }

    .footer-bottom {
        padding-top: 1.2rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 240px !important;
    }

    .hero-premium .hero-overlay h1 {
        font-size: 1.65rem !important;
    }

    .hero-premium .hero-overlay p {
        font-size: 0.85rem !important;
    }

    .hero-cta-row .cta-button,
    .hero-cta-row .ghost-link {
        font-size: 0.75rem !important;
        padding: 0.55rem 0.4rem !important;
    }

    .products-banner {
        height: 180px !important;
    }

    .products-page .product-image,
    .products-page .product-card .product-image {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
    }

    .products-header-premium h2 {
        font-size: 1.25rem !important;
    }

    .products-header-premium p {
        font-size: 0.8rem !important;
    }

    .footer {
        padding: 1.5rem 0.8rem 1rem !important;
    }

    .footer-content {
        gap: 1rem !important;
    }
}

/* ===== MOBILE FIXES: Products Page Critical ===== */
@media (max-width: 768px) {
    /* Products Banner - smaller */
    .products-banner {
        height: 180px !important;
        margin-bottom: 1rem !important;
    }
    
    .products-banner-image {
        object-fit: cover !important;
    }

    .products-banner-overlay h1 {
        font-size: 1.5rem !important;
    }

    /* Products Header box */
    .products-header-premium {
        padding: 0.75rem !important;
        margin: 0 0.25rem 0.75rem !important;
    }

    .products-header-premium h2 {
        font-size: 1.25rem !important;
        margin-bottom: 0.3rem !important;
    }

    .products-header-premium p {
        font-size: 0.78rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.6rem !important;
    }

    .products-mini-stats {
        gap: 0.35rem !important;
        margin-bottom: 0.75rem !important;
    }

    .products-mini-stats span {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.35rem !important;
    }

    /* Category buttons */
    .category-filters {
        gap: 0.35rem !important;
    }

    .category-btn {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.7rem !important;
    }

    /* Product Cards - smaller images */
    .products-page .products-grid {
        gap: 0.6rem !important;
        padding: 0 0.25rem !important;
    }

    .products-page .product-card {
        border-radius: 10px !important;
    }

    .products-page .product-image,
    .product-card .product-image {
        height: 150px !important;
        min-height: 150px !important;
        max-height: 150px !important;
    }

    .product-card-content {
        padding: 0.75rem !important;
    }

    .product-card h3 {
        font-size: 0.85rem !important;
        margin-bottom: 0.2rem !important;
    }

    .product-price-section {
        margin-bottom: 0.3rem !important;
    }

    .price-plain, .sale-price {
        font-size: 0.95rem !important;
    }

    .original-price {
        font-size: 0.8rem !important;
    }

    .option-chips {
        gap: 0.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .option-chip {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.3rem !important;
    }

    .add-to-cart {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.7rem !important;
    }

    /* Footer - full width */
    .footer {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        padding: 1.5rem 0.5rem 1rem !important;
        margin-top: 2rem !important;
        left: 0 !important;
        right: 0 !important;
    }

    .footer-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.25rem 1rem !important;
        gap: 0.8rem !important;
    }

    .footer-section h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.75rem !important;
    }

    .footer-bottom {
        padding-top: 1rem !important;
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    /* Products Banner - even smaller */
    .products-banner {
        height: 140px !important;
    }

    .products-banner-overlay h1 {
        font-size: 1.25rem !important;
    }

    .products-banner-overlay p {
        font-size: 0.75rem !important;
    }

    /* Products */
    .products-page .product-image,
    .product-card .product-image {
        height: 130px !important;
        min-height: 130px !important;
        max-height: 130px !important;
    }

    .products-header-premium h2 {
        font-size: 1.1rem !important;
    }

    .products-header-premium p {
        font-size: 0.72rem !important;
    }

    .category-btn {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.65rem !important;
    }

    .product-card h3 {
        font-size: 0.8rem !important;
    }

    .price-plain, .sale-price {
        font-size: 0.9rem !important;
    }

    .option-chip {
        font-size: 0.55rem !important;
    }
}
