/* ============================================================
   BRANDLOBBY DESIGN SYSTEM
   Premium Luxury Ecommerce Stylesheet
   ============================================================ */

/* CSS Custom Properties */
:root {
    /* Background Colors */
    --bg-cream: #FFF8F2;
    --bg-warm-white: #FDFBF8;
    --bg-white: #FFFFFF;

    /* Primary Colors */
    --blush-pink: #F8C8DC;
    --baby-pink: #F4B8CC;
    --cotton-candy: #FF8DB8;
    --lavender: #DCCCFD;
    --lilac: #C7A7F5;
    --soft-peach: #FFDCC8;

    /* CTA Colors */
    --rose-pink: #FF5FA2;
    --bubblegum-pink: #FF78B4;
    --soft-coral: #FF8E72;
    --peach-coral: #FFA88A;

    /* Trust Colors */
    --sage-green: #D8E7D2;
    --mint-sage: #CFECC7;
    --soft-green: #BEE5B0;

    /* Text Colors */
    --text-primary: #2F2A35;
    --text-secondary: #6D5A5A;
    --text-muted: #9C9098;
    --text-white: #FFFFFF;

    /* Accent Colors */
    --gold: #F6C86B;
    --soft-gold: #E8B85A;
    --pale-purple: #B894F8;
    --gift-pink: #F7B7D2;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-decorative: 'The Seasons Script', cursive;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(47, 42, 53, 0.04);
    --shadow-md: 0 4px 16px rgba(47, 42, 53, 0.06);
    --shadow-lg: 0 8px 32px rgba(47, 42, 53, 0.08);
    --shadow-xl: 0 16px 48px rgba(47, 42, 53, 0.12);
    --shadow-card: 0 2px 20px rgba(47, 42, 53, 0.06);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 80px;
    --announcement-height: 40px;
    --container-max: 1280px;
    --container-padding: 20px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--rose-pink); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================
   ANNOUNCEMENT BAR
   ======================== */
.announcement-bar {
    background: var(--rose-pink);
    color: var(--text-white);
    text-align: center;
    padding: 10px var(--container-padding);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.announcement-text {
    margin: 0;
}

/* ========================
   HEADER
   ======================== */
.site-header {
    position: sticky;
    top: var(--announcement-height);
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(47, 42, 53, 0.06);
    z-index: 1000;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-lg);
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: color var(--transition-fast);
}

.logo:hover .logo-text {
    color: var(--rose-pink);
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
}

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.06);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    border: 1px solid rgba(47, 42, 53, 0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.04);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.header-action-btn:hover {
    background: rgba(255, 95, 162, 0.08);
    color: var(--rose-pink);
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--rose-pink);
    color: var(--text-white);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ========================
   SEARCH OVERLAY
   ======================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 640px;
    padding: 0 var(--container-padding);
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    background: var(--bg-white);
    border: 2px solid rgba(47, 42, 53, 0.1);
    border-radius: var(--radius-lg);
    outline: none;
    transition: all var(--transition-base);
}

.search-input:focus {
    border-color: var(--rose-pink);
    box-shadow: 0 0 0 4px rgba(255, 95, 162, 0.08);
}

.search-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.125rem;
}

.search-close {
    position: absolute;
    top: 16px;
    right: calc(var(--container-padding) + 8px);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 8px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.search-close:hover {
    color: var(--text-primary);
    background: rgba(47, 42, 53, 0.06);
}

.search-results {
    margin-top: var(--space-md);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
}

/* ========================
   MOBILE MENU
   ======================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-warm-white);
    z-index: 3000;
    transition: right var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--container-padding);
    border-bottom: 1px solid rgba(47, 42, 53, 0.06);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(47, 42, 53, 0.06);
}

.mobile-nav {
    padding: var(--space-md) 0;
}

.mobile-nav-link {
    display: block;
    padding: 16px var(--container-padding);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(47, 42, 53, 0.04);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.04);
    padding-left: calc(var(--container-padding) + 8px);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(47, 42, 53, 0.08);
    margin: var(--space-md) var(--container-padding);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 42, 53, 0.4);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.2;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--rose-pink);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(255, 95, 162, 0.25);
}

.btn-primary:hover {
    background: var(--bubblegum-pink);
    box-shadow: 0 6px 24px rgba(255, 95, 162, 0.35);
    transform: translateY(-1px);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(47, 42, 53, 0.15);
}

.btn-secondary:hover {
    border-color: var(--rose-pink);
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.04);
}

.btn-outline {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid rgba(47, 42, 53, 0.12);
}

.btn-outline:hover {
    border-color: var(--rose-pink);
    color: var(--rose-pink);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled,
.btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--blush-pink) 30%, var(--lavender) 70%, var(--bg-cream) 100%);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 85vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.75) 0%, rgba(248, 200, 220, 0.55) 50%, rgba(220, 204, 253, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-slide.active .hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-pink);
    margin-bottom: var(--space-md);
    padding: 6px 16px;
    background: rgba(255, 95, 162, 0.08);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Hero Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(47, 42, 53, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.slider-dot.active {
    background: var(--rose-pink);
    width: 28px;
    border-radius: 5px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    border: 1px solid rgba(47, 42, 53, 0.08);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    opacity: 0;
}

.hero-section:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--rose-pink);
    color: var(--text-white);
    border-color: var(--rose-pink);
}

.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

@media (max-width: 768px) {
    .slider-arrow { display: none; }
    .hero-section { min-height: 70vh; }
    .hero-slider { min-height: 70vh; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ========================
   SECTION STYLES
   ======================== */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-pink);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

/* Section Backgrounds */
.section-cream { background: var(--bg-cream); }
.section-warm { background: var(--bg-warm-white); }
.section-blush { background: linear-gradient(180deg, var(--blush-pink) 0%, var(--bg-warm-white) 100%); }
.section-lavender { background: linear-gradient(180deg, var(--lavender) 0%, var(--bg-warm-white) 100%); }
.section-sage { background: linear-gradient(180deg, var(--sage-green) 0%, var(--bg-warm-white) 100%); }

/* ========================
   FEATURED CATEGORIES
   ======================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-image {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(transparent, rgba(47, 42, 53, 0.6));
    color: var(--text-white);
}

.category-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-white);
}

.category-card-count {
    font-size: 0.8125rem;
    opacity: 0.8;
}

/* Category Card Colors */
.category-card:nth-child(1) { background: var(--blush-pink); }
.category-card:nth-child(2) { background: var(--lavender); }
.category-card:nth-child(3) { background: var(--soft-peach); }
.category-card:nth-child(4) { background: var(--sage-green); }

/* ========================
   PRODUCT CARDS
   ======================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(47, 42, 53, 0.04);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.product-card-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-cream);
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image {
    transform: scale(1.04);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    line-height: 1.3;
}

.badge-sale {
    background: var(--rose-pink);
    color: var(--text-white);
}

.badge-new {
    background: var(--sage-green);
    color: var(--text-primary);
}

.badge-bestseller {
    background: var(--gold);
    color: var(--text-primary);
}

.badge-soldout {
    background: var(--text-muted);
    color: var(--text-white);
}

.badge-used {
    background: var(--lavender);
    color: var(--text-primary);
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: 2;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    border: 1px solid rgba(47, 42, 53, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.quick-action-btn:hover {
    background: var(--rose-pink);
    color: var(--text-white);
    border-color: var(--rose-pink);
}

.product-card-body {
    padding: var(--space-md);
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-card-title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.product-card-title a:hover {
    color: var(--rose-pink);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-current {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.price-original {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-sale {
    color: var(--rose-pink);
}

/* Add to Cart Button on Card */
.product-card .btn-add-to-cart {
    width: 100%;
    margin-top: var(--space-sm);
    padding: 10px;
    font-size: 0.8125rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.product-card:hover .btn-add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   BEST SELLERS / FEATURED SECTIONS
   ======================== */
.featured-products {
    padding: var(--space-4xl) 0;
}

/* ========================
   TRUST SECTION
   ======================== */
.trust-section {
    background: var(--sage-green);
    padding: var(--space-3xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    padding: var(--space-lg);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-pink);
}

.trust-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================
   BRAND STORY / ABOUT
   ======================== */
.about-section {
    padding: var(--space-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-label {
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    margin-bottom: var(--space-lg);
    text-align: left;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--lavender) 50%, var(--soft-peach) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ========================
   NEWSLETTER
   ======================== */
.newsletter-section {
    background: var(--bg-cream);
    padding: var(--space-3xl) 0;
}

.newsletter-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .newsletter-wrapper {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.newsletter-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.newsletter-subtitle {
    color: var(--text-secondary);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.newsletter-input-group:focus-within {
    border-color: var(--rose-pink);
    box-shadow: 0 0 0 4px rgba(255, 95, 162, 0.06);
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    min-width: 240px;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    border-radius: 0;
    box-shadow: none;
}

.newsletter-btn:hover {
    box-shadow: none;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background: var(--bg-warm-white);
    border-top: 1px solid rgba(47, 42, 53, 0.06);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-col-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(47, 42, 53, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--rose-pink);
    color: var(--text-white);
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--rose-pink);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(47, 42, 53, 0.06);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-payment {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
    padding: var(--space-md) 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--rose-pink);
}

.breadcrumb span {
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--text-primary);
}

/* ========================
   SHOP PAGE
   ======================== */
.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .shop-layout {
        grid-template-columns: 260px 1fr;
    }
}

.shop-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

.filter-group {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(47, 42, 53, 0.06);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: var(--space-sm);
}

.filter-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.filter-link:hover,
.filter-link.active {
    color: var(--rose-pink);
}

.filter-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(47, 42, 53, 0.06);
}

.shop-results-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shop-sort {
    padding: 10px 16px;
    border: 1px solid rgba(47, 42, 53, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-primary);
    background: var(--bg-white);
    cursor: pointer;
    outline: none;
}

/* ========================
   PRODUCT PAGE
   ======================== */
.product-detail {
    padding: var(--space-2xl) 0;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-cream);
    margin-bottom: var(--space-md);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.product-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.video-thumbnail {
    position: relative;
}
.video-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.product-thumbnail.active {
    border-color: var(--rose-pink);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-left: 0;
}

@media (min-width: 1024px) {
    .product-info {
        padding-left: var(--space-2xl);
    }
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.product-category-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rose-pink);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.product-price-large {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-price-large .price-current {
    font-size: 1.75rem;
}

.product-price-large .price-original {
    font-size: 1.125rem;
}

.product-short-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* Variant Selector */
.variant-selector {
    margin-bottom: var(--space-xl);
}

.variant-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.variant-option {
    padding: 10px 20px;
    border: 2px solid rgba(47, 42, 53, 0.12);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.variant-option:hover {
    border-color: var(--rose-pink);
}

.variant-option.active {
    border-color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.06);
    color: var(--rose-pink);
}

.variant-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(47, 42, 53, 0.12);
    background: var(--bg-white);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.quantity-btn:hover {
    border-color: var(--rose-pink);
    color: var(--rose-pink);
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid rgba(47, 42, 53, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
}

.quantity-input:focus {
    border-color: var(--rose-pink);
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
}

.stock-in-stock {
    color: var(--soft-green);
}

.stock-in-stock .stock-dot {
    background: var(--soft-green);
}

.stock-low {
    color: var(--gold);
}

.stock-low .stock-dot {
    background: var(--gold);
}

.stock-out {
    color: var(--rose-pink);
}

.stock-out .stock-dot {
    background: var(--rose-pink);
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-actions-row {
    display: flex;
    gap: var(--space-sm);
}

/* Product Tabs */
.product-tabs {
    margin-top: var(--space-3xl);
    border-top: 1px solid rgba(47, 42, 53, 0.08);
    padding-top: var(--space-2xl);
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(47, 42, 53, 0.06);
    margin-bottom: var(--space-xl);
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--rose-pink);
    border-bottom-color: var(--rose-pink);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ========================
   CART PAGE
   ======================== */
.cart-page {
    padding: var(--space-2xl) 0;
    min-height: 50vh;
}

.cart-empty {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.3;
}

.cart-empty-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.cart-empty-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
    }
}

.cart-items {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(47, 42, 53, 0.04);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    min-width: 0;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.cart-item-variant {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.cart-item-price {
    font-weight: 600;
    color: var(--rose-pink);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.08);
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    padding: var(--space-xl);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cart-summary-row.total {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-top: var(--space-md);
    border-top: 2px solid rgba(47, 42, 53, 0.08);
    margin-top: var(--space-md);
}

.free-shipping-note {
    color: var(--soft-green);
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
}

/* ========================
   CHECKOUT PAGE
   ======================== */
.checkout-page {
    padding: var(--space-2xl) 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr 400px;
    }
}

.checkout-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.form-label .required {
    color: var(--rose-pink);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(47, 42, 53, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-white);
    outline: none;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--rose-pink);
    box-shadow: 0 0 0 4px rgba(255, 95, 162, 0.06);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239C9098' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
    .form-row-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 16px;
    border: 2px solid rgba(47, 42, 53, 0.12);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.radio-option:hover {
    border-color: var(--rose-pink);
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: var(--rose-pink);
}

.radio-option:has(input:checked) {
    border-color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.04);
}

.radio-option input[type="radio"] {
    accent-color: var(--rose-pink);
    width: 18px;
    height: 18px;
}

.radio-content {
    flex: 1;
}

.radio-label {
    font-weight: 500;
    font-size: 0.9375rem;
    display: block;
}

.radio-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-page {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card {
    background: linear-gradient(135deg, var(--blush-pink), var(--lavender));
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rose-pink);
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.contact-info-value {
    font-weight: 500;
    color: var(--text-primary);
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.alert-success {
    background: var(--sage-green);
    color: var(--text-primary);
    border: 1px solid var(--soft-green);
}

.alert-error {
    background: rgba(255, 95, 162, 0.08);
    color: var(--rose-pink);
    border: 1px solid rgba(255, 95, 162, 0.2);
}

.alert-info {
    background: rgba(220, 204, 253, 0.2);
    color: var(--text-primary);
    border: 1px solid var(--lavender);
}

/* ========================
   LOGIN / REGISTER
   ======================== */
.auth-page {
    padding: var(--space-3xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    padding: var(--space-2xl);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.auth-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--space-xs);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.auth-link {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.auth-link a {
    color: var(--rose-pink);
    font-weight: 500;
}

/* ========================
   ACCOUNT DASHBOARD
   ======================== */
.account-page {
    padding: var(--space-2xl) 0;
    min-height: 50vh;
}

.account-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .account-layout {
        grid-template-columns: 250px 1fr;
    }
}

.account-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    overflow: hidden;
    height: fit-content;
}

.account-nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(47, 42, 53, 0.04);
    transition: all var(--transition-fast);
}

.account-nav-link:hover,
.account-nav-link.active {
    color: var(--rose-pink);
    background: rgba(255, 95, 162, 0.04);
}

.account-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    padding: var(--space-xl);
}

/* Order Table */
.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(47, 42, 53, 0.04);
    font-size: 0.9375rem;
}

.order-table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: rgba(246, 200, 107, 0.2); color: #b8860b; }
.status-confirmed { background: rgba(190, 229, 176, 0.3); color: #2d6a1e; }
.status-processing { background: rgba(184, 148, 248, 0.2); color: #6b21a8; }
.status-shipped { background: rgba(200, 180, 253, 0.3); color: #4c1d95; }
.status-delivered { background: rgba(207, 236, 199, 0.4); color: #166534; }
.status-cancelled { background: rgba(255, 95, 162, 0.1); color: #be185d; }

/* ========================
   POLICY PAGE
   ======================== */
.policy-page {
    padding: var(--space-2xl) 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 42, 53, 0.04);
    padding: var(--space-2xl);
}

.policy-content h1 {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

/* ========================
   PAGINATION
   ======================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(47, 42, 53, 0.08);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    background: var(--rose-pink);
    color: var(--text-white);
    border-color: var(--rose-pink);
}

.page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ========================
   404 PAGE
   ======================== */
.not-found-page {
    padding: var(--space-4xl) 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    color: var(--blush-pink);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.not-found-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.not-found-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ========================
   UTILITIES
   ======================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-success { border-left: 4px solid var(--soft-green); }
.toast-error { border-left: 4px solid var(--rose-pink); }
.toast-info { border-left: 4px solid var(--lavender); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --space-4xl: 64px;
        --space-3xl: 48px;
    }

    .product-card .btn-add-to-cart {
        opacity: 1;
        transform: none;
    }

    .product-quick-actions {
        opacity: 1;
        transform: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .product-card-body {
        padding: var(--space-sm);
    }

    .product-card-title {
        font-size: 0.875rem;
    }
}

/* ========================
   PRINT STYLES (Invoice)
   ======================== */
@media print {
    .site-header,
    .announcement-bar,
    .site-footer,
    .newsletter-section,
    .mobile-menu,
    .search-overlay,
    .btn,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}