/* ===== SHOP PAGE STYLES - LUXURY ECOMMERCE ===== */
/* Inherits base styles from styles.css */

.shop-page {
    background: #faf6f8; /* Softer, slightly warmer white for boutique feel */
}

/* Ambient BG modifications for shop */
.showroom-bg {
    background: linear-gradient(180deg, rgba(250,246,248,1) 0%, rgba(245,242,248,1) 100%);
}
.showroom-orb {
    opacity: 0.6; /* Softer orbs for editorial feel */
    filter: blur(140px);
}
.orb-1.showroom-orb { background: var(--pink); top: -20%; left: -20%; }
.orb-2.showroom-orb { background: var(--pearl); top: 10%; right: -10%; }
.orb-3.showroom-orb { background: var(--lavender); bottom: -10%; left: 30%; }

/* --- Shop Hero --- */
.shop-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 3rem 6rem;
    text-align: center;
    overflow: hidden;
    background: transparent;
}
.shop-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.shop-hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.shop-hero-title .title-line { display: inline-block; overflow: hidden; vertical-align: top;}
.shop-hero-title .title-word { display: inline-block; transform: translateY(110%); opacity: 0; }
.shop-hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* --- Search Bar --- */
.shop-search-bar {
    display: flex;
    align-items: center;
    gap: .8rem;
    position: relative;
    background: linear-gradient(180deg, rgba(255,245,250,0.5) 0%, rgba(255,220,230,0.4) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: .8rem 1.5rem;
    max-width: 480px;
    margin: 0 auto;
    transition: all 0.4s var(--ease);
    box-shadow: 
        0 15px 35px rgba(220, 150, 170, 0.2),
        inset 0 0 0 3px rgba(255, 255, 255, 0.5),
        inset 0 0 0 5px rgba(240, 170, 190, 0.5),
        inset 0 10px 15px rgba(255, 255, 255, 0.9),
        inset 0 -10px 20px rgba(210, 130, 150, 0.35);
}
.shop-search-bar::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 10px;
    right: 10px;
    height: 40%;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.shop-search-bar:focus-within {
    box-shadow: 
        0 20px 45px rgba(220, 150, 170, 0.3),
        inset 0 0 0 3px rgba(255, 255, 255, 0.7),
        inset 0 0 0 5px rgba(240, 170, 190, 0.7),
        inset 0 10px 15px rgba(255, 255, 255, 1),
        inset 0 -10px 20px rgba(210, 130, 150, 0.45);
    transform: translateY(-2px);
}
.shop-search-bar svg { 
    color: #c98595; 
    flex-shrink: 0; 
    z-index: 2; 
    filter: drop-shadow(0 2px 2px rgba(255,255,255,0.8));
}
.shop-search-bar input { 
    border: none; 
    background: none; 
    outline: none; 
    font-family: var(--sans); 
    font-size: 1rem; 
    color: #a86575; 
    width: 100%; 
    letter-spacing: .02em; 
    z-index: 2;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.shop-search-bar input::placeholder { 
    color: rgba(180, 110, 125, 0.6); 
}

/* Floating Accents */
.floating-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.accent-bottle {
    position: absolute;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)) blur(3px);
    opacity: 0.4;
    transition: transform 0.3s ease-out;
}
.accent-1 { top: 25%; left: 8%; width: 140px; transform: rotate(-12deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)) blur(4px); opacity: 0.2; }
.accent-2 { top: 35%; right: 5%; width: 180px; transform: rotate(15deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)) blur(6px); opacity: 0.15; }
.accent-3 { bottom: 15%; left: 15%; width: 160px; transform: rotate(25deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)) blur(3px); opacity: 0.25; }
.accent-4 { top: 60%; right: 18%; width: 130px; transform: rotate(-20deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)) blur(5px); opacity: 0.2; }

/* --- Shop Controls (Filters + Sort) --- */
.shop-controls-section {
    padding: 2rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.shop-controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.shop-filters-wrap {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.pill-selectors {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-pill {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.4);
    border: 1px solid transparent;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.filter-pill:hover {
    background: rgba(255,255,255,0.8);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.filter-pill.active {
    background: var(--text);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26,36,51,0.2);
}

.glass-dropdown select {
    appearance: none;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: all 0.3s var(--ease);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2433' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
.glass-dropdown select:hover {
    background: rgba(255,255,255,0.9);
    border-color: var(--accent);
}

/* --- Product Sections (Side Scroll) --- */
.shop-categories-section {
    padding: 0 0 8rem 0;
    width: 100%;
    position: relative;
    z-index: 10;
}
.category-row-wrapper {
    margin-bottom: 4rem;
    transition: opacity 0.3s;
}
.category-row-title {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text);
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto 1.5rem auto;
}
.side-scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 3rem 3rem 3rem;
    scrollbar-width: none;
    max-width: 1400px;
    margin: 0 auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.side-scroll-container::-webkit-scrollbar {
    display: none;
}
.side-scroll-container .premium-card {
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
}
.no-results {
    text-align: center;
    padding: 4rem 0;
}
.no-results h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 1rem;}
.no-results p { color: var(--text-light); margin-bottom: 2rem;}

/* Premium Product Card */
.premium-card {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}
.premium-card-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.premium-card:hover .premium-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,255,255,0.8) inset;
    background: rgba(255,255,255,0.5);
}

.card-badges {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}
.luxury-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    background: var(--text);
    color: #fff;
}
.luxury-badge.new { background: var(--accent); color: #fff;}
.luxury-badge.bestseller { background: var(--rose-gold); color: #fff;}

.wishlist-icon {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
}
.wishlist-icon:hover {
    background: #fff;
    color: #e74c6f;
    transform: scale(1.1);
}

.card-image-wrap {
    position: relative;
    height: 300px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}
.card-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.premium-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 50%;
    filter: blur(20px);
}
.premium-card:hover .card-glow { opacity: 1; }

.card-info {
    margin-top: auto;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.card-stars {
    color: var(--rose-gold);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}
.card-info h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.card-notes {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}
.card-type {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,36,51,0.05);
}
.card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}
.add-btn {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.premium-card:hover .add-btn {
    background: var(--text);
    color: #fff;
    transform: scale(1.1);
}

.mobile-buy-now {
    display: none;
}

/* Hover Quick Action Overlay */
.card-quick-actions {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 10;
}
.premium-card:hover .card-quick-actions {
    opacity: 1;
    visibility: visible;
}
.card-quick-actions .glass-btn {
    width: 80%;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.premium-card:hover .card-quick-actions .glass-btn {
    transform: translateY(0);
    opacity: 1;
}
.card-quick-actions .glass-btn:nth-child(2) { transition-delay: 0.1s; }

/* --- Category Carousel --- */
.category-strip-section {
    padding: 6rem 0;
    overflow: hidden;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.cat-carousel-container {
    padding: 0 3rem;
    margin-top: 3rem;
}
.cat-carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
}
.cat-carousel-track::-webkit-scrollbar { display: none; } /* Chrome */
.cat-carousel-item {
    min-width: 300px;
    width: 350px;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}
.cat-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.cat-carousel-item:hover img { transform: scale(1.08); }
.cat-item-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}
.cat-item-content h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.5rem;}
.shop-link-text { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; opacity: 0; transform: translateX(-10px); transition: all 0.4s ease; color: var(--pink);}
.cat-carousel-item:hover .shop-link-text { opacity: 1; transform: translateX(0); }

/* --- Scent Experience Section --- */
.scent-experience {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}
.scent-exp-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.scent-exp-content { flex: 1; }
.scent-exp-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 3rem; line-height: 1.8;}
.scent-nav { display: flex; flex-direction: column; gap: 1rem; border-left: 2px solid rgba(26,36,51,0.1); padding-left: 2rem;}
.scent-btn {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--text-light);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.scent-btn::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}
.scent-btn.active, .scent-btn:hover { color: var(--text); font-style: italic;}
.scent-btn.active::before { height: 100%; }

.scent-exp-visuals {
    flex: 1.2;
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}
.scent-visual {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s var(--ease);
    transform: scale(1.05);
}
.scent-visual.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.scent-visual img { width: 100%; height: 100%; object-fit: cover;}
.scent-desc {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.scent-desc h4 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.5rem;}
.scent-desc p { font-size: 0.9rem; color: var(--text-light);}

/* --- Cinematic Showcase --- */
.cinematic-showcase {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 3rem;
    overflow: hidden;
}
.cinema-bg {
    position: absolute;
    inset: 0;
    background: #1a1518; /* Dark luxury BG */
    z-index: 0;
}
.cinema-cloud {
    position: absolute;
    top: 0; right: 0;
    height: 150%;
    width: auto;
    opacity: 0.15;
    mix-blend-mode: screen;
}
.cinema-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
    width: 100%;
}
.cinema-bottle-wrap {
    flex: 1;
    position: relative;
    aspect-ratio: 1 / 1;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cinema-bottle {
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 2;
    border-radius: 24px;
    transform: translateY(-70px);
}
.cinema-glow {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(230,168,183,0.3), transparent 60%);
    filter: blur(40px);
    z-index: 1;
}
.cinema-text {
    flex: 1;
    color: #fff;
}
.cinema-text .section-title { color: #fff; font-size: 4rem; margin-bottom: 2rem;}
.cinema-text .section-tag { color: var(--accent); }
.notes-pyramid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.pyramid-level {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}
.p-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
    width: 60px;
}
.p-note {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}
.cinema-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.cinema-price {
    font-family: var(--serif);
    font-size: 2.5rem;
}

/* --- Editorial Reviews --- */
.editorial-reviews {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.review-card {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s ease;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--serif);
    font-size: 6rem;
    color: var(--pink);
    line-height: 1;
    opacity: 0.5;
    z-index: -1;
}
.review-card:hover {
    background: var(--glass-bg);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.review-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 2.5rem;
    min-height: 80px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.r-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text);
}
.r-avatar img { width: 100%; height: 100%; object-fit: cover; }
.r-info strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem;}
.r-info span { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em;}


/* --- Responsive Shop --- */
@media(max-width: 1024px) {
    .cinema-content { flex-direction: column; text-align: center; gap: 3rem;}
    .cinema-bottle-wrap { height: 500px; }
    .pyramid-level { justify-content: center; }
    .cinema-actions { justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .scent-exp-container { flex-direction: column; }
    .scent-nav { border-left: none; border-top: 2px solid rgba(26,36,51,0.1); padding-left: 0; padding-top: 2rem; flex-direction: row; justify-content: center; flex-wrap: wrap;}
    .scent-btn::before { top: -2rem; left: 50%; transform: translateX(-50%); width: 0; height: 4px; transition: width 0.3s ease;}
    .scent-btn.active::before { height: 4px; width: 100%; }
}
@media(max-width: 768px) {
    .category-row-title { padding: 0 1.5rem; font-size: 1.5rem; margin-bottom: 0.8rem; }
    .category-row-wrapper { margin-bottom: 1.5rem; }
    .category-row-wrapper:last-of-type { margin-bottom: 0; }
    .side-scroll-container { padding: 0.5rem 1.5rem 3.5rem 1.5rem; gap: 0.8rem; margin-bottom: -2.5rem; }
    .shop-categories-section { padding-bottom: 0 !important; overflow: visible; }
    .category-strip-section { padding-top: 1rem !important; padding-bottom: 4rem; }
    .section-header { margin-bottom: 1.5rem !important; margin-top: 0 !important; }
    .side-scroll-container .premium-card { min-width: 200px; width: 200px; height: auto; display: flex; flex-direction: column; }
    .shop-controls-container { flex-direction: column; align-items: stretch; }
    .shop-filters-wrap { flex-direction: column; gap: 1.5rem; }
    .shop-hero-title { font-size: 2.8rem; }
    .cat-carousel-container { padding: 0 1.5rem; margin-top: 1.5rem; }
    .scent-experience { padding: 4rem 1.5rem !important; }
    .scent-exp-visuals { height: 400px !important; margin-top: 2rem; }
    .cinematic-showcase { padding: 4rem 1.5rem !important; min-height: auto !important; }
    .cinema-content { gap: 2rem !important; }
    .cinema-bottle-wrap { height: 350px !important; }
    .cinema-text .section-title { font-size: 2.5rem !important; }
    .cat-carousel-track { gap: 1.2rem; }
    .cat-carousel-item { 
        min-width: 280px; 
        width: 280px; 
        height: 180px; 
        border-radius: 18px;
    }
    .cat-item-content { padding: 1.5rem; }
    .cat-item-content h3 { font-size: 1.5rem; }

    /* --- Compact Premium Card for Mobile --- */
    .premium-card-inner {
        border-radius: 14px;
        flex-grow: 1;
        height: auto;
    }
    .card-image-wrap {
        height: 180px;
        margin-bottom: 0.8rem;
    }
    .card-badges {
        top: 0.7rem;
        left: 0.7rem;
        gap: 0.3rem;
    }
    .luxury-badge {
        font-size: 0.5rem;
        padding: 0.25rem 0.55rem;
        letter-spacing: 0.1em;
    }
    .wishlist-icon {
        top: 0.7rem;
        right: 0.7rem;
        width: 28px;
        height: 28px;
    }
    .wishlist-icon svg {
        width: 14px;
        height: 14px;
    }
    .card-info {
        padding: 0 1rem 2.5rem 1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .card-stars {
        font-size: 0.55rem;
        margin-bottom: 0.3rem;
    }
    .card-info h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    .card-notes {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }
    .card-type {
        font-size: 0.6rem;
        margin-bottom: 0.6rem;
    }
    .card-bottom {
        padding-top: 0.6rem;
    }
    .card-price {
        font-size: 0.9rem;
    }
    .add-btn {
        width: 26px;
        height: 26px;
    }
    .add-btn svg {
        width: 13px;
        height: 13px;
    }

    .mobile-buy-now {
        display: block;
        width: 100%;
        margin-top: auto; 
        padding: 0.85rem;
        background: var(--text);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-family: var(--sans);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .mobile-buy-now:active {
        transform: scale(0.95);
        background: var(--accent);
    }

    .card-quick-actions {
        display: none;
    }

    /* Shop controls */
    .shop-controls-section {
        padding: 1rem 1.5rem 2rem;
    }
    .shop-controls-container {
        padding: 1rem 1.2rem;
        border-radius: 16px;
    }
    .filter-pill {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
    }

    .scent-nav {
        display: none !important;
    }
}
/* --- Quick View Modal --- */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}
.product-modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 36, 51, 0.4);
    backdrop-filter: blur(10px);
}
.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-modal.active .modal-container {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--pink);
    color: #fff;
}
.modal-body {
    display: flex;
    width: 100%;
    max-height: 90vh;
}
.modal-image-side {
    flex: 1;
    background: #fdfafb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}
.modal-image-side img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}
.m-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.modal-info-side {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.m-type {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.m-title {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.m-stars {
    color: var(--rose-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.m-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2.5rem;
}
.m-section {
    margin-bottom: 2.5rem;
}
.m-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}
.m-section p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}
.profile-tags {
    display: flex;
    gap: 1rem;
}
.profile-tags span {
    background: #f5f2f5;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.m-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.m-actions .glass-btn {
    flex: 1;
    justify-content: center;
}
.m-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
}
.trust-item svg {
    color: var(--accent);
}

/* --- Toast Notification --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.toast {
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-left: 4px solid var(--accent);
    min-width: 300px;
}
.toast.active {
    transform: translateX(0);
    opacity: 1;
}
.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fdf0f4;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-content h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}
.toast-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Mobile Adjustments for Modal */
@media(max-width: 768px) {
    .modal-container {
        width: 95%;
        flex-direction: column;
    }
    .modal-body {
        flex-direction: column;
        overflow-y: auto;
    }
    .modal-image-side {
        padding: 2rem;
        height: 300px;
    }
    .modal-image-side img {
        height: 100%;
    }
    .modal-info-side {
        padding: 2.5rem;
    }
    .m-title {
        font-size: 2rem;
    }
    .m-actions {
        flex-direction: column;
    }
}
