/* =========================================
   MyGirly.ma - 2026 STATE-OF-THE-ART EDITION
   Next-Level Dark Mode Design
   ========================================= */

/* CSS Variables - Enhanced 2026 Palette */
:root {
    --neon-pink: #FD4979;
    --neon-pink-light: #FF6B9D;
    --neon-pink-dark: #E0376A;
    --neon-pink-glow: rgba(253, 73, 121, 0.6);
    --deep-black: #000000;
    --off-black: #050505;
    --dark-surface: #0A0A0A;
    --surface-glass: rgba(20, 20, 20, 0.6);
    --surface-glass-hover: rgba(30, 30, 30, 0.8);
    --text-main: #FFFFFF;
    --text-muted: #999999;
    --text-dim: #666666;
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(255, 255, 255, 0.15);
    --border-glow: rgba(253, 73, 121, 0.3);

    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, #FD4979 0%, #FF6B9D 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows - 2026 Enhanced */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 30px rgba(253, 73, 121, 0.3), 0 0 60px rgba(253, 73, 121, 0.1);
    --shadow-elevated: 0 20px 60px -15px rgba(0, 0, 0, 0.7);
    --shadow-intense: 0 30px 90px -20px rgba(253, 73, 121, 0.4);

    /* Transitions - Smooth & Fluid */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--deep-black);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.serif-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================
   SCROLLBAR - Minimalist 2026
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-surface);
    border-radius: 4px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

/* =========================================
   LOADING ANIMATION - 3D Neon Cube
   ========================================= */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    perspective: 1000px;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-3d {
    position: relative;
    width: 100px;
    height: 100px;
    transform-style: preserve-3d;
    animation: rotate3d 4s infinite linear;
}

.loader-face {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink-glow), inset 0 0 20px var(--neon-pink-glow);
    opacity: 0.8;
    background: rgba(253, 73, 121, 0.05);
}

.face-1 {
    transform: rotateY(0deg) translateZ(50px);
}

.face-2 {
    transform: rotateY(90deg) translateZ(50px);
}

.face-3 {
    transform: rotateY(180deg) translateZ(50px);
}

.face-4 {
    transform: rotateY(-90deg) translateZ(50px);
}

.face-5 {
    transform: rotateX(90deg) translateZ(50px);
}

.face-6 {
    transform: rotateX(-90deg) translateZ(50px);
}

@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.loader-text {
    position: absolute;
    bottom: 20%;
    font-family: 'Inter', sans-serif;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   NAVIGATION - Premium Glass
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border-dim);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-bright);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar-logo img {
    height: 80px;
    /* 2X BIGGER - ENHANCED VISIBILITY */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: var(--transition-smooth);
}

.navbar-logo img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--neon-pink-glow));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.navbar-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.navbar-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--text-main);
}

.navbar-link:hover::before {
    width: 100%;
}

.navbar-cart {
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
}

.navbar-cart:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-neon);
    background: rgba(253, 73, 121, 0.15);
    transform: translateY(-2px);
}

.navbar-cart svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-main);
    stroke-width: 1.5;
    transition: var(--transition-fast);
}

.navbar-cart:hover svg {
    stroke: var(--neon-pink);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

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

/* Mobile Menu */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.navbar-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar-toggle:hover span {
    background: var(--neon-pink);
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--space-sm) var(--space-md);
    }

    .navbar-logo img {
        height: 60px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: 0.4s cubic-bezier(0.4, 0, 0, 1);
        z-index: 999;
        border-left: 1px solid var(--border-bright);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-link {
        font-size: 1.2rem;
        padding: var(--space-sm) 0;
    }
}

/* =========================================
   HERO SECTION - Cinematic Immersive
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: radial-gradient(ellipse at 50% 0%, #1a0510 0%, #000000 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FD4979' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: bgFloat 60s linear infinite;
}

@keyframes bgFloat {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    100% {
        transform: rotate(360deg) translate(20px, 20px);
    }
}

/* Animated Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    top: 15%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 15%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8B2EFF 0%, transparent 70%);
    animation-delay: -7s;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: var(--space-md);
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--border-glow);
    background: rgba(253, 73, 121, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(253, 73, 121, 0.2);
    animation: shine 3s linear infinite;
}

@keyframes shine {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(253, 73, 121, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(253, 73, 121, 0.4);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #AAAAAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(253, 73, 121, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(253, 73, 121, 0.6));
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   BUTTONS - Next-Level Design
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(253, 73, 121, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-bright);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    background: rgba(253, 73, 121, 0.1);
    box-shadow: 0 0 30px rgba(253, 73, 121, 0.2);
}

.btn-lg {
    padding: 22px 56px;
    font-size: 1rem;
    border-radius: 14px;
}

/* =========================================
   SECTION STYLES - Modern Layout
   ========================================= */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    margin-bottom: var(--space-xl);
    text-align: left;
    border-left: 4px solid var(--neon-pink);
    padding-left: var(--space-lg);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-pink);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
}

/* =========================================
   FEATURED PACK - Premium Card
   ========================================= */
.featured-section {
    background: var(--deep-black);
    padding: var(--space-xl) 0;
}

.featured-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-dim);
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.featured-card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-5px);
}

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

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

.featured-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
}

@media (max-width: 900px) {
    .featured-image {
        border-radius: 24px 24px 0 0;
        min-height: 400px;
    }
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.featured-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .featured-content {
        padding: var(--space-lg);
    }
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 20px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neon);
    animation: pulse 2s infinite;
}

.featured-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #CCCCCC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.featured-price {
    margin-bottom: var(--space-lg);
}

.featured-price .price {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.featured-price .currency {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-left: 8px;
}

/* =========================================
   PRODUCTS GRID - Modern Cards
   ========================================= */
.products-section {
    background: var(--off-black);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-md);
    }
}

.product-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-8px);
    box-shadow: var(--shadow-intense);
}

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

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #0F0F0F;
    border-radius: 20px 20px 0 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.12) rotate(2deg);
}

.product-card-content {
    padding: var(--space-lg);
    position: relative;
    z-index: 1;
}

.product-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
    transition: var(--transition-fast);
}

.product-card:hover .product-card-title {
    color: var(--neon-pink);
}

.product-card-price {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

/* =========================================
   PRODUCT DETAIL PAGE - Premium 2026
   ========================================= */
.product-page {
    padding-top: 140px;
    padding-bottom: var(--space-xl);
    background: var(--deep-black);
}

.product-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Enhanced Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: sticky;
    top: 140px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    background: #0A0A0A;
    border: 1px solid var(--border-dim);
    position: relative;
    box-shadow: var(--shadow-elevated);
}

.product-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(253, 73, 121, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-main-image:hover::before {
    opacity: 1;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.product-thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    background: #0A0A0A;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.product-thumbnail:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(253, 73, 121, 0.3);
}

.product-thumbnail.active {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(253, 73, 121, 0.5);
}

.product-thumbnail:hover img {
    transform: scale(1.1);
}

/* Product Info Section */
.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-badge {
    display: inline-block;
    width: fit-content;
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neon);
}

.product-info h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #AAAAAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.product-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: var(--space-sm);
}

.product-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: var(--space-md) 0;
}

.product-features {
    background: var(--surface-glass);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: var(--space-lg);
    backdrop-filter: blur(20px);
}

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--text-main);
}

.product-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-features li {
    color: var(--text-muted);
    font-size: 1rem;
    padding-left: 30px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.quantity-selector label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--dark-surface);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 8px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-weight: 300;
}

.quantity-btn:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: var(--deep-black);
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(253, 73, 121, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #AAAAAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   FORMS & INPUTS - Modern Design
   ========================================= */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: #0F0F0F;
    box-shadow: 0 0 20px rgba(253, 73, 121, 0.2);
}

/* =========================================
   FOOTER - Premium Structure
   ========================================= */
.footer {
    background: var(--off-black);
    border-top: 1px solid var(--border-dim);
    padding: var(--space-xl) 0 var(--space-lg);
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

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

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: #fff;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 350px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-pink);
    transform: translateX(5px);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    margin-right: var(--space-sm);
}

.footer-social:hover {
    border-color: var(--neon-pink);
    background: rgba(253, 73, 121, 0.1);
    color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(253, 73, 121, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--border-dim);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* =========================================
   CART & CHECKOUT - Enhanced
   ========================================= */
.cart-page {
    padding-top: 140px;
    min-height: 80vh;
    background: var(--deep-black);
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
}

.cart-table th {
    text-align: left;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-dim);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.cart-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-dim);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-item-img,
.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #0F0F0F;
    border-radius: 12px;
    border: 1px solid var(--border-dim);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img,
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--dark-surface);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 6px;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-dim);
    border-radius: 6px;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
}

.qty-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 8px;
}

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

.cart-summary {
    background: var(--surface-glass);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: var(--space-lg);
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    backdrop-filter: blur(20px);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.total-row {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-dim);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checkout Page */
.checkout-page {
    padding-top: 140px;
    padding-bottom: var(--space-xl);
    background: var(--deep-black);
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

    .checkout-sidebar {
        order: -1;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

/* Confirmation Page */
.confirmation-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: var(--deep-black);
}

.confirmation-container {
    text-align: center;
    max-width: 700px;
    padding: 0 var(--space-md);
}

.confirmation-icon {
    font-size: 6rem;
    margin-bottom: var(--space-lg);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(253, 73, 121, 0.4));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(253, 73, 121, 0.6));
    }
}

.confirmation-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #AAAAAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.confirmation-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.confirmation-actions .btn {
    min-width: 200px;
}

/* Error Pages */
.error-page {
    text-align: center;
    padding-top: 150px;
    min-height: 100vh;
    background: var(--deep-black);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE - Mobile Optimizations
   ========================================= */
@media (max-width: 768px) {
    :root {
        --space-lg: 32px;
        --space-xl: 60px;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header {
        padding-left: var(--space-md);
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--border-dim);
        padding: var(--space-md) 0;
    }

    .cart-table td {
        padding: var(--space-sm) 0;
        border: none;
    }

    .cart-item-info {
        flex-direction: row;
        align-items: flex-start;
    }

    .cart-summary {
        margin: 0;
        max-width: 100%;
    }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}