@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color:    #0a0a0a;
    --bg2:         #0f0e0c;
    --bg3:         #161410;
    --gold:        #bd9730;
    --gold-light:  #d4af50;
    --gold-dim:    #8a6e22;
    --gold-pale:   #f0dfa0;
    --text:        #ffffff;
    --text-muted:  #cccccc;
    --text-dim:    #6a6050;
    --cream-bg:    #f5f0e8;
    --dark-panel:  #111111;
    --border-gold: 2.5px solid #bd9730;
}

html {
    scroll-behavior: smooth;
}
body.shop-body {
    background: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.shop-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.48)),
                url("https://images.unsplash.com/photo-1544006593-1a0b9255782d?q=80&w=1163&auto=format&fit=crop") no-repeat center/cover;
    z-index: -1;
}
.scroll-top-btn {
    color: #fed;
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(189, 151, 48, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
    backdrop-filter: blur(12px);
    z-index: 999;
    animation: pulse-glow 3s ease-in-out infinite;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover { 
    background: var(--gold); 
}
.scroll-top-btn:hover svg{
    stroke: #1a1a1a;
    transition: .3s ease;
}
.scroll-top-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

section { 
    background-color: #000; 
    width: 100%;
    color: var(--text); 
}

/* === HERO SECTION === */
.hero {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 3rem ;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000 5%, transparent 60%),linear-gradient(to top, #000000b6 5%, transparent 60%),
                linear-gradient(to right, #000 0%, transparent 30%, transparent 70%, #000 100%),
                url("hero-bg.jpg") no-repeat center/cover;
    z-index: 0;
}

    /* MENU BTN */
#menuBtn{
    position: fixed ;
    top: 5px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 2px;
    cursor: pointer;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    border: 1px solid rgba(189, 151, 48, 0.2) ;
    transition: 0.3s ease;
}
#menuBtn:hover {
    border-color: rgba(189, 151, 48, 0.6);
    background: rgba(0, 0, 0, 0.7) ;
}
#menuBtn div {
    height: 3px;
    border-radius: 2px;
    width: 100%;
    background: #fed;
    transition: 0.3s ease;
}
#menuBtn div:nth-child(2) { 
    width: 75%; 
}
#menuBtn div:nth-child(3) { 
    width: 50%; 
}
#menuBtn:hover div:nth-child(1) { 
    width: 50%; 
}
#menuBtn:hover div:nth-child(3) { 
    width: 100%; 
}
#menuBtn:active div { 
    width: 100%; 
}
    /* CONTENT */
.hero-eyebrow {
    background-color: #bd973046;
    backdrop-filter: blur(20px);
    padding: .2rem .5rem;
    border-radius: 12px;
    font-size: clamp(0.65rem, 2.4vw, 1.6rem);
    letter-spacing: 6px;
    color: #fed;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
    font-family: 'Montserrat', sans-serif;
}
.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.4rem, 6.6vw, 5.6rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
    opacity: 0;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero h1 em {
    display: inline-block;
    color: var(--gold);
    font-style: normal;
    background: #00000094;
    padding: 0 .5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);

}
.btn-discover {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border: 1px solid var(--gold);
    border-radius: 32px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s, background 0.35s;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #0000004b;
    backdrop-filter: blur(10px);
}
.btn-discover::before {
    content: '';
    position: absolute;
    inset: 0;
    bottom: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
    z-index: -1;
    display: block;
}
.btn-discover:hover { 
    color: #080706; 
}
.btn-discover:hover::before { 
    transform: scaleX(1); 
}

/* =============================================
   SIDEBAR
   ============================================= */
.side-bar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background: rgba(8, 7, 6, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(6px);
    border-right: 1px solid rgba(189, 151, 48, 0.25);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.side-bar.open {
    left: 0;
}
.side-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s, letter-spacing 0.3s;
    display: block;
    border-bottom: 1px solid rgba(189, 151, 48, 0.1);
    padding-bottom: 1rem;
}
.side-nav a:hover {
    color: var(--gold);
    letter-spacing: 5px;
}
.side-bar .side-nav a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.35s ease;
}
.side-bar .side-nav a:hover::before { 
    width: 60%; 
}

/* Favourites nav link */
.side-nav .fav-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}
.side-nav .fav-nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.fav-count-badge {
    display: none;
    background: var(--gold);
    color: #0a0a0a;
    font-size: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    letter-spacing: 0;
    margin-left: auto;
}
.fav-count-badge.has-items {
    display: inline-block;
}

/* Sidebar overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.sidebar-overlay.active { 
    display: block; 
}

/* =============================================
   PREMIUM FILTER DROPDOWN
   ============================================= */

/* outer wrapper — same width as the rest of the page */
.filter-section {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #000;
    padding: 0 1.5rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
}

/* inner bar — meta left, dropdown right */
.filter-bar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* left meta */
.filter-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.filter-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dim);
}
.filter-count-line {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,237,221,0.5);
    letter-spacing: 1px;
}
.filter-count-line span {
    color: var(--gold);
    font-weight: 600;
}

/* ---- dropdown positioning root ---- */
.fd-wrap {
    position: relative;
}

/* ---- TRIGGER ---- */
.fd-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 46px;
    padding: 0 16px;
    min-width: 220px;
    background: #0e0c09;
    border: none;
    border-right: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.25s, border-radius 0.18s;
    color: #fed;
    font-family: 'Montserrat', sans-serif;
}
.fd-trigger:hover {
    border-color: rgba(189,151,48,0.75);
}

.fd-trigger-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fd-trigger-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.fd-trigger-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}
.fd-trigger-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(1.2);
}
.fd-trigger-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}
.fd-trigger-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fed;
    line-height: 1;
}
.fd-trigger-sub {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    color: var(--text-dim);
    line-height: 1;
}
.fd-trigger-right {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}
/* active filter dot */
.fd-active-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: none;
}
.fd-active-dot.show {
    display: block;
}
/* chevron SVG */
.fd-chevron {
    width: 14px;
    height: 14px;
    stroke: var(--text-dim);
    transition: transform 0.22s ease, stroke 0.2s;
    flex-shrink: 0;
}
.fd-chevron.open {
    transform: rotate(180deg);
    stroke: var(--gold);
}

/* ---- MENU PANEL ---- */
.fd-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #0e0c09;
    border: none;
    z-index: 500;
    padding-bottom: 4px;
    /* animate open */
    animation: fdSlideIn 0.18s ease forwards;
}
.fd-menu.open {
    display: block;
}
@keyframes fdSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- SEARCH ROW ---- */
.fd-search-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(189,151,48,0.12);
    margin-bottom: 4px;
}
.fd-search-row svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-dim);
    flex-shrink: 0;
}
.fd-search {
    background: none;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    color: #fed;
    width: 100%;
    padding: 0;
}
.fd-search::placeholder { color: var(--text-dim); }

/* ---- GROUP LABEL ---- */
.fd-group-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 8px 14px 4px;
    margin: 0;
}

/* ---- DIVIDER ---- */
.fd-divider {
    height: 1px;
    background: rgba(189,151,48,0.1);
    margin: 6px 14px;
}

/* ---- MENU ITEMS ---- */
.fd-item {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 9px 14px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}
/* gold left-bar on active */
.fd-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 2px;
    background: var(--gold);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.15s;
}
.fd-item.active::before { opacity: 1; }
.fd-item:hover { background: rgba(189,151,48,0.07); }
.fd-item.active { background: rgba(189,151,48,0.1); }

/* icon box */
.fd-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #1a1610;
    border: 1px solid rgba(189,151,48,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s;
}
.fd-item:hover  .fd-item-icon,
.fd-item.active .fd-item-icon {
    border-color: rgba(189,151,48,0.5);
}
.fd-item-icon svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255,237,221,0.5);
    transition: stroke 0.15s;
}
.fd-item.active .fd-item-icon svg { stroke: var(--gold); }
.fd-item:hover  .fd-item-icon svg { stroke: var(--gold-light); }
.fd-item-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.fd-item.active .fd-item-icon img,
.fd-item:hover  .fd-item-icon img { opacity: 1; }

/* text */
.fd-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.fd-item-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,237,221,0.85);
    letter-spacing: 0.3px;
    line-height: 1;
    transition: color 0.15s;
}
.fd-item.active .fd-item-name { color: #fed; }
.fd-item-desc {
    font-size: 0.58rem;
    letter-spacing: 0.3px;
    color: var(--text-dim);
    line-height: 1;
    transition: color 0.15s;
}
.fd-item.active .fd-item-desc { color: rgba(189,151,48,0.65); }

/* check mark */
.fd-item-check {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s;
}
.fd-item.active .fd-item-check { opacity: 1; }

/* ---- MENU FOOTER ---- */
.fd-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px 5px;
    border-top: 1px solid rgba(189,151,48,0.1);
    margin-top: 4px;
}
.fd-footer-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}
.fd-footer-count span { color: var(--gold); font-weight: 600; }
.fd-clear {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 3px;
    transition: color 0.15s, background 0.15s;
    visibility: hidden;
}
.fd-clear.visible  { visibility: visible; }
.fd-clear:hover { color: #fed; background: rgba(255,237,221,0.07); }

/* ---- RESPONSIVE ---- */
@media (max-width: 520px) {
    .filter-section { padding: 0.8rem 1rem; }
    .fd-trigger { min-width: 180px; height: 42px; padding: 0 12px; }
    .fd-menu { right: 0; min-width: 200px; }
    .filter-meta { display: none; }
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    position: relative;
}
.section-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 0.5rem;
}
.section-header .sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.section-header .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
}
.section-header .ornament span {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim));
}
.section-header .ornament span:last-child {
    background: linear-gradient(to left, transparent, var(--gold-dim));
}
.section-header .ornament i {
    width: 5px; height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    display: block;
}


/* =============================================
   ALL PERFUMES GRID
   ============================================= */
.all-perfumes { 
    padding: 0 1.5rem 5rem; 
}
.perfumes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
    transition: 1s ease;
}

/* =============================================
   BLEU DE CHANEL 32K — UNIQUE HERO CARD
   ============================================= */
.blue-de-chanel {
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgb(0, 0, 0) 0%, rgb(4, 4, 58) 45%, #000000 80%);
    border: 1px solid rgb(11, 11, 179);
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.blue-de-chanel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgb(4, 4, 58) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, rgba(255,120,50,0.09) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.blue-de-chanel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), var(--gold), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.blue-de-chanel:hover {
    transform: translateY(-5px);
    border-color: rgb(0, 0, 255);
}
.blue-de-chanel > * { 
    position: relative; 
    z-index: 2; 
}

/* BLEU DE CHANEL "EXCLUSIVE" ribbon */
.blue-de-chanel .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blue-de-chanel .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.blue-de-chanel .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 238, 221, 0.384)) drop-shadow(0 0 30px rgba(4,4,58,0.3));
    transition: transform 0.5s ease;
}
.blue-de-chanel:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.blue-de-chanel-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* BLEU DE CHANEL card info overrides */
.blue-de-chanel .blue-de-chanel-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #02e2ff;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 100, 100, 0.12);
}
.blue-de-chanel .blue-de-chanel-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(255, 226, 197);
    margin-bottom: 0.2rem;
}
.blue-de-chanel .blue-de-chanel-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* BLEU DE CHANEL bottom row: price left, whatsapp right */
.blue-de-chanel .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.blue-de-chanel .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.blue-de-chanel .card-bottom-row .wa-btn {
    background: #02e1ff21;
    border: 1px solid #02e1ff8e;
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.blue-de-chanel .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.blue-de-chanel .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* BLEU DE CHANEL fav btn */
.blue-de-chanel .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid #02e1ff8e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.blue-de-chanel .fav-btn:hover {
    background: #02e1ff31;
    border-color: #02e1ff4f;
    transform: scale(1.12);
}
.blue-de-chanel .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.blue-de-chanel .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   CLUB DE NUIT 31K — UNIQUE HERO CARD
   ============================================= */
.club-de-nuit {
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgb(0, 0, 0) 0%, #494949 45%, #000000 80%);
    border: 1px solid #494949;
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.club-de-nuit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgb(0, 0, 0) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, #494949 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.club-de-nuit::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), var(--gold), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.club-de-nuit:hover {
    transform: translateY(-5px);
    border-color: #616161;
}
.club-de-nuit > * { 
    position: relative; 
    z-index: 2; 
}

/* CLUB DE NUIT "EXCLUSIVE" ribbon */
.club-de-nuit .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.club-de-nuit .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.club-de-nuit .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 238, 221, 0.384)) drop-shadow(0 0 30px #383838);
    transition: transform 0.5s ease;
}
.club-de-nuit:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.club-de-nuit-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CLUB DE NUIT card info overrides */
.club-de-nuit .club-de-nuit-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #02e2ff;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 100, 100, 0.12);
}
.club-de-nuit .club-de-nuit-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dadada;
    margin-bottom: 0.2rem;
}
.club-de-nuit .club-de-nuit-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* CLUB DE NUIT bottom row: price left, whatsapp right */
.club-de-nuit .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.club-de-nuit .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.club-de-nuit .card-bottom-row .wa-btn {
    background: #02e1ff21;
    border: 1px solid #686868;
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.club-de-nuit .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.club-de-nuit .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* CLUB DE NUIT fav btn */
.club-de-nuit .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid #686868;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.club-de-nuit .fav-btn:hover {
    background: #02e1ff31;
    border-color: #02e1ff4f;
    transform: scale(1.12);
}
.club-de-nuit .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.club-de-nuit .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   JEAN PAUL GAULTIER — UNIQUE HERO CARD
   ============================================= */
.jean-paul-gaultier {
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgb(0, 0, 0) 0%, #494949 45%, #000000 80%);
    border: 1px solid var(--gold-dim);
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.jean-paul-gaultier::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgb(0, 0, 0) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, var(--gold-dim) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.jean-paul-gaultier::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), var(--gold), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.jean-paul-gaultier:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
}
.jean-paul-gaultier > * { 
    position: relative; 
    z-index: 2; 
}

/* JEAN PAUL GAULTIER "EXCLUSIVE" ribbon */
.jean-paul-gaultier .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.jean-paul-gaultier .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.jean-paul-gaultier .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 238, 221, 0.384)) drop-shadow(0 0 30px var(--gold-dim));
    transition: transform 0.5s ease;
}
.jean-paul-gaultier:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.jean-paul-gaultier-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* JEAN PAUL GAULTIER card info overrides */
.jean-paul-gaultier .jean-paul-gaultier-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #02e2ff;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 100, 100, 0.12);
}
.jean-paul-gaultier .jean-paul-gaultier-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dadada;
    margin-bottom: 0.2rem;
}
.jean-paul-gaultier .jean-paul-gaultier-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* JEAN PAUL GAULTIER bottom row: price left, whatsapp right */
.jean-paul-gaultier .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.jean-paul-gaultier .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.jean-paul-gaultier .card-bottom-row .wa-btn {
    background: #02e1ff21;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.jean-paul-gaultier .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.jean-paul-gaultier .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* JEAN PAUL GAULTIER fav btn */
.jean-paul-gaultier .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.jean-paul-gaultier .fav-btn:hover {
    background: #02e1ff31;
    border-color: #02e1ff4f;
    transform: scale(1.12);
}
.jean-paul-gaultier .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.jean-paul-gaultier .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   LIBRE EDP — UNIQUE HERO CARD
   ============================================= */
.libre-edp {
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgb(0, 0, 0) 0%, #494949 45%, #000000 80%);
    border: 1px solid rgba(255, 166, 0, 0.5);
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.libre-edp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgb(0, 0, 0) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, rgba(255, 166, 0, 0.5) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.libre-edp::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), rgba(255, 166, 0, 0.7), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.libre-edp:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 166, 0, 0.9);
}
.libre-edp > * { 
    position: relative; 
    z-index: 2; 
}

/* LIBRE EDP "EXCLUSIVE" ribbon */
.libre-edp .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.libre-edp .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.libre-edp .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 238, 221, 0.384)) drop-shadow(0 0 30px rgba(255, 166, 0, 0.3));
    transition: transform 0.5s ease;
}
.libre-edp:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.libre-edp-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LIBRE EDP card info overrides */
.libre-edp .libre-edp-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: rgba(255, 166, 0, 0.9);
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(112, 92, 92, 0.3);
}
.libre-edp .libre-edp-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dadada;
    margin-bottom: 0.2rem;
}
.libre-edp .libre-edp-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* LIBRE EDP bottom row: price left, whatsapp right */
.libre-edp .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.libre-edp .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.libre-edp .card-bottom-row .wa-btn {
    background: #02e1ff21;
    border: 1px solid rgba(255, 166, 0, 0.7);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.libre-edp .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.libre-edp .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* LIBRE EDP fav btn */
.libre-edp .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 166, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.libre-edp .fav-btn:hover {
    background: #02e1ff31;
    border-color: #02e1ff4f;
    transform: scale(1.12);
}
.libre-edp .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.libre-edp .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   SCANDAL 21K — UNIQUE HERO CARD
   ============================================= */
.scandal-21k {
    position: relative;
    background: radial-gradient(circle at 40% 30%, #5a0a0a 0%, #1c0202 45%, #000000 80%);
    border: 1px solid rgba(220, 30, 30, 0.35);
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.scandal-21k::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgba(189,30,30,0.18) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, rgba(255,120,50,0.09) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.scandal-21k::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), var(--gold), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.scandal-21k:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 80, 80, 0.65);
}
.scandal-21k > * { 
    position: relative; 
    z-index: 2; 
}

/* Scandal "EXCLUSIVE" ribbon */
.scandal-21k .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scandal-ribbon .ribbon-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(to left, #33120e, #8b0000);
    color: #ffd6cc;
    border-radius: 24px;
}
.scandal-ribbon .ribbon-price-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: none;
    color: #fed;
    border-radius: 24px;
    width: fit-content;
    background: rgba(0,0,0,0.5);
}

.scandal-21k .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.scandal-21k .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(114, 113, 113, 0.65)) drop-shadow(0 0 30px rgba(180,30,30,0.3));
    transition: transform 0.5s ease;
}
.scandal-21k:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.scandal-21k-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Scandal card info overrides */
.scandal-21k .scandal-21k-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #ff9999;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 100, 100, 0.12);
}
.scandal-21k .scandal-21k-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.scandal-21k .scandal-21k-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* Scandal bottom row: price left, whatsapp right */
.scandal-21k .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.scandal-21k .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.scandal-21k .card-bottom-row .wa-btn {
    background: #8b000038;
    border: 1px solid #8b0000;
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.scandal-21k .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.scandal-21k .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* Scandal fav btn */
.scandal-21k .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(220,60,60,0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.scandal-21k .fav-btn:hover {
    background: rgba(220,60,60,0.2);
    border-color: rgba(220,60,60,0.7);
    transform: scale(1.12);
}
.scandal-21k .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.scandal-21k .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   CLUB DE NUIT 31K — UNIQUE HERO CARD
   ============================================= */
.versace-eros {
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgb(0, 0, 0) 0%, #494949 45%, #000000 80%);
    border: 1px solid #02e1ff81;
    border-radius: 16px;
    grid-column: span 2;
    display: grid;
    grid-template-rows: auto;
    padding-top: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.versace-eros::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgb(0, 0, 0) 0%, transparent 55%),
        radial-gradient(circle at 20% 10%, var(--gold) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}
.versace-eros::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,60,60,0.8), var(--gold), rgba(220,60,60,0.8), transparent);
    z-index: 1;
}
.versace-eros:hover {
    transform: translateY(-5px);
    border-color: #02e2ff;
}
.versace-eros > * { 
    position: relative; 
    z-index: 2; 
}

/* CLUB DE NUIT "EXCLUSIVE" ribbon */
.versace-eros .scandal-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scandal-ribbon .ribbon-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(to left, #33120e, #8b0000);
    color: #ffd6cc;
    border-radius: 24px;
}
.scandal-ribbon .ribbon-price-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: none;
    color: #fed;
    border-radius: 24px;
    width: fit-content;
    background: rgba(0,0,0,0.5);
}
.versace-eros .img-area-1 {
    background: none;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.versace-eros .img-area-1 img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 238, 221, 0.384)) drop-shadow(0 0 10px #02e1ff69);
    transition: transform 0.5s ease;
}
.versace-eros:hover .img-area-1 img {
    transform: translateY(-8px) scale(1.03);
}
.versace-eros-info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CLUB DE NUIT card info overrides */
.versace-eros .versace-eros-info .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #02e2ff;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 100, 100, 0.12);
}
.versace-eros .versace-eros-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dadada;
    margin-bottom: 0.2rem;
}
.versace-eros .versace-eros-info .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(189,151,48,0.6);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* CLUB DE NUIT bottom row: price left, whatsapp right */
.versace-eros .card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.5rem;
}
.versace-eros .card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    border: none;
    padding: 0;
}
.versace-eros .card-bottom-row .wa-btn {
    background: #02e1ff21;
    border: 1px solid #02e1ff98;
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.versace-eros .card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    transform: scale(1.08) rotate(8deg);
}
.versace-eros .card-bottom-row .wa-btn svg {
    width: 20px;
    height: 20px;
}

/* CLUB DE NUIT fav btn */
.versace-eros .fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 10%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid #02e1ff98;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.versace-eros .fav-btn:hover {
    background: #02e1ff31;
    border-color: #02e1ffc2;
    transform: scale(1.12);
}
.versace-eros .fav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff7070;
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.versace-eros .fav-btn.active svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}


/* =============================================
   PERF CARD (standard)
   ============================================= */
.perf-card {
    height: fit-content;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.perf-card:hover {
    background: var(--bg2);
    transform: translateY(-4px);
}

.perf-card .img-area {
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.perf-card .img-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(189, 151, 48, 0.3), transparent);
}
.perf-card .img-area img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(247, 247, 247, 0.6));
    transition: transform 0.5s ease;
}
.perf-card:hover .img-area img { 
    transform: translateY(-8px); 
}

.perf-card .info {
    padding: 1rem .2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.perf-card .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #ebb932;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 0.1rem 0.6rem;
    margin-bottom: 0.4rem;
    background: none;
}
.perf-card .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.perf-card .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* --- Card bottom row: price left, whatsapp right --- */
.card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0 0.3rem;
    gap: 0.4rem;
    margin-top: 0.2rem;
}
.card-bottom-row .perfume-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}
.card-bottom-row .wa-btn {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 8px;
    padding: 0.4rem 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.card-bottom-row .wa-btn:hover {
    background: rgba(37,211,102,0.22);
    border-color: rgba(37,211,102,0.65);
    transform: scale(1.08);
}
.card-bottom-row .wa-btn svg {
    width: 18px;
    height: 18px;
}

/* --- Favourite button on perf-card --- */
.fav-btn {
    position: absolute;
    top: 0.75rem;
    right: 10%;
    z-index: 5;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255, 217, 0, 0.281);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(16px);
}
.fav-btn:hover {
    background: rgba(189,151,48,0.15);
    border-color: rgba(189,151,48,0.6);
    transform: scale(1.12);
}
.fav-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    transition: fill 0.25s, stroke 0.25s;
}
.fav-btn.active svg {
    fill: var(--gold);
    stroke: var(--gold);
}

@keyframes fav-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.fav-btn.pop { 
    animation: fav-pop 0.35s cubic-bezier(0.22,1,0.36,1); 
}

/* Keep old .cta for any element not yet converted */
.perf-card .cta {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(189, 151, 48, 0.3);
    padding-bottom: 2px;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.perf-card:hover .cta { 
    opacity: 1; 
    transform: translateY(0); 
}


/* =============================================
   MID ADVERTS
   ============================================= */
.mid-advert {
    border-right: 4px solid var(--gold-light);
    border-radius: 20px;
    grid-column: span 2; 
    grid-row: span 1;
    background-color: rgba(0, 0, 0, 0.6);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    margin: 1rem .5rem;
}
.mid-advert .img-area {
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.mid-advert .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.mid-advert:hover .img-area img { 
    transform: scale(1.04); 
}
.mid-advert .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem;
}
.mid-advert .info h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    color: var(--gold);
    font-family: 'Dancing Script', cursive;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.mid-advert .cta {
    align-self: flex-start;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(189, 151, 48, 0.4);
    background: none;
    transition: background 0.3s, color 0.3s;
}
.mid-advert .cta:hover {
    background: var(--gold);
    color: var(--bg-color);
}
.mid-advert1 {
    background-color: rgba(0, 0, 0, 0.6);
    display: grid;
    height: 300px;
    overflow: hidden;
}
.mid-advert1 .img-area {
    height: 100%;
    padding: 0;
}
.mid-advert1 .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 0.6s ease, opacity 0.4s;
}
.mid-advert1:hover .img-area img { 
    transform: scale(1.03); 
    opacity: 0.7; 
}
.mid-advert .wa-btn {
    position: relative;
    width: 40px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.35);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}


/* =============================================
   KAYALI TITLE SEPARATOR
   ============================================= */
.kayali-title {
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    margin: 1rem .5rem;
}
.kayali-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.kayali-title img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.kayali-title h2 {
    position: absolute;
    font-size: clamp(4rem, 10vw, 6.2rem);
    letter-spacing: 0.8rem;
    -webkit-text-stroke: 2px var(--gold-light);
    color: transparent;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
}


/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
    background: var(--bg2);
    border-top: 1px solid rgba(189, 151, 48, 0.15);
    border-bottom: 1px solid rgba(189, 151, 48, 0.15);
    padding: 5rem 3rem;
    text-align: center;
}
.newsletter h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    margin-bottom: 0.8rem;
}
.newsletter p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(189, 151, 48, 0.3);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
}
.newsletter-form input::placeholder { 
    color: var(--text-dim); 
}
.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 1rem 1.8rem;
    color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}
.newsletter-form button:hover { 
    background: var(--gold-light); 
}

/* =============================================
   WATCHES CTA
   ============================================= */
.watches-cta {
    min-height: 18vh;
    text-align: center;
    display: flex;
    align-items: center;
    background: linear-gradient(to left, transparent, #000),url('https://images.unsplash.com/photo-1606834297608-2858b9008f8e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
    padding: 2rem .5rem;
}
.watches-cta nav{
    padding: 1rem .5rem;
}
.watches-cta a {
    position: relative;
    text-decoration: none;
    font-size: clamp(1.4rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    transition: color 0.3s, letter-spacing 0.3s;
    font-family: 'Cormorant Garamond', serif;
}
.watches-cta a::before{
    position: absolute;
    content: "";
    bottom: -0.5rem;
    left: 0;right: 0;
    transform: scale(0);
    height: 2px;
    background-color: #8a6e22;
    animation: scaling 1.5s infinite alternate;
}

@keyframes scaling{
    from{ transform: scale(0); }
    to{ transform: scale(1); }
}

.watches-cta a:hover {
    color: #00ffff;
    letter-spacing: 4px;
}

footer {
    width: min(1200px, 100%);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(189, 151, 48, 0.12);
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-color);
}
footer .foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--gold);
}
footer .foot-logo span {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
}
footer .foot-copy {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}
footer .foot-contact {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}
footer .foot-contact strong { 
    color: var(--gold); 
}


/* =============================================
   FAVOURITES DASHBOARD OVERLAY
   ============================================= */
#fav-dashboard {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
#fav-dashboard.open {
    opacity: 1;
    pointer-events: all;
}
.fav-dash-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}
.fav-dash-panel {
    position: relative;
    margin-left: auto;
    width: min(520px, 100vw);
    height: 100vh;
    background: linear-gradient(180deg, #0e0c09 0%, #0a0a0a 100%);
    border-left: 1px solid rgba(189,151,48,0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
#fav-dashboard.open .fav-dash-panel {
    transform: translateX(0);
}

/* top accent line */
.fav-dash-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.fav-dash-header {
    padding: 2rem 1.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(189,151,48,0.1);
    flex-shrink: 0;
}
.fav-dash-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.fav-dash-header-left .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}
.fav-dash-header-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 1px;
}
.fav-dash-close {
    background: none;
    border: 1px solid rgba(189,151,48,0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    color: var(--text-muted);
    flex-shrink: 0;
}
.fav-dash-close:hover {
    background: rgba(189,151,48,0.1);
    border-color: rgba(189,151,48,0.5);
    color: var(--gold);
}
.fav-dash-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.fav-dash-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem 1.8rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(189,151,48,0.2) transparent;
}
.fav-dash-body::-webkit-scrollbar { 
    width: 4px; 
}
.fav-dash-body::-webkit-scrollbar-track { 
    background: transparent; 
}
.fav-dash-body::-webkit-scrollbar-thumb { 
    background: rgba(189,151,48,0.25); 
    border-radius: 2px; 
}

/* Empty state */
.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}
.fav-empty svg {
    width: 48px;
    height: 48px;
    stroke: rgba(189,151,48,0.3);
    fill: none;
}
.fav-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dim);
    font-style: italic;
}
.fav-empty span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Fav item rows */
.fav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(189,151,48,0.07);
    animation: fadeUp 0.35s ease;
}
.fav-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(189,151,48,0.1);
}
.fav-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.fav-item-info {
    flex: 1;
    min-width: 0;
}
.fav-item-info .fav-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fav-item-info .fav-item-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 2px;
}
.fav-item-info .fav-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-top: 4px;
}
.fav-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.fav-item-wa {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 7px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.fav-item-wa:hover {
    background: rgba(37,211,102,0.2);
    border-color: rgba(37,211,102,0.6);
}
.fav-item-wa svg {
    width: 16px;
    height: 16px;
}
.fav-item-remove {
    background: rgba(255,50,50,0.07);
    border: 1px solid rgba(255,50,50,0.18);
    border-radius: 7px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.fav-item-remove:hover {
    background: rgba(255,50,50,0.18);
    border-color: rgba(255,50,50,0.5);
}
.fav-item-remove svg {
    width: 14px;
    height: 14px;
    stroke: #ff6b6b;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.fav-dash-footer {
    padding: 1.2rem 1.8rem;
    border-top: 1px solid rgba(189,151,48,0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.fav-total-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.fav-total-count span {
    color: var(--gold);
    font-size: 0.75rem;
}
.fav-enquire-all {
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    border: none;
    padding: 0.65rem 1.3rem;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.25s, transform 0.2s;
    font-weight: 500;
}
.fav-enquire-all:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.fav-enquire-all:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}


/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* --- Tablet: 2 columns --- */
@media (max-width: 900px) {
    section { width: 100%; }
    .perfumes-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
    .all-perfumes { padding: 0 0.5rem 4rem; }
    .mid-advert { grid-template-columns: 1fr 1fr; }
    .mid-advert .img-area { height: 220px; }
    .side-bar {
        width: 70%;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    #menuBtn {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .fav-dash-panel { width: min(460px, 100vw); }
    .mini-container.mini-container2{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row: span 1;
        grid-column: span 2;
    }
}

/* --- Mobile: 2 columns, small images --- */
@media (max-width: 480px) {
    #menuBtn::before { display: none; }
    #menuBtn {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    .side-bar {
        width: 85%;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    .filter-section {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .filter-tag { padding: .4rem; }
    section { width: 100%; }

    /* 2-column grid on mobile */
    .perfumes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .all-perfumes { padding: 0 0.4rem 3rem; }

    /* Smaller images to fit 2 per row */
    .perf-card .img-area {
        height: 140px;
    }
    .mini-container .perf-card .img-area {
        height: 140px;
    }
    .perf-card .name {
        font-size: 1.1rem;
    }
    .perf-card .brand {
        margin-bottom: 0.5rem;
    }
    .perf-card .info {
        padding: 0.6rem 0.2rem 1rem;
    }

    /* Scandal card on mobile: full width, compact image */
    .dolores {
        grid-column: 1 / -1;
    }
    .dolores .img-area-1 {
        height: 190px;
    }

    /* Mid-advert stacks */
    .mid-advert {
        grid-template-columns: 1fr 1fr;
        margin: 0.5rem 0;
        border-radius: 12px;
    }
    .mid-advert .img-area { height: 200px; }

    /* Fav dashboard full width on mobile */
    #fav-dashboard.open .fav-dash-panel {
        width: 100vw;
    }

    .newsletter { padding: 3rem 1.2rem; }
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    .newsletter-form input,
    .newsletter-form button { width: 100%; }

    .hero { padding: 3rem 1rem; }
    .section-header { padding: 2rem 1rem 1.5rem; }
    footer { padding: 1.5rem 1rem; }

    /* Smaller price / wa row on mobile */
    .card-bottom-row .perfume-price {
        font-size: 0.9rem;
    }
    .card-bottom-row .wa-btn {
        padding: 0.3rem 0.4rem;
    }
    .card-bottom-row .wa-btn svg {
        width: 15px;
        height: 15px;
    }
}


/* =============================================
   SHARED: BADGES
   ============================================= */
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.48rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}
.badge-new  { 
    background: var(--gold);
    border-radius: 24px; 
    color: var(--bg-color); 
    position: absolute;
    top: 1rem;
    left: 10%;
    font-size: 0.48rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
    font-family: 'Montserrat', sans-serif; 
}
.badge-best { 
    border-radius: 24px;
    border: 1px solid var(--gold); color: var(--gold); 
    position: absolute;
    top: 1rem;
    left: 10%;
    font-size: 0.48rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}
.badge-now { 
    border: 1px solid pink; color: pink; 
    border-radius: 24px;
    position: absolute;
    top: 1rem; 
    left: 10%;
    font-size: 0.48rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    background: #00000094;backdrop-filter: blur(12px);
}

/* =============================================
   SHARED: SECTION DIVIDER
   ============================================= */
.section-divider {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--bg-color);
}
.section-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim));
}
.section-divider span:last-child {
    background: linear-gradient(to left, transparent, var(--gold-dim));
}
.section-divider i {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* =============================================
   SHARED: REVEAL / FADE ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(189, 151, 48, 0); }
    50%       { box-shadow: 0 0 18px 4px rgba(189, 151, 48, 0.22); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.18s; }
.fade-up.d3 { transition-delay: 0.28s; }
.fade-up.d4 { transition-delay: 0.38s; }
.fade-up.d5 { transition-delay: 0.48s; }

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }


/* =============================
    MINI PERFUMES SECTION
    ============================ */

.mini-container{
    position: relative;
    border: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row: span 2;
    padding: .2rem;
    border-radius: 12px;
    background: #bd973070;
    gap: 10px
}
.mini-container .perf-card{
    border-radius: 12px;
}
.mini-container .mini-title{
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: clamp(.8rem, 3vw, 1.8rem);
    color: var(--gold-light);
    background: linear-gradient(to left, black,rgba(255, 0, 0, 0.4), green);
    backdrop-filter: blur(20px);
    z-index: 10;
    padding: .2rem;
    border-radius: 10px;
    transform: scale(.8);
    animation: blink 1s infinite alternate;
}

.mini-container.pencil-container2{
    grid-template-columns: repeat(2, 1fr);
    grid-row: span 1;
    grid-column: span 2;

}
.pencil-view-more{
    text-decoration: none;
    color: #fed;
    font-size: .6rem;
    position:absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--gold);
    border-radius: 6px;
    padding: .5rem;
    background: #000;
    box-shadow: 3px 3px 2px #fed;
    transition: .3s ease;
}
.pencil-view-more:is(:hover,:focus){
    box-shadow: 5px 5px 12px #fed;
}
.pencil-view-more:active{
    box-shadow: none;
}




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















