:root {
    --brand-coral: #FF6B4A;
    --brand-peach: #FFE0D6;
    --brand-pink: #FF4F91;
    --brand-yellow: #FFD95A;
    --brand-teal: #3EC9A7;
    --brand-dark: #181818;
    --brand-gray: #F5F5F3;
}

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

body {
    font-family: 'Playfair Display', serif;
    background: #fefaf5;  /* soft cream */
    color: #2e2e2e;
    position: relative;
    overflow-x: hidden;
}

/* subtle ethnic pattern overlay (very light) */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20 20 L30 30 M50 10 L55 25 M70 40 L80 35 M10 70 L25 68 M40 90 L50 75 M80 85 L75 70" stroke="%23b35e7c" stroke-width="1.2" fill="none"/><circle cx="40" cy="40" r="3" fill="%23b35e7c"/><circle cx="75" cy="20" r="2" fill="%23b35e7c"/><circle cx="18" cy="80" r="4" fill="%23b35e7c"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ── NAV ── */
.navbar {
    padding: 1rem 2rem;
    background: #fefaf5;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand-dark) !important;
    letter-spacing: -0.5px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555 !important;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--brand-dark) !important; }
.nav-link.trend-link {
    color: var(--brand-dark) !important;
    position: relative;
}
.trend-dot {
    width: 8px; height: 8px;
    background: var(--brand-coral);
    border-radius: 50%;
    position: absolute;
    top: 2px; right: 6px;
}
.cart-btn {
    background: var(--brand-dark);
    color: #fff !important;
    border-radius: 30px;
    padding: 0.45rem 1.2rem !important;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.cart-badge {
    background: var(--brand-coral);
    color: #fff;
    border-radius: 50%;
    width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
}
.hamburger-btn {
    background: #F0EDE8;
    border: none;
    border-radius: 10px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.hamburger-btn span {
    display: block;
    width: 18px; height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    position: relative;
}
.hamburger-btn span::before, .hamburger-btn span::after {
    content: '';
    position: absolute;
    width: 18px; height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    left: 0;
}
.hamburger-btn span::before { top: -6px; }
.hamburger-btn span::after { top: 6px; }

/* ── HERO ── */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}
.hero-image-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-model-img {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 340px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.hero-model-img img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.hero-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.6rem;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}
.hero-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}

/* Reviews row */
.reviews-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}
.reviews-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.social-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1.5px solid #e5e5e5;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: var(--brand-dark);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background: white;
    border-radius: 50%;
    color: #9b5c72;
    font-size: 1rem;
    margin: 0 8px;
    border: 1px solid #f2c7cf;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    background: #9b5c72;
    color: white;
    border-color: #9b5c72;
    transform: scale(1.08);
}
.divider-line { width: 48px; height: 1.5px; background: #ddd; flex-shrink: 0; }
.stat-chip {
    padding: 0.55rem 1.1rem;
    border-radius: 14px;
    border: 2px solid var(--brand-coral);
    display: flex; flex-direction: column; align-items: center;
    background: #fff;
}
.stat-chip.filled { background: var(--brand-coral); border-color: var(--brand-coral); }
.stat-chip .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}
.stat-chip.filled .num { color: #fff; }
.stat-chip .lbl { font-size: 0.7rem; font-weight: 500; color: #888; }
.stat-chip.filled .lbl { color: rgba(255,255,255,0.85); }

/* ── PREMIUM SHADES ── */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}
.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
    display: block;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
}
.gallery-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.2rem;
}
.go-link {
    font-size: 0.8rem; font-weight: 600;
    color: var(--brand-yellow);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.go-link:hover { text-decoration: underline; color: var(--brand-yellow); }

/* Fashion cards */
.fashion-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.fashion-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}
.fashion-card:hover img { transform: scale(1.06); }
.fashion-label {
    position: absolute;
    bottom: 14px; left: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

/* Scroll row */
.fashion-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.fashion-row::-webkit-scrollbar { display: none; }

/* Placeholder image using colored blocks */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--ph-bg, #eee);
}

.footer-note {
    font-size: 0.9rem;
    color: #947282;
}

hr {
    border-top: 2px dashed #ebc8cf;
    opacity: 0.5;
}

/* product icons row – subtle */
.floating-icons {
    font-size: 1.7rem;
    color: #cda1b0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* responsive fixes */
@media (max-width: 576px) {
    .hero-card {
    padding: 2rem 1.2rem;
    border-radius: 2rem;
    }
    .hero-image-col {
        margin-top: 1.5rem;
    }
    .time-number {
    font-size: 2rem;
    }
    .separator-dots {
    font-size: 1.8rem;
    }
    .brand-headline {
    font-size: 3.2rem;
    }
}

.bi-star-fill, .bi-heart-fill {
    color: #d68ea5;
}

/* subtle animation on ethnic elements */
.shimmer-effect {
    background: linear-gradient(110deg, #fceaea 25%, #ffe2e2 40%, #fceaea 55%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    -webkit-background-clip: text;
    background-clip: text;
}

.text-primary {
    color: #FF6B4A !important;
}
