:root {
    /* Cyberpunk Dark Theme matching KORDAN FAMILY Logo */
    --color-bg: #020617; 
    --color-bg-light: #0f172a;
    --color-text: #f8fafc;
    --color-text-dim: #94a3b8;
    
    /* Cyan / Blue to match logo perfectly */
    --color-primary: #00d2ff;
    --color-accent: #0ea5e9;
    --color-glow: rgba(0, 210, 255, 0.4);
    
    --gradient-primary: linear-gradient(135deg, #00d2ff 0%, #0ea5e9 100%);
    --gradient-neon: linear-gradient(90deg, #00d2ff, #38bdf8, #0ea5e9, #00d2ff);
    
    /* Extreme Glassmorphism */
    --glass-bg: rgba(15, 23, 42, 0.3);
    --glass-border: rgba(0, 210, 255, 0.2);
    
    /* Typography */
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(0,210,255,0.5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden; line-height: 1.6;
}
a, button { text-decoration: none; color: inherit; cursor: pointer; }
ul, li { list-style: none !important; list-style-type: none !important; }

/* 3D WEBGL Vanta Background Container */
#vanta-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -2;
}
/* Overlay to slightly dim the waves behind content */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(3,7,18,0.8) 100%);
    z-index: -1; pointer-events: none;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.mt-6 { margin-top: 60px; }



/* Typography Tools */
h1, h2, h3, .logo { font-family: var(--font-heading); text-transform: uppercase; }
.hollow-text {
    color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}
.hollow-text.small { font-size: 24px; letter-spacing: 4px; }
.hollow-text.large { font-size: 8vw; -webkit-text-stroke: 2px rgba(255,255,255,0.8); }
.gradient-text {
    background: var(--gradient-neon); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-size: 300% auto;
    animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 300% center; } }
.section-title-wrapper { margin-bottom: 60px; }
.section-title-wrapper h3 { font-size: 48px; margin-top: 10px; }

/* Header */
.header {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 15px 0; transition: all var(--transition-fast);
}
.header.scrolled {
    padding: 15px 0; background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 28px; font-weight: 700; letter-spacing: 2px; }
.nav-logo { height: 80px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(255,255,255,0.15)); }
.nav-links { display: flex; gap: 40px; }
.nav-link {
    font-size: 14px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 2px; position: relative; overflow: hidden; display: inline-block;
}
.nav-link::before {
    content: attr(data-text); position: absolute; top: 100%; left: 0;
    color: var(--color-accent); transition: transform var(--transition-fast);
}
.nav-link:hover { color: transparent; }
.nav-link:hover::before { transform: translateY(-100%); }
.header-actions { display: flex; gap: 15px; align-items: center; font-size: 20px; }
.header-actions div { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.header-actions i { transition: color var(--transition-fast); }
.header-actions div:hover i { color: var(--color-accent); }
.cart-icon { position: relative; }
.cart-icon .badge {
    position: absolute; top: 0px; right: 0px;
    background: var(--color-accent); color: #000; font-size: 10px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
}
.menu-toggle { display: none; }

/* Buttons */
.btn {
    display: inline-flex; position: relative; padding: 16px 40px; border-radius: 50px;
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; overflow: hidden; border: none; background: transparent; z-index: 1;
}
.btn-primary { background: var(--color-text); color: var(--color-bg); }
.btn-primary .btn-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-primary); z-index: -1; opacity: 0; transition: opacity var(--transition-fast);
}
.btn-primary:hover { color: var(--color-text); }
.btn-primary:hover .btn-glow { opacity: 1; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--color-text); backdrop-filter: blur(5px); }
.btn-outline:hover {
    border-color: var(--color-accent); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.magnetic-element { display: inline-block; }

/* Hero Section */
.hero {
    height: 100vh; min-height: 800px; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 100px;
}
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; height: 100%; width: 100%;
}
.hero-text-wrapper { z-index: 2; }
.hero-title {
    font-size: clamp(35px, 12vw, 85px); line-height: 1; margin-bottom: 30px; display: flex; flex-direction: column;
    /* Hide by default for GSAP SplitType */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    word-wrap: break-word; overflow-wrap: break-word; hyphens: auto;
}
.hero-subtitle {
    font-size: 18px; color: var(--color-text-dim); max-width: 400px; margin-bottom: 40px;
}
.hero-image-wrapper {
    height: 70vh; position: relative; z-index: 1; border-radius: 30px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
}
.hero-image-container { width: 100%; height: 100%; position: relative; }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; }
.image-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(3,7,18,0.8), transparent);
}

/* Infinite Marquee */
.marquee-section {
    padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(15, 23, 42, 0.3); backdrop-filter: blur(10px); overflow: hidden;
}
.marquee { white-space: nowrap; display: flex; }
.marquee-content {
    display: flex; gap: 40px; font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--color-text-dim);
}
.marquee-content span:nth-child(even) { color: var(--color-accent); }

/* Expanding Accordion Gallery */
.accordion-gallery { display: flex; height: 600px; gap: 20px; }
.accordion-panel {
    flex: 1; position: relative; border-radius: 20px; overflow: hidden; transition: flex var(--transition-slow);
    border: 1px solid rgba(255,255,255,0.05);
}
.accordion-panel.active { flex: 4; border-color: rgba(255,255,255,0.3); box-shadow: 0 0 30px rgba(255,255,255,0.05); }
.accordion-panel img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(80%) brightness(0.5); transition: all var(--transition-slow);
}
.accordion-panel.active img { filter: grayscale(0%) brightness(0.9); }
.accordion-panel::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.panel-content {
    position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 2;
    opacity: 0; transform: translateY(20px); transition: all 0.4s ease 0.3s;
}
.accordion-panel.active .panel-content { opacity: 1; transform: translateY(0); }
.panel-content h2 { font-size: 42px; margin-bottom: 10px; }
.panel-content p { color: #ccc; margin-bottom: 20px; }
.btn-link { font-family: var(--font-heading); font-size: 14px; color: var(--color-accent); font-weight: 700; }
.btn-link i { margin-left: 10px; transition: transform var(--transition-fast); }
.btn-link:hover i { transform: translateX(10px); }

/* Tilt Products Grid */
.tilt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tilt-card { transform-style: preserve-3d; }
.card-inner {
    background: var(--glass-bg); backdrop-filter: blur(15px); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 20px; transform: translateZ(40px);
}
.card-image { width: 100%; aspect-ratio: 3/4; border-radius: 15px; overflow: hidden; position: relative; margin-bottom: 20px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.tilt-card:hover .card-image img { transform: scale(1.1); }
.card-badge {
    position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
}
.card-badge.hot { background: var(--gradient-primary); border-color: transparent; color: #000; }
.card-info { text-align: center; }
.card-info h4 { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.card-info .price { color: var(--color-accent); font-family: var(--font-heading); font-weight: 700; }

/* Feature Video / Image */
.feature-video {
    height: 80vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center;
    margin-top: 100px;
}
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 130%; z-index: -1; }
.video-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.video-overlay { z-index: 1; }
.video-overlay h2 { margin-bottom: 40px; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); background: rgba(2,4,10,0.8); backdrop-filter: blur(20px); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--color-text-dim); margin: 20px 0; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all var(--transition-fast);
}
.social-links a:hover { background: var(--color-accent); color: #000; border-color: transparent; box-shadow: 0 0 20px var(--color-accent); }
.footer-links h4, .footer-newsletter h4 { font-family: var(--font-heading); margin-bottom: 25px; font-size: 16px; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links a { color: var(--color-text-dim); }
.footer-links a:hover { color: var(--color-text); }
.hover-underline { position: relative; }
.hover-underline::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
    background: var(--color-accent); transition: width var(--transition-fast);
}
.hover-underline:hover::after { width: 100%; }
.footer-newsletter p { color: var(--color-text-dim); margin-bottom: 20px; font-size: 14px; }
.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
.newsletter-form input {
    flex: 1; background: transparent; border: none; color: white; outline: none; font-family: var(--font-body); font-size: 14px;
}
.newsletter-form button { background: transparent; border: none; color: var(--color-accent); font-size: 20px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 0;
    display: flex; justify-content: space-between; align-items: center; color: var(--color-text-dim); font-size: 14px;
}
.payment-methods { display: flex; gap: 15px; font-size: 24px; color: rgba(255,255,255,0.3); }

@media (max-width: 1024px) {
    .hero-title { font-size: clamp(35px, 10vw, 60px); }
    .accordion-gallery { height: 500px; }
    .tilt-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 15px; overflow-x: hidden; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; font-size: 24px; cursor: pointer; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: clamp(32px, 12vw, 50px); align-items: center; }
    .hero-subtitle { margin: 0 auto 30px; font-size: 16px; }
    .accordion-gallery { flex-direction: column; height: 800px; }
    .tilt-grid { grid-template-columns: 1fr; }
    .footer { padding-top: 40px !important; }
    .footer-logo { height: 80px !important; }
    .footer-grid { display: flex; flex-direction: column; gap: 25px; margin-bottom: 30px; }
    .footer-brand, .footer-links, .footer-newsletter { width: 100%; text-align: left; }
    .footer-links h4, .footer-newsletter h4 { margin-bottom: 10px; font-size: 14px !important; }
    .footer-links ul li { margin-bottom: 8px; font-size: 12px; }
    .footer-brand p, .footer-newsletter p { margin: 10px 0; font-size: 12px !important; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: left; align-items: flex-start; padding: 20px 0; font-size: 12px; }
    .newsletter-form input { font-size: 12px !important; padding: 10px 15px !important; }
    .product-showcase-grid { grid-template-columns: 1fr; text-align: center; }
    .product-showcase-info h1 { font-size: 2.5rem; }
    .size-selector { justify-content: center; }
    .product-showcase-image img { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 36px !important; }
    .product-showcase-info h1 { font-size: 2rem; }
    .product-showcase-info .price { font-size: 1.8rem; }
    .panel-content h2 { font-size: 28px; }
    .logo { font-size: 22px; }
    .nav-logo { height: 60px; }
    .header-actions { gap: 5px; }
    .btn { padding: 12px 24px; font-size: 11px; min-height: 44px; }
    .social-links a { width: 44px; height: 44px; }
    .featured-drop { padding: 30px 15px; }
    .product-item { min-height: auto; padding: 20px 15px 15px 15px; }
    .product-actions .btn { min-height: 44px; }
}

/* Audio Toggle Button */
#audio-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--color-accent);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

#audio-toggle:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 20px var(--color-accent);
}

/* Image Logo Styles */
.nav-logo {
    height: 110px;
    width: auto;
    display: block;
    transform: scale(1.2);
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.25);
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.8));
}

@media (max-width: 600px) {
    .nav-logo { height: 60px; transform: scale(1); }
    .nav-logo:hover { transform: scale(1.05); }
    .header-actions { gap: 10px; font-size: 16px; }
    .header-actions div { min-width: 35px; min-height: 35px; }
}

.footer-logo {
    height: 140px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
}

/* Standard Product Image Classes */
.blend-bg {
    background-color: transparent !important;
}
.blend-screen {
    object-fit: contain !important;
    padding: 10px;
    filter: drop-shadow(0 10px 20px rgba(0, 210, 255, 0.2));
}

/* Shop Hero Product Showcase */
.product-showcase {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}
.product-showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.product-showcase-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
}
.product-showcase-image img {
    width: 100%;
    max-width: 700px;
    filter: drop-shadow(0 30px 60px rgba(0, 210, 255, 0.4));
}
.product-showcase-info h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}
.product-showcase-info .price {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}
.product-showcase-info p {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}
.size-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.size-btn {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}
.size-btn:hover, .size-btn.active {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

/* Full Catalog & Bento Box Grid */
.shop-header {
    padding-top: 150px;
    padding-bottom: 40px;
    text-align: center;
}
.featured-drop {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}
.featured-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.featured-image img {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 210, 255, 0.4));
}
.featured-info {
    flex: 1;
    padding-left: 50px;
}

/* Sticky Filters */
.category-filters {
    position: sticky;
    top: 90px;
    z-index: 90;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 15px 10px;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.filter-btn {
    padding: 10px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--color-text-dim);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* Premium Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 100px;
}
.product-item {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.1));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 35px 25px 25px 25px;
    min-height: 480px;
}
.product-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15), inset 0 0 20px rgba(0, 210, 255, 0.05);
}
.product-item .product-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}
.product-item .product-img img, .product-item .product-img i {
    max-height: 260px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 20px 15px rgba(0,0,0,0.5));
}
.product-item:hover .product-img img, .product-item:hover .product-img i {
    transform: scale(1.1) translateY(-10px);
}
.product-info {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 25px;
}
.product-info h4 {
    font-size: clamp(0.95rem, 4vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-info .price {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.product-actions {
    display: flex;
    gap: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    margin-top: auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}
.product-actions .btn {
    padding: 16px 10px;
    font-size: 0.9rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-actions .buy-now-btn {
    flex: 3;
    background: transparent;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.product-actions .buy-now-btn:hover {
    background: #fff;
    color: #000;
}
.product-actions .add-cart-btn {
    flex: 1;
    background: transparent;
    color: var(--color-accent);
    border-left: 1px solid rgba(255,255,255,0.1);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.product-actions .add-cart-btn:hover {
    background: var(--color-accent);
    color: #000;
}

/* Spotlight Hover Effect */
.product-item::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(0,210,255,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
    border-radius: 50%;
}
.product-item:hover::before {
    width: 150%; height: 150%;
}

/* Beautiful Interactive Product Detail Overlay */
.product-detail-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-detail-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.product-detail-modal {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 30px;
    padding: 50px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 30px rgba(0,210,255,0.05);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}
.product-detail-overlay.open .product-detail-modal {
    transform: scale(1) translateY(0);
}
.detail-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}
.detail-image-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 30px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.detail-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,210,255,0.3));
}
.detail-info-box {
    display: flex;
    flex-direction: column;
}
.detail-info-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    margin-bottom: 12px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.detail-info-box .detail-price {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0,210,255,0.25);
}
.detail-info-box p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.detail-size-section {
    margin-bottom: 30px;
}
.detail-size-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}
.detail-size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap: 10px;
    width: 100%;
}
.detail-size-btn {
    width: 100%;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}
.detail-size-btn:hover {
    border-color: rgba(255,255,255,0.4);
}
.detail-size-btn.active {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0,210,255,0.3);
}
.detail-actions {
    display: flex;
    gap: 15px;
}
.detail-actions .btn {
    padding: 16px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .product-detail-modal {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 25px;
        max-width: 500px;
        overflow-y: auto;
        max-height: 90vh;
    }
    .detail-image-box {
        height: 250px;
    }
    .detail-close-btn {
        top: 20px;
        right: 20px;
    }
}


/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.cart-drawer {
    position: fixed;
    top: 0; right: -450px;
    width: 450px; height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 210, 255, 0.2);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -15px 0 40px rgba(0,0,0,0.7);
}
.cart-drawer.open { right: 0; }
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.cart-header h2 { font-size: 1.5rem; letter-spacing: 1px; color: var(--color-accent); }
.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-cart:hover { color: var(--color-accent); }
.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 10px;
}
.cart-items::-webkit-scrollbar { width: 5px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 5px; }
.cart-item {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 10px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.cart-item img {
    width: 60px; height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5));
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.95rem; margin-bottom: 5px; }
.cart-item-price { color: var(--color-accent); font-weight: bold; }
.remove-item { background: none; border: none; color: #ff4444; cursor: pointer; font-size: 1.1rem; }
.cart-footer {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.cart-empty-msg {
    text-align: center;
    color: rgba(255,255,255,0.4);
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 900px) {
    .premium-grid { grid-template-columns: repeat(2, 1fr); }
    .product-actions { opacity: 1; transform: translateY(0); }
    .featured-drop { flex-direction: column; text-align: center; }
    .featured-info { padding-left: 0; padding-top: 30px; }
    .cart-drawer { width: 100vw; right: -100vw; padding: 20px 15px; }
}
@media (max-width: 600px) {
    .category-filters { position: static !important; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 50px; }
    .product-item { padding: 15px 10px; min-height: 250px; border-radius: 16px; }
    .product-item .product-img { margin-bottom: 15px; }
    .product-item .product-img img { max-height: 120px; }
    .product-info { margin-bottom: 15px; }
    .product-info h4 { font-size: 0.7rem !important; margin-bottom: 5px; }
    .product-info .price { font-size: 0.85rem !important; letter-spacing: 1px; }
    .product-actions .btn { padding: 10px 5px !important; font-size: 0.7rem !important; }
    .product-actions .add-cart-btn { font-size: 1rem !important; padding: 10px !important; }
    
    .detail-size-options {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
    .detail-size-btn {
        height: 44px; /* Ensure 44px touch target */
        font-size: 0.85rem;
    }
    .cart-item { flex-direction: column; text-align: center; gap: 10px; position: relative; }
    .remove-item { position: absolute; top: 10px; right: 10px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .size-btn { width: 44px; height: 44px; font-size: 1rem; }
    .filter-btn { padding: 12px 20px; font-size: 0.8rem; min-height: 44px; }
}
@media (max-width: 360px) {
    .detail-size-options {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .cart-header h2 { font-size: 1.2rem; }
}

/* Product Hover Image Flip with smooth cross-fade */
.product-img {
    position: relative;
}
.product-img img {
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.product-img .hover-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
}
.product-item:hover .product-img .hover-img {
    opacity: 1 !important;
}
.product-item:hover .product-img .primary-img {
    opacity: 0 !important;
}
