
/* --- HUMBLE HUNGER ROYAL BLUE FLORAL THEME --- */
:root {
    --bg-main: #0c1b33;          /* Royal Deep Blue */
    --bg-card: rgba(18, 38, 71, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(220, 178, 107, 0.35);
    --border-glass: rgba(255, 255, 255, 0.12);
    
    --accent-gold: #e5c178;       /* Luxe Metallic Gold */
    --accent-pink: #f4b2b0;       /* Soft Blush Floral Pink */
    --accent-glow: rgba(229, 193, 120, 0.25);
    
    --text-primary: #ffffff;
    --text-secondary: #c9d6e8;
    --text-muted: #8ea4c4;
    
    --font-logo: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-luxe: 0 15px 35px rgba(4, 10, 22, 0.6);
}

body {
    background-color: var(--bg-main);
    /* Decorative SVG Floral Pattern Background Overlay */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 178, 176, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(229, 193, 120, 0.08) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0C42 20 60 38 80 40C60 42 42 60 40 80C38 60 20 42 0 40C20 38 38 20 40 0Z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
    font-family: var(--font-body);
    color: var(--text-primary);
    margin: 0;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #1a335a; border-radius: 10px; border: 1px solid var(--border-gold); }

/* --- BRAND LOGO BAR --- */
.brand-hero-bar {
    max-width: 1400px;
    margin: 25px auto 10px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

/* Dynamic Floral SVG Ring behind Logo */
.brand-logo-container::before {
    content: '🌸';
    position: absolute;
    top: -10px;
    font-size: 20px;
    opacity: 0.8;
}

.brand-logo {
    font-family: var(--font-logo);
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.brand-tagline {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    color: var(--accent-pink);
    letter-spacing: 3px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* --- BANNER CAROUSEL --- */
.banner-carousel {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 25px auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-luxe);
    border: 1px solid var(--border-gold);
}

.banner-scroll-wrapper {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
}

.banner-item {
    flex: 0 0 100%;
    width: 100%;
    height: 480px;
    position: relative;
    scroll-snap-align: start;
    contain: layout paint;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    display: block;
}


.banner-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(12, 27, 51, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    max-width: 500px;
    box-shadow: var(--shadow-luxe);
}

.banner-overlay h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--accent-gold);
}

.banner-nav-buttons {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-btn {
    background: rgba(18, 38, 71, 0.8);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- MAIN LAYOUT --- */
.shop-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px; 
    padding: 0 20px;
    gap: 30px;
}

/* SIDEBAR CATEGORIES */
.sidebar {
    width: 270px;
    flex-shrink: 0;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: var(--shadow-luxe);
}

.sidebar h3 { 
    font-family: var(--font-serif);
    font-size: 18px; 
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin: 0 0 20px 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar a { 
    display: flex;
    align-items: center;
    padding: 12px 18px; 
    color: var(--text-secondary); 
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar a:hover { 
    color: var(--accent-pink); 
    background: var(--bg-glass);
    border-color: rgba(244, 178, 176, 0.2);
}

.sidebar a.active { 
    color: var(--bg-main); 
    background: linear-gradient(135deg, var(--accent-gold), #c99e4d); 
    font-weight: 700;
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* PRODUCT GRID */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* PRODUCT CARD */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-glass);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxe);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
}

.badge-discount {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--accent-pink), #d88987);
    color: #3d0c0a;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-card-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #081224;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.price-current {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 22px;
    color: var(--accent-gold);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.btn-add-cart {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
}

.product-card:hover .btn-add-cart {
    background: linear-gradient(135deg, var(--accent-gold), #c99e4d);
    color: var(--bg-main);
    font-weight: 700;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    padding: 80px 20px;
    background: var(--bg-card);
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-gold);
    color: var(--text-muted);
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .brand-logo { font-size: 28px; }
    .banner-carousel { border-radius: var(--radius-md); width: calc(100% - 30px); margin-top: 15px; }
    .banner-item { height: 300px; }
    .banner-overlay { bottom: 20px; left: 20px; padding: 16px 20px; max-width: 70%; }
    .banner-overlay h3 { font-size: 20px; }
    
    .shop-wrapper { flex-direction: column; gap: 20px; padding: 0 15px; }
    .sidebar { width: 100%; position: static; padding: 0; background: transparent; border: none; box-shadow: none; }
    .sidebar h3 { display: none; }
    .sidebar nav { flex-direction: row; overflow-x: auto; gap: 10px; padding-bottom: 10px; scrollbar-width: none; }
    .sidebar nav::-webkit-scrollbar { display: none; }
    .sidebar a { background: var(--bg-card); white-space: nowrap; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border-gold); }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-img-wrap { height: 200px; }
}

@media (max-width: 480px) {
    .banner-item { height: 220px; }
    .banner-overlay { display: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-img-wrap { height: 170px; }
    .product-info { padding: 12px; }
    .product-info h3 { font-size: 14px; height: 36px; }
    .price-current { font-size: 18px; }
    .btn-add-cart { padding: 8px; font-size: 11px; }
}

]*>.*?