/* ============================================
   MERRY LOVES - Premium Dark Theme
   Rose Gold & Black Aesthetic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-elevated: #1a1a1a;
    --bg-input: #141414;

    /* Rose Gold Palette */
    --rose-gold: #c9956b;
    --rose-gold-light: #e8c5a0;
    --rose-gold-dark: #a67c52;
    --rose-gold-glow: rgba(201, 149, 107, 0.15);
    --rose-gold-gradient: linear-gradient(135deg, #c9956b, #d4a574, #e8c5a0);
    --rose-gold-gradient-hover: linear-gradient(135deg, #d4a574, #e8c5a0, #f0d5b8);

    /* Text */
    --text-primary: #f5f0eb;
    --text-secondary: #9a9a9a;
    --text-muted: #666666;
    --text-rose: #c9956b;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-rose: rgba(201, 149, 107, 0.25);
    --border-rose-hover: rgba(201, 149, 107, 0.5);

    /* Status Colors */
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1280px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 149, 107, 0.15);

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--rose-gold);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--rose-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

input, textarea, select, button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

::selection {
    background: var(--rose-gold);
    color: #000;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--rose-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: var(--section-padding);
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-rose);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   18+ Age Verification Modal
   ============================================ */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease;
}

.age-modal {
    background: linear-gradient(160deg, #1a1a1a, #0f0f0f);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    max-width: 520px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 0 80px rgba(201, 149, 107, 0.1);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-modal .modal-logo {
    max-width: 320px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(201, 149, 107, 0.3));
}

.age-modal h2 {
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.age-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.age-modal .age-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-modal-buttons .btn-confirm {
    padding: 1rem 2.5rem;
    background: var(--rose-gold-gradient);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.age-modal-buttons .btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 149, 107, 0.3);
}

.age-modal-buttons .btn-deny {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.age-modal-buttons .btn-deny:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.age-modal .legal-notice {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   Video Intro
   ============================================ */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-intro .skip-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 149, 107, 0.2);
    border: 1px solid var(--border-rose);
    color: var(--rose-gold-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 10;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.video-intro .skip-btn:hover {
    background: rgba(201, 149, 107, 0.4);
}

/* ============================================
   Header / Navigation
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.header-logo img {
    height: 110px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(201, 149, 107, 0.2));
}

.main-header.scrolled .header-logo img {
    height: 95px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.3rem 0;
    letter-spacing: 0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-menu a:not(.cart-icon):not(.nav-user-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:not(.cart-icon):not(.nav-user-link):hover::after,
.nav-menu a:not(.cart-icon):not(.nav-user-link).active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--rose-gold-light);
}

.nav-menu a.active {
    color: var(--rose-gold);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    background: rgba(201, 149, 107, 0.1);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-md);
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-icon::after { display: none !important; }

.cart-text {
    display: none;
}

.nav-cart-link {
    display: none;
}

.cart-icon:hover {
    background: rgba(201, 149, 107, 0.2);
    color: var(--rose-gold-light);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--rose-gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section / Slider
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--rose-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease 0.4s both;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--rose-gold-gradient);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 149, 107, 0.3);
    color: #000;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* ============================================
   Features / Info Band
   ============================================ */
.features-band {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.feature-item .feature-icon {
    font-size: 2rem;
    color: var(--rose-gold);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-gold-glow);
    border-radius: var(--radius-md);
}

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ============================================
   Categories Showcase
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    padding-bottom: 2.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.category-card span {
    font-size: 0.85rem;
    color: var(--rose-gold);
}

/* ============================================
   Product Grid
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-rose);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.product-card .product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-card .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    background: var(--rose-gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-card .product-info {
    padding: 1.5rem;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.product-card .product-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

.product-card:hover .product-name {
    color: var(--rose-gold-light);
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card .price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rose-gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-card .price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .price-shipping-note {
    display: block;
    font-size: 0.7rem;
    color: var(--success);
    margin-top: 0.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.product-card .price-shipping-note i {
    font-size: 0.65rem;
    margin-right: 0.15rem;
}

.product-card .product-actions {
    padding: 0 1.5rem 1.5rem;
}

.product-card .btn-add-cart {
    width: 100%;
    padding: 0.8rem;
    background: rgba(201, 149, 107, 0.1);
    border: 1px solid var(--border-rose);
    color: var(--rose-gold);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-card .btn-add-cart:hover {
    background: var(--rose-gold-gradient);
    color: #000;
    border-color: transparent;
}

.product-card .stock-out {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    color: var(--danger);
    cursor: not-allowed;
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail-section {
    padding-top: 120px;
    padding-bottom: 4rem;
}

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

/* Image Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-rose);
    border-radius: 50%;
    color: var(--rose-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-nav-btn:hover {
    background: var(--rose-gold);
    color: #000;
}

.gallery-nav-btn.prev { left: 1rem; }
.gallery-nav-btn.next { right: 1rem; }

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 4px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--rose-gold);
    opacity: 1;
}

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

/* Product Info */
.product-detail-info {
    padding-top: 1rem;
}

.product-detail-info .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-detail-info .breadcrumb a {
    color: var(--text-secondary);
}

.product-detail-info .breadcrumb a:hover {
    color: var(--rose-gold);
}

.product-detail-info .breadcrumb .separator {
    color: var(--text-muted);
}

.product-detail-info .product-category-label {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--rose-gold-glow);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-xl);
    color: var(--rose-gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-info h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-detail-info .price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.shipping-included-note {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-left: 0.25rem;
}

.shipping-included-note i {
    margin-right: 0.3rem;
}

.product-detail-info .price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--rose-gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-detail-info .price-old {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-info .price-discount {
    padding: 0.25rem 0.75rem;
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

.product-detail-info .product-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.product-detail-info .stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.stock-status.in-stock {
    color: var(--success);
}

.stock-status.out-of-stock {
    color: var(--danger);
}

.stock-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

/* Quantity Selector */
.quantity-cart-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.quantity-selector button {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--rose-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--rose-gold-glow);
}

.quantity-selector input {
    width: 60px;
    height: 48px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.quantity-selector input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
    padding: 1rem 2rem;
    background: var(--rose-gold-gradient);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 149, 107, 0.3);
}

/* Info Features */
.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-feature .icon {
    color: var(--rose-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================
   Cart Page
   ============================================ */
.cart-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table thead {
    border-bottom: 1px solid var(--border-subtle);
}

.cart-table th {
    padding: 1rem;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-product-info .name {
    font-weight: 600;
    color: var(--text-primary);
}

.cart-product-info .cat {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--rose-gold);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.cart-summary-row:last-of-type {
    border-bottom: none;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.cart-summary .total-price {
    color: var(--rose-gold);
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.cart-empty h2 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ============================================
   Order / Checkout Page
   ============================================ */
.checkout-section {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px var(--rose-gold-glow);
}

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

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-rose);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--rose-gold);
    text-decoration: underline;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.order-item .item-name {
    color: var(--text-primary);
    flex: 1;
}

.order-item .item-qty {
    color: var(--text-muted);
    margin: 0 1rem;
}

.order-item .item-price {
    color: var(--rose-gold);
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 149, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    background: var(--rose-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col {
    position: relative;
}

.footer-col .footer-logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(201, 149, 107, 0.2));
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: var(--rose-gold);
    padding-left: 5px;
}

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col .contact-item .icon {
    color: var(--rose-gold);
    font-size: 1rem;
}

/* Privacy Band */
.privacy-band {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2rem 0;
}

.privacy-band .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.privacy-band .lock-icon {
    color: var(--rose-gold);
    font-size: 1.5rem;
}

.privacy-band .privacy-title {
    color: var(--rose-gold);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.privacy-band p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 500px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   Products Page Filter
   ============================================ */
.products-page {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.filter-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.filter-top-row .filter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-top-row .filter-title i {
    color: var(--rose-gold);
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-right .product-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-categories a {
    padding: 0.55rem 1.3rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-categories a:hover {
    background: rgba(201, 149, 107, 0.08);
    border-color: var(--border-rose);
    color: var(--rose-gold);
}

.filter-categories a.active {
    background: var(--rose-gold-gradient);
    border-color: transparent;
    color: #000;
    font-weight: 700;
}

.sort-select {
    padding: 0.55rem 1.2rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9956b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px var(--rose-gold-glow);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.pagination a:hover {
    border-color: var(--border-rose);
    color: var(--rose-gold);
}

.pagination .active {
    background: var(--rose-gold-gradient);
    color: #000;
    border-color: transparent;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-rose);
    box-shadow: var(--shadow-glow);
}

.contact-info-card .icon-box {
    width: 55px;
    height: 55px;
    background: var(--rose-gold-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--rose-gold);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

/* ============================================
   Static Page Content
   ============================================ */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.page-content h2 {
    color: var(--rose-gold);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.page-content h3 {
    color: var(--rose-gold-light);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.page-content strong {
    color: var(--text-primary);
}

/* ============================================
   Success Page
   ============================================ */
.success-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    text-align: center;
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-xl);
    max-width: 550px;
    width: 100%;
    box-shadow: var(--shadow-glow);
}

.success-card .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-card h1 {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.success-card .order-number {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--rose-gold-glow);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-md);
    color: var(--rose-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   Notification Toast (Premium)
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 1rem 1.5rem;
    padding-right: 2.5rem;
    background: rgba(18, 18, 22, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.9rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

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

.toast.toast-out {
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.toast-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.toast.toast-success .toast-icon-wrap {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.toast.toast-error .toast-icon-wrap {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.toast.toast-warning .toast-icon-wrap {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.toast.toast-info .toast-icon-wrap {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 0.1rem;
}

.toast-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.toast-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.2rem;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    animation: toastProgress 3s linear forwards;
}

.toast.toast-success .toast-progress { background: #2ecc71; }
.toast.toast-error .toast-progress { background: #e74c3c; }
.toast.toast-warning .toast-progress { background: #f39c12; }
.toast.toast-info .toast-progress { background: #3498db; }

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Toast Confirm Actions */
.toast-confirm .toast-progress { display: none; }

.toast-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.toast-btn {
    padding: 0.4rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.toast-btn-confirm {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.toast-btn-confirm:hover {
    background: rgba(231, 76, 60, 0.35);
}

.toast-btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.toast-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    z-index: 9998;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-inner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    flex: 1;
}

.cookie-inner .btn-cookie {
    padding: 0.6rem 1.5rem;
    background: var(--rose-gold-gradient);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Keyframes
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ============================================
   Alert Messages
   ============================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--success);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--danger);
}

.alert-warning {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: var(--warning);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    color: var(--info);
}

/* ============================================
   Delete button / danger actions
   ============================================ */
.btn-delete {
    padding: 0.4rem 0.8rem;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--danger);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-delete:hover {
    background: var(--danger);
    color: #fff;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { position: static; }
    .checkout-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 4rem 0; }

    .container { padding: 0 1rem; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        transition: var(--transition);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    /* Mobile menüde cart ve user link düzeni */
    .nav-menu .nav-user-link {
        width: 100%;
        height: auto;
        padding: 0.75rem 1rem !important;
        justify-content: flex-start;
        border-bottom: 1px solid var(--border-subtle);
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-subtle);
        background: transparent;
    }

    .nav-menu .cart-icon {
        width: 100%;
        height: auto;
        padding: 0.75rem 1rem !important;
        justify-content: flex-start;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-subtle);
        background: transparent;
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .nav-menu .cart-icon::before {
        content: 'Sepetim';
        margin-left: 0.5rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-primary);
    }

    .cart-badge {
        position: static;
        margin-left: 0.5rem;
    }

    .hero-section { min-height: 500px; }
    .hero-content h1 { font-size: 1.8rem; line-height: 1.3; }
    .hero-content p { font-size: 0.95rem; }

    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.85rem; }

    .features-band { padding: 2rem 1rem; }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .feature-item { padding: 1rem; gap: 0.75rem; }
    .feature-icon { width: 40px; height: 40px; font-size: 1rem; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-card { height: 150px; }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card .card-body { padding: 1rem; }
    .product-card .card-body h3 { font-size: 0.85rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 0.75rem; padding: 0 1.5rem 1.5rem; }
    .footer-col h4 { margin-bottom: 0.75rem; }
    .footer-col ul li { margin-bottom: 0.4rem; }
    .footer-col p { text-align: left; }
    .footer-col .footer-logo { max-width: 200px; margin-bottom: 1rem; }
    .main-footer { padding-top: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }

    .filter-bar { padding: 1rem; gap: 1rem; }
    .filter-top-row { flex-direction: column; align-items: stretch; gap: 1rem; }
    .filter-right { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .filter-right .product-count { text-align: center; }
    .sort-select { width: 100%; max-width: 100%; }
    .filter-categories { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; gap: 0.5rem; }
    .filter-categories a { white-space: nowrap; flex-shrink: 0; padding: 0.5rem 1rem; font-size: 0.8rem; }

    /* Mobile Cart Table as Cards */
    .cart-table { display: block; }
    .cart-table thead { display: none; }
    .cart-table tbody { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
    .cart-table tr { 
        display: grid; 
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        background: var(--bg-card); 
        padding: 1.25rem; 
        border-radius: var(--radius-md); 
        border: 1px solid var(--border-subtle); 
        position: relative;
    }
    .cart-table td { padding: 0 !important; border: none !important; display: flex; align-items: center; }
    
    /* Ürün Bilgisi */
    .cart-table td:nth-child(1) { grid-column: 1 / -1; margin-bottom: 0.5rem; padding-right: 2rem !important; }
    .cart-product-info img { width: 60px; height: 60px; }
    
    /* Fiyat */
    .cart-table td:nth-child(2) { grid-column: 1; grid-row: 2; font-size: 0.95rem; }
    
    /* Adet */
    .cart-table td:nth-child(3) { grid-column: 2; grid-row: 2; justify-content: flex-end; }
    .cart-table td:nth-child(3) .quantity-selector { margin: 0; }
    
    /* Toplam */
    .cart-table td:nth-child(4) { grid-column: 1 / -1; grid-row: 3; justify-content: space-between; border-top: 1px solid rgba(201,149,107,0.2) !important; padding-top: 0.75rem !important; margin-top: 0.5rem; font-size: 1.1rem; }
    .cart-table td:nth-child(4)::before { content: 'Ara Toplam:'; color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; font-family: 'Plus Jakarta Sans', sans-serif; }
    
    /* Sil Butonu */
    .cart-table td:nth-child(5) { position: absolute; top: 1rem; right: 1rem; }

    .age-modal { padding: 1.5rem; }
    .age-modal h2 { font-size: 1.3rem; }
    .age-modal-buttons { flex-direction: column; }

    .form-row { grid-template-columns: 1fr; }
    .detail-features { grid-template-columns: 1fr; }

    .quantity-cart-row { flex-direction: column; }

    .product-detail-info h1 { font-size: 1.5rem; }
    .product-detail-info .price-current { font-size: 1.6rem; }

    .page-header { padding: 7rem 0 2.5rem; }
    .page-header h1 { font-size: 1.8rem; }

    .cookie-inner { flex-direction: column; text-align: center; gap: 1rem; }

    /* Toast mobile */
    .toast-container { left: 1rem; right: 1rem; bottom: 1rem; }
    .toast { min-width: auto; max-width: 100%; }

    /* Auth mobile */
    .auth-section { padding-top: 100px; }
    .auth-card { padding: 1.5rem; margin: 0 0.5rem; }
    .auth-form-row { grid-template-columns: 1fr; }

    /* Account mobile */
    .account-section { padding-top: 100px; }
    .account-header { flex-direction: column; text-align: center; }
    .account-tabs { overflow-x: auto; gap: 0; }
    .account-tab { padding: 0.6rem 1rem; font-size: 0.8rem; white-space: nowrap; }
    .tracking-timeline { flex-wrap: wrap; gap: 0.5rem; }
    .timeline-line { width: 25px; }
    .profile-grid { grid-template-columns: 1fr; }
    .order-card-body { flex-direction: column; gap: 0.75rem; }
    .order-detail-card { padding: 1.5rem; }

    /* Kargo takip mobile */
    .kargo-takip-box { flex-direction: column; text-align: center; }
    .tracking-form { flex-direction: column; align-items: stretch; }
    .tracking-form .btn-primary { width: 100%; }

    /* Video Intro Mobile */
    .video-intro video { object-fit: contain; }
}

@media (max-width: 480px) {
    .container { padding: 0 0.75rem; }

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

    .hero-section { min-height: 400px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.85rem; }
    .hero-content .btn-primary { font-size: 0.85rem; padding: 0.7rem 1.5rem; }

    .section-title { font-size: 1.3rem; }

    .main-header .container { padding: 0 0.75rem; }
    .header-logo img { height: 80px; }

    .page-header { padding: 6rem 0 2rem; }
    .page-header h1 { font-size: 1.5rem; }

    .product-detail-info h1 { font-size: 1.3rem; }

    .checkout-grid { gap: 1rem; }
    .glass-card { padding: 1.5rem !important; }

    .footer { padding: 3rem 0 1.5rem; }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-gold);
}

/* ============================================
   Auth Pages (Login / Register)
   ============================================ */
.auth-section {
    padding-top: 140px;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .auth-icon {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    display: block;
}

.auth-header h1 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-form-group {
    margin-bottom: 1.25rem;
}

.auth-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-form-group label .required {
    color: var(--danger);
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.auth-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--rose-gold);
    font-weight: 600;
}

/* Nav User Link */
.nav-user-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.2rem !important;
    height: 42px;
    background: rgba(201, 149, 107, 0.08);
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.nav-user-link::after { display: none !important; }

.nav-user-link:hover {
    background: rgba(201, 149, 107, 0.15);
}

/* ============================================
   My Account Page
   ============================================ */
.account-section {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.account-avatar {
    font-size: 3.5rem;
    color: var(--rose-gold);
}

.account-header h1 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
}

.account-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.account-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0;
}

.account-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.account-tab:hover {
    color: var(--rose-gold-light);
}

.account-tab.active {
    color: var(--rose-gold);
    border-bottom-color: var(--rose-gold);
}

.account-content {
    min-height: 300px;
}

/* Empty State */
.empty-state-account {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-account > i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state-account h3 {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.empty-state-account p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Order Cards */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    display: block;
    padding: 1.5rem;
    transition: var(--transition);
    color: inherit;
}

.order-card:hover {
    transform: translateY(-2px);
    color: inherit;
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.order-no {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-right: 1rem;
}

.order-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.order-card-body {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-info-item .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.order-info-item .value {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.order-card-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    text-align: right;
}

.order-card-footer span {
    color: var(--rose-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--rose-gold);
}

/* Order Detail */
.order-detail-card {
    padding: 2.5rem;
}

.order-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-detail-header h2 {
    font-size: 1.3rem;
    color: var(--rose-gold);
}

/* Tracking Form */
.tracking-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tracking-form .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.tracking-form .btn-primary {
    white-space: nowrap;
    padding: 1rem 2rem;
}

/* Tracking Timeline */
.tracking-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.timeline-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.timeline-step.completed .timeline-dot {
    background: var(--rose-gold-gradient);
    border-color: transparent;
    color: #000;
}

.timeline-step span {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
}

.timeline-step.completed span {
    color: var(--rose-gold);
}

.timeline-line {
    width: 60px;
    height: 2px;
    background: var(--border-subtle);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.timeline-line.completed {
    background: var(--rose-gold);
}

/* Kargo Takip Box */
.kargo-takip-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.kargo-takip-box > i {
    font-size: 1.5rem;
    color: var(--info);
}

.kargo-takip-box .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kargo-takip-box strong {
    color: var(--info);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

/* Order Products */
.order-products {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.order-products h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.order-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.order-product-item .name {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.order-product-item .qty {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.order-product-item .price {
    color: var(--rose-gold);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.order-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ============================================
   Responsive / Mobile
   ============================================ */
@media (max-width: 768px) {
    /* Age Verification Modal */
    .age-modal {
        padding: 2rem 1.5rem;
        width: 92%;
        max-height: 90vh;
        border-radius: var(--radius-lg);
    }

    .age-modal .modal-logo {
        max-width: 240px;
        margin-bottom: 1.5rem;
    }

    .age-modal .age-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .age-modal h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .age-modal p {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .age-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .age-modal-buttons .btn-confirm,
    .age-modal-buttons .btn-deny {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .age-modal .legal-notice {
        font-size: 0.7rem;
        margin-top: 1rem;
    }

    /* Header */
    .header-inner {
        padding: 0 1rem;
    }

    .header-logo img {
        height: 100px;
    }

    .main-header.scrolled .header-logo img {
        height: 85px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
        font-size: 1.05rem;
        text-align: left;
    }

    .nav-menu a:first-child {
        border-top: 1px solid var(--border-subtle);
    }

    /* Giriş / Kullanıcı linki - ikon sağda */
    .nav-menu .nav-user-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 1rem 0 !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: left;
        color: var(--rose-gold);
        font-weight: 600;
    }

    .nav-menu .nav-user-link i {
        display: none;
    }

    /* Header'daki sepet ikonu mobilde gizle */
    .cart-icon {
        display: none !important;
    }

    /* Sepetim linki - menüde düz metin olarak */
    .nav-cart-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
        font-size: 1.05rem;
        text-align: left;
        color: var(--text-primary) !important;
        font-weight: 500;
    }

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

    /* Hero */
    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col:first-child {
        position: relative;
        padding-top: 0;
    }

    .footer-col .footer-logo {
        position: static;
        max-width: 200px;
        margin-bottom: 1rem;
    }

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

@media (max-width: 480px) {
    .age-modal {
        padding: 1.5rem 1.2rem;
        width: 95%;
    }

    .age-modal .modal-logo {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .age-modal .age-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .age-modal h2 {
        font-size: 1.2rem;
    }

    .age-modal p {
        font-size: 0.82rem;
    }

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

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

    .hero-content h1 {
        font-size: 1.6rem;
    }
}
