/* 
   YOUR POWER Premium Supplements Store
   Main Design System Stylesheet - Light Organic Wellness Theme
*/

:root {
    --bg-dark: #fcfaf7;          /* Warm organic cream off-white */
    --bg-card: #ffffff;          /* Pure white card backgrounds */
    --bg-input: #ffffff;
    
    --accent-neon: #bc7f78;       /* Primary: Dusty Rose Gold / Copper */
    --accent-neon-glow: rgba(188, 127, 120, 0.15);
    --accent-neon-muted: #9e6059;
    
    --accent-orange: #cfa05d;     /* Secondary Accent: Warm Ochre Gold */
    --accent-orange-glow: rgba(207, 160, 93, 0.15);
    
    --text-light: #2d2622;        /* Dark espresso/charcoal for premium readability */
    --text-muted: #786f67;        /* Soft earthy grey for secondary details */
    --border-color: #ede4da;      /* Very soft warm beige separators */
    --border-glow: rgba(188, 127, 120, 0.18);
    
    --shadow-premium: 0 12px 30px rgba(60, 53, 48, 0.05);
    --shadow-hover: 0 20px 40px rgba(60, 53, 48, 0.1);
    
    --danger: #9a3346;            /* Premium dark rose/burgundy for alerts */
    --success-sage: #738e55;      /* Organic Sage Green matching the leaves */
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Global Reset & Scrollbars ─────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 5% 15%, rgba(188, 127, 120, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 95% 85%, rgba(207, 160, 93, 0.04) 0%, transparent 45%);
    background-attachment: fixed;
}

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

input, select, textarea, button {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f7f3ed;
}
::-webkit-scrollbar-thumb {
    background: #dcd3c9;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-neon);
}

/* ─── Layout Container ───────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Header & Navigation ────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    background: rgba(252, 250, 247, 0.98);
    box-shadow: 0 10px 30px rgba(60, 53, 48, 0.04);
}

.header-top {
    background: #eae2da;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

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

.header-contact span {
    margin-right: 1.25rem;
    color: var(--text-light);
}

.header-contact span strong {
    color: var(--accent-neon-muted);
}

.header-main {
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Brand logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-light);
}

.logo span {
    color: var(--accent-neon);
}

.logo svg {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(188, 127, 120, 0.15));
}

.logo-script {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.03em;
}

.logo-script span {
    color: var(--accent-neon-muted);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar form {
    display: flex;
}

.search-bar input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.2rem;
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.88rem;
    transition: var(--transition-fast);
    box-shadow: inset 0 2px 4px rgba(60, 53, 48, 0.02);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(188, 127, 120, 0.15);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
}

.search-bar button:hover {
    color: var(--accent-neon);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-icon {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
    box-shadow: 0 2px 5px rgba(60, 53, 48, 0.03);
}

.btn-icon:hover {
    background: #faf6f1;
    border-color: var(--accent-neon);
    color: var(--accent-neon-muted);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-neon);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(188, 127, 120, 0.4);
}

.main-nav {
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-list a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-list a:hover, .nav-list li.active a {
    color: var(--accent-neon-muted);
}

.header-spacer {
    height: 140px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ─── Hero Section ──────────────────────────────────── */
.hero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(188, 127, 120, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(207, 160, 93, 0.04) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(188, 127, 120, 0.08);
    border: 1px solid rgba(188, 127, 120, 0.25);
    color: var(--accent-neon-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-neon-muted) 30%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 2.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-neon-muted) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(188, 127, 120, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 127, 120, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: #ffffff;
    border-color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
}

.hero-stat .number span {
    color: var(--accent-neon-muted);
}

.hero-stat .label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-back {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(188, 127, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(60, 53, 48, 0.12));
    animation: floatAnim 5s ease-in-out infinite alternate;
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ─── Features Strip ────────────────────────────────── */
.features-strip {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: #faf6f1;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-neon-muted);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(60, 53, 48, 0.02);
}

.feature-item:hover .feature-icon {
    border-color: var(--accent-neon);
    color: #fff;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-neon-muted) 100%);
    box-shadow: 0 4px 10px var(--accent-neon-glow);
    transform: translateY(-2px);
    transition: var(--transition-fast);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    display: block;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.15rem;
}

/* ─── Sections ──────────────────────────────────────── */
.section {
    padding: 5.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-tag {
    color: var(--accent-neon-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Category Cards Grid ───────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(188, 127, 120, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.category-card:hover {
    border-color: var(--accent-neon);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

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

.cat-icon {
    width: 72px;
    height: 72px;
    background: #fdfbf9;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(60, 53, 48, 0.02);
}

.category-card:hover .cat-icon {
    border-color: var(--accent-neon);
    background: #faf6f1;
    transform: scale(1.08);
}

.cat-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--text-light);
}

.cat-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* ─── Product Card Component ────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

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

.product-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 10;
    background: var(--accent-orange);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 8px rgba(207, 160, 93, 0.3);
}

.product-badge.out-stock {
    background: #9ca3af;
    box-shadow: none;
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #faf7f4;
    border-radius: 18px;
    padding: 1rem 0.8rem;
    margin-bottom: 1.25rem;
    position: relative;
    aspect-ratio: 1;
    border: 1px solid #f3ece4;
}

.product-img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 6px 12px rgba(60, 53, 48, 0.08));
}

.product-card:hover .product-img {
    transform: scale(1.06) translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(60, 53, 48, 0.15));
}

.product-brand {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-neon-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.36rem;
}

.product-title a:hover {
    color: var(--accent-neon-muted);
}

.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.product-prices {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-light);
}

.product-compare {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-neon-muted) 100%);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px var(--accent-neon-glow);
}

.btn-add-cart:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(188, 127, 120, 0.4);
}

.btn-add-cart.out-stock {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-add-cart.out-stock:hover {
    background: #e5e7eb;
    transform: none;
}

/* ─── Promo Banner ─────────────────────────────────── */
.promo-banner-container {
    padding: 2.5rem 0;
}

.promo-banner {
    background: linear-gradient(135deg, #ffffff 0%, #faf6f1 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.promo-banner::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(188, 127, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-content {
    flex: 1;
    max-width: 600px;
}

.promo-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.promo-content h2 span {
    color: var(--accent-neon-muted);
}

.promo-content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 2.2rem;
}

/* ─── Testimonials ──────────────────────────────────── */
.bg-light-2 {
    background: #faf7f3;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.stars {
    color: #eab308;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.client-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.client-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.client-city {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── Footer Styles ─────────────────────────────────── */
.site-footer {
    background: #231d1a;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 5rem 0 2rem;
    color: #dfd8d0;
}

.site-footer .logo {
    color: #ffffff;
}

.site-footer .logo span {
    color: var(--accent-neon);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: #bcaea2;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bcaea2;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-neon);
    padding-left: 4px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bcaea2;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info-list li span:first-child {
    color: var(--accent-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: #bcaea2;
    font-size: 0.82rem;
}

.payment-badges {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #bcaea2;
    font-weight: 600;
}

/* ─── Shop & Catalog Layout ─────────────────────────── */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.sidebar-filter {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 160px;
    box-shadow: var(--shadow-premium);
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.filter-categories {
    list-style: none;
}

.filter-categories li {
    margin-bottom: 0.75rem;
}

.filter-categories a {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-categories a:hover, .filter-categories li.active a {
    color: var(--accent-neon-muted);
}

.filter-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-price-inputs input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    width: 100%;
}

.filter-price-inputs input:focus {
    outline: none;
    border-color: var(--accent-neon);
}

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

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-select select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.6rem 2.2rem 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23786f67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    min-width: 180px;
    box-shadow: var(--shadow-premium);
}

.sort-select select:focus {
    outline: none;
    border-color: var(--accent-neon);
}

.no-results {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* ─── Product Details Layout ────────────────────────── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.product-gallery {
    background: #faf7f4;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 160px;
    height: 500px;
    box-shadow: var(--shadow-premium);
}

.product-gallery svg {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 15px 35px rgba(60, 53, 48, 0.12));
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-brand {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-neon-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

.detail-compare {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.detail-discount {
    background: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
}

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

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-in {
    background: var(--success-sage);
    box-shadow: 0 0 10px rgba(115, 142, 85, 0.4);
}

.status-out {
    background: var(--danger);
}

.detail-desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.detail-purchase-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-premium);
}

.qty-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qty-label {
    font-size: 0.9rem;
    font-weight: 700;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 44px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: #faf6f1;
    color: var(--accent-neon-muted);
}

.qty-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.detail-actions .btn {
    flex: 1;
}

/* ─── Detail Tabs ───────────────────────────────────── */
.detail-tabs {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 1rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--text-light);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-neon);
    box-shadow: 0 0 8px var(--accent-neon-glow);
}

.tab-pane {
    display: none;
    line-height: 1.8;
}

.tab-pane.active {
    display: block;
    animation: fadeInTab 0.3s ease;
}

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

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.nutrition-table th, .nutrition-table td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.nutrition-table th {
    font-weight: 700;
    color: var(--accent-neon-muted);
    background: #faf6f1;
}

.nutrition-table tr:hover td {
    background: #faf8f5;
}

/* ─── Cart Page Styles ──────────────────────────────── */
.cart-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.cart-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 2fr 1fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    background: #faf6f1;
    border-radius: 12px;
    padding: 0.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.cart-item-img svg {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(60, 53, 48, 0.06));
}

.cart-item-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}

.cart-item-brand {
    font-size: 0.75rem;
    color: var(--accent-neon-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.2rem;
    height: fit-content;
    box-shadow: var(--shadow-premium);
}

.summary-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.summary-row span:last-child {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-light);
}

.summary-row.total span:last-child {
    color: var(--accent-neon-muted);
}

.cart-empty {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
}

.cart-empty-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

/* ─── Checkout Page Styles ──────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    margin-bottom: 6rem;
}

.checkout-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.checkout-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-neon-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.form-field input, .form-field select, .form-field textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(188, 127, 120, 0.1);
}

.checkout-order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    height: fit-content;
    box-shadow: var(--shadow-premium);
}

.checkout-items-list {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

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

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-info {
    display: flex;
    flex-direction: column;
}

.checkout-item-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.checkout-item-qty {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.checkout-item-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.payment-method-badge {
    background: #faf6f1;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ─── Success Page Styles ───────────────────────────── */
.success-wrapper {
    max-width: 680px;
    margin: 4rem auto 6rem;
    text-align: center;
}

.success-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-premium);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    background: rgba(115, 142, 85, 0.08);
    border: 2px solid var(--success-sage);
    color: var(--success-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(115, 142, 85, 0.2);
    animation: scaleCheckmark 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleCheckmark {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.success-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-order-details {
    background: #faf8f5;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
    font-weight: 700;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.success-actions .btn {
    flex: 1;
}

/* ─── Flash Message Notification ─────────────────────── */
.flash-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-hover);
    animation: slideInMsg 0.3s ease;
}

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

.flash-success {
    background: #ecfdf5;
    border: 1px solid var(--success-sage);
    color: #065f46;
}

.flash-danger {
    background: #fef2f2;
    border: 1px solid var(--danger);
    color: #991b1b;
}

.flash-message button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.8;
}

.flash-message button:hover {
    opacity: 1;
}

/* ─── Responsive Styles ──────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-filter {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .product-gallery {
        position: relative;
        top: 0;
        height: auto;
        padding: 3rem 1rem;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .header-top {
        display: none;
    }
    .header-spacer {
        height: 80px;
    }
    .main-nav {
        display: none; /* Can be toggled with JS */
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .promo-banner {
        padding: 2.5rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    .cart-item > *:not(.cart-item-img):not(.cart-item-title) {
        grid-column: 2;
    }
}

/* ─── Hero Carousel Slider Styles ────────────────────── */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: #faf6f1;
    border-bottom: 1px solid var(--border-color);
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(252, 250, 247, 0.95) 35%, rgba(252, 250, 247, 0.3) 100%);
    pointer-events: none;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-premium);
    font-size: 1.5rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--accent-neon);
    color: #ffffff;
    border-color: var(--accent-neon);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #dcd3c9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: var(--accent-neon);
}

/* ─── Homepage Category Tabs ────────────────────────── */
.home-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.home-tab-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
}

.home-tab-btn:hover, .home-tab-btn.active {
    border-color: var(--accent-neon);
    color: var(--text-light);
}

.home-tab-btn.active {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-neon-muted) 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px var(--accent-neon-glow);
}

/* ─── Rating Stars & Specs Pills ────────────────────── */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}

.rating-stars {
    color: #eab308;
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.spec-pill {
    background: #faf6f1;
    border: 1px solid var(--border-color);
    color: var(--accent-neon-muted);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
}

