﻿:root {
    --hot: #E8175D;
    --deep: #C4144F;
    --light: #FFE0EE;
    --blush: #FFF0F5;
    --rose: #F9D0DC;
    --soft: #FBBDCF;
    --dark: #2A1520;
    --mid: #6B3A4A;
    --white: #fff;
    --card: #FFF8FA;
    --green: #1CAA55;
    --orange: #D97706;
    --red: #DC2626;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

/* ── TOPSTRIP ── */
.topstrip {
    background: var(--hot);
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 7px 16px;
    font-weight: 500;
}

/* ── NAV ── */
nav {
    background: #fff;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 20px rgba(232,23,93,.09);
    border-bottom: 1.5px solid var(--light);
}

.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-pill {
    background: var(--hot);
    border-radius: 12px;
    padding: 7px 16px 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

    .logo-pill .bn {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 21px;
        color: #fff;
        line-height: 1.1;
        letter-spacing: .5px;
    }

    .logo-pill .bt {
        font-size: 8px;
        color: rgba(255,255,255,.88);
        letter-spacing: 2.2px;
        font-weight: 600;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-size: 13.5px;
        font-weight: 500;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--hot);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sbox {
    display: flex;
    align-items: center;
    background: var(--blush);
    border-radius: 24px;
    padding: 7px 16px;
    gap: 8px;
    border: 1.5px solid var(--rose);
}

    .sbox input {
        border: none;
        background: transparent;
        outline: none;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        width: 130px;
        color: var(--dark);
    }

        .sbox input::placeholder {
            color: #C4A0AE;
        }

.ibt {
    background: none;
    border: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    position: relative;
    color: var(--dark);
    text-decoration: none;
}

    .ibt:hover {
        background: var(--light);
    }

.badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--hot);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .hbg span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
    }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe0ee 55%, #ffd6e7 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 4%;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        right: -100px;
        top: -100px;
        width: 550px;
        height: 550px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,23,93,.09) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-left {
    max-width: 520px;
    z-index: 2;
    animation: fadeUp .7s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--soft);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hot);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--hot);
    }

.hero p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
    animation: fadeUp .7s .2s ease both;
}

.hero-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 420px;
}

.hig-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(232,23,93,.11);
    transition: transform .3s;
    background: #fff;
}

    .hig-card:hover {
        transform: translateY(-6px);
    }

    .hig-card img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    .hig-card.tall {
        grid-row: span 2;
    }

        .hig-card.tall img {
            height: 280px;
        }

    .hig-card:not(.tall) img {
        height: 130px;
    }

.hig-label {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
}

/* ── STATS ── */
.stats {
    background: var(--hot);
    padding: 22px 4%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
}

.si {
    text-align: center;
    color: #fff;
}

    .si .n {
        font-family: 'Cormorant Garamond', serif;
        font-size: 30px;
        font-weight: 600;
        line-height: 1;
    }

    .si .l {
        font-size: 11px;
        opacity: .85;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 4px;
    }

/* ── SECTION ── */
section {
    padding: 60px 4%;
}

.sh {
    text-align: center;
    margin-bottom: 40px;
}

.pill {
    display: inline-block;
    background: var(--light);
    color: var(--hot);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.sh h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
}

    .sh h2 em {
        font-style: italic;
        color: var(--hot);
    }

.sh p {
    color: var(--mid);
    font-size: 14px;
    margin-top: 8px;
}

/* ── PRODUCTS ── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.pc {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    border: 1.5px solid var(--rose);
    position: relative;
}

    .pc:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(232,23,93,.13);
        border-color: var(--soft);
    }

.pbadge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--hot);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: .5px;
    z-index: 2;
}

.wbtn {
    position: absolute;
    top: 9px;
    right: 9px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    font-size: 15px;
    transition: all .2s;
}

    .wbtn:hover {
        background: var(--light);
        transform: scale(1.1);
    }

.pc img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.pc:hover img {
    transform: scale(1.04);
}

.pi {
    padding: 14px 15px 16px;
}

.pbrand {
    font-size: 10px;
    font-weight: 700;
    color: var(--hot);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.pname {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    line-height: 1.3;
}

    .pname a {
        text-decoration: none;
        color: inherit;
    }

.pprice {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
}

.pcur {
    font-size: 16px;
    font-weight: 700;
}

.pori {
    font-size: 12px;
    color: #C4A0AE;
    text-decoration: line-through;
}

.pdis {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.acbtn {
    width: 100%;
    background: var(--hot);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}

    .acbtn:hover {
        background: var(--deep);
    }

/* ── BUTTONS ── */
.btn-p {
    background: var(--hot);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-p:hover {
        background: var(--deep);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,23,93,.28);
        color: #fff;
    }

.btn-o {
    background: transparent;
    color: var(--hot);
    border: 2px solid var(--hot);
    border-radius: 30px;
    padding: 11px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-o:hover {
        background: var(--light);
    }

/* ── FORM ── */
.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
}

    .fg label {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--mid);
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .fg input,
    .fg select,
    .fg textarea {
        border: 1.5px solid var(--rose);
        border-radius: 10px;
        padding: 10px 13px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13.5px;
        outline: none;
        color: var(--dark);
        background: #fff;
        transition: border .2s;
    }

        .fg input:focus,
        .fg select:focus,
        .fg textarea:focus {
            border-color: var(--hot);
        }

/* ── CATEGORIES ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.cat-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

    .cat-card:hover {
        border-color: var(--hot);
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(232,23,93,.12);
    }

    .cat-card img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto 10px;
        display: block;
    }

.cat-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
}

.cat-count {
    font-size: 10.5px;
    color: var(--mid);
    margin-top: 3px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.72);
    padding: 52px 4% 28px;
}

.ft {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 44px;
}

.fb p {
    font-size: 13px;
    line-height: 1.7;
    margin: 14px 0 18px;
}

.fc h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .fc ul a {
        color: rgba(255,255,255,.62);
        font-size: 13px;
        text-decoration: none;
        transition: color .2s;
    }

        .fc ul a:hover {
            color: var(--soft);
        }

.fbot {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

/* ── MOBILE NAV ── */
.mob-ov {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    display: none;
}

    .mob-ov.open {
        opacity: 1;
        pointer-events: all;
        display: block;
    }

.mob-drawer {
    background: #fff;
    width: 270px;
    height: 100%;
    padding: 24px 20px;
    transform: translateX(-100%);
    transition: transform .3s;
    overflow-y: auto;
}

.mob-ov.open .mob-drawer {
    transform: translateX(0);
}

.mob-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark);
    float: right;
}

.mob-links {
    list-style: none;
    margin-top: 30px;
}

    .mob-links li {
        border-bottom: 1px solid var(--light);
    }

    .mob-links a {
        display: block;
        padding: 13px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--dark);
        text-decoration: none;
    }

        .mob-links a:hover {
            color: var(--hot);
        }


/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links, .sbox {
        display: none;
    }

    .hbg {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 44px 4%;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero p {
        margin: 0 auto 28px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        margin-top: 30px;
        justify-content: center;
    }

    .hero-img-grid {
        max-width: 300px;
    }

    .ft {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .hero h1 {
        font-size: 34px;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pc img {
        height: 150px;
    }

    .ft {
        grid-template-columns: 1fr;
    }
}
/* ── LOGIN POPUP ── */
.popup-ov {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

    .popup-ov.open {
        opacity: 1;
        pointer-events: all;
    }

.popup-box {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px);
    transition: transform .3s;
    box-shadow: 0 20px 60px rgba(232,23,93,.15);
}

.popup-ov.open .popup-box {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: var(--blush);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

    .popup-close:hover {
        background: var(--light);
    }

.popup-tabs {
    display: flex;
    background: var(--blush);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 22px;
    gap: 4px;
}

.ptab {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--mid);
    transition: all .2s;
}

    .ptab.active {
        background: var(--hot);
        color: #fff;
    }
/* ── STAR SELECTOR ── */
.star-selector {
    display: flex;
    gap: 6px;
}

.star-opt {
    font-size: 32px;
    color: #D1D5DB;
    cursor: pointer;
    transition: color .15s, transform .15s;
    user-select: none;
}

    .star-opt:hover,
    .star-opt.active {
        color: #FFB800;
        transform: scale(1.15);
    }

/* ── SEARCH DROPDOWN ── */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(232,23,93,.15);
    border: 1.5px solid var(--rose);
    overflow: hidden;
    display: none;
    z-index: 999;
    min-width: 320px;
}

    .search-dropdown.open {
        display: block;
    }

.sd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    transition: background .2s;
    border-bottom: 1px solid var(--blush);
}

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

    .sd-item:hover {
        background: var(--blush);
    }

    .sd-item img {
        width: 44px;
        height: 44px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

.sd-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}

.sd-cat {
    font-size: 11px;
    color: var(--mid);
    margin-top: 2px;
}

.sd-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--hot);
    margin-left: auto;
    white-space: nowrap;
}

.sd-all {
    display: block;
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--hot);
    background: var(--blush);
    text-decoration: none;
}

    .sd-all:hover {
        background: var(--light);
    }

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* Stagger delays */
.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

/* ── PRODUCT CARD HOVER ── */
.pc {
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}

    .pc:hover {
        transform: translateY(-8px) scale(1.01);
    }

/* ── HERO FLOATING ELEMENTS ── */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-img-grid .hig-card:nth-child(1) {
    animation: float 4s ease-in-out infinite;
}

.hero-img-grid .hig-card:nth-child(2) {
    animation: float 4s 1s ease-in-out infinite;
}

.hero-img-grid .hig-card:nth-child(3) {
    animation: float 4s 2s ease-in-out infinite;
}

/* ── BUTTON PULSE ── */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232,23,93,.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(232,23,93,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232,23,93,0);
    }
}

.btn-p.pulse {
    animation: pulse 2s infinite;
}

/* ── STATS COUNTER ── */
.si .n {
    transition: all .3s;
}

/* ── SHIMMER LOADING ── */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, var(--blush) 25%, var(--light) 50%, var(--blush) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
/* ── PRODUCT DETAIL THUMB SCROLLBAR ── */
#thumbList {
    scrollbar-width: thin;
    scrollbar-color: var(--soft) var(--blush);
}

    #thumbList::-webkit-scrollbar {
        width: 4px;
    }

    #thumbList::-webkit-scrollbar-track {
        background: var(--blush);
        border-radius: 4px;
    }

    #thumbList::-webkit-scrollbar-thumb {
        background: var(--soft);
        border-radius: 4px;
    }

        #thumbList::-webkit-scrollbar-thumb:hover {
            background: var(--hot);
        }



/* ── PRODUCT CARD HOVER EFFECT ── */
.pc img {
    transition: transform .4s ease;
}

.pc:hover img {
    transform: scale(1.05);
}

/* ── PRODUCT BADGE COLORS ── */
.pbadge.new {
    background: #3A1F5E;
}

.pbadge.hot {
    background: #D97706;
}

.pbadge.sale {
    background: var(--hot);
}

/* ── PRODUCT CARD BOTTOM QUICK ADD ── */
.pc .quick-add {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: var(--hot);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: bottom .3s;
    cursor: pointer;
    border: none;
    width: 100%;
}

.pc:hover .quick-add {
    bottom: 0;
}
/* ── PRODUCT DETAIL RESPONSIVE ── */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .product-thumb-section {
        flex-direction: row !important;
        height: auto !important;
    }

    #thumbList {
        flex-direction: row !important;
        width: 100% !important;
        max-height: 80px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 8px;
    }

        #thumbList .thumb-btn {
            flex-shrink: 0;
            width: 60px !important;
            height: 60px !important;
        }

    .shade-circle {
        width: 30px !important;
        height: 30px !important;
    }
}