/* Theme: Premium Soft Pink Cosmetics */
:root {
    --primary: #c72f68;
    --dark: #3b0d22;
    --blush-100: #f9e8ee;
    --blush-200: #f7dbe4;
    --glass: rgba(255, 255, 255, 0.7);
    --card-radius: 1.2rem;
}

/* Global body */
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
    color: var(--dark);
}

/* Top announcement */
.top-announcement {
    background: linear-gradient(90deg, rgba(199, 47, 104, 0.95), rgba(199, 47, 104, 0.9));
    color: #fff;
    font-weight: 600;
}

/* Navbar */
.navbar-theme {
    background: transparent;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: .6rem 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(199, 47, 104, 0.12);
}

.text-pink {
    color: var(--primary) !important
}

.navbar-theme .nav-link {
    color: var(--dark);
    font-weight: 500;
    margin-right: .25rem;
}

.navbar-theme .nav-link:hover {
    color: var(--primary)
}

.search-box .form-control {
    border-radius: 50px 10px 10px 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-box .input-group-text {
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(0, 0, 0, 0.06)
}

.cart-badge {
    top: -6px;
    right: -8px;
    padding: .25rem .5rem;
    border-radius: 999px;
    font-size: .75rem
}

.btn-pink {
    background: var(--primary);
    border: none
}

.btn-pink:hover {
    background: #b02657
}

/* Hero */
.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #fff0f4 0%, #fff 60%);
    box-shadow: 0 30px 80px rgba(199, 47, 104, 0.06);
}

.hero-banner::before {
    content: "";
    position: absolute;
    right: -6%;
    top: -12%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(199, 47, 104, 0.14), transparent 55%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: var(--glass);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(199, 47, 104, 0.06)
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02
}

.hero-copy p.lead {
    color: #6b4952;
    max-width: 620px
}

.hero-action .btn {
    min-width: 160px;
    border-radius: 999px
}

.hero-image {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 30px 80px rgba(199, 47, 104, 0.08);
    object-fit: cover
}

/* Feature strip */
.feature-strip {
    background: transparent;
    margin-top: 1.4rem
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .8rem
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem
}

.feature-item small {
    color: #6b4952
}

/* Promo strip */
.promo-strip {
    background: linear-gradient(90deg, rgba(247, 231, 236, 1), rgba(255, 249, 250, 1));
    border-radius: 1.5rem;
    padding: 1.6rem
}

.promo-strip h3 {
    color: var(--dark)
}

/* Product cards */
.product-card {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(59, 13, 34, 0.06)
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover
}

.product-card .card-body {
    padding: 1.2rem
}

.product-card .price {
    color: var(--primary);
    font-weight: 700
}

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: .35rem .6rem;
    border-radius: .6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #ffeef4);
    color: var(--primary)
}

/* Category cards (circular style) */
.category-card {
    border-radius: 1.2rem;
    min-height: 180px;
    background: linear-gradient(135deg, #fff4f8, #fff);
    box-shadow: 0 10px 30px rgba(199, 47, 104, 0.04);
    display: flex;
    align-items: center
}

.category-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #ffeef4);
    display: flex;
    align-items: center;
    justify-content: center
}

/* Concern & review cards */
.concern-card {
    border-radius: 1rem;
    border: 1px solid rgba(199, 47, 104, 0.06);
    padding: 1.2rem;
    background: #fff
}

.review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.04)
}

.review-avatar {
    height: 84px;
    width: 84px;
    border-radius: 1rem;
    object-fit: cover
}

/* Footer adjustments */
.site-footer {
    background: var(--dark);
    color: #fff
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85)
}

/* Responsive tweaks */
@media (max-width:991px) {
    .hero-banner {
        padding: 2rem
    }

    .hero-banner::before {
        display: none
    }

    .search-box {
        display: none
    }
}

@media (max-width:576px) {
    .brand-mark {
        width: 40px;
        height: 40px
    }

    .hero-copy h1 {
        font-size: 1.9rem
    }

    .product-card .card-body {
        padding: .9rem
    }
}

/* Utility */
.text-muted-2 {
    color: #7a5b63
}

/* slider dots placeholder */
.hero-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(59, 13, 34, 0.12)
}

.hero-dots button.active {
    background: var(--primary)
}

/* Right-side promo card */
.promo-card {
    background: linear-gradient(180deg, #fff7f9, #fff);
    box-shadow: 0 24px 50px rgba(199, 47, 104, 0.06);
    border: 1px solid rgba(199, 47, 104, 0.03);
    border-radius: 1rem
}

/* wishlist icon overlay */
.product-card a.position-absolute i {
    background: rgba(255, 255, 255, 0.95);
    padding: .45rem;
    border-radius: 999px
}

/* category tweaks for grid */
.category-card {
    background: transparent;
    box-shadow: none
}

.category-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fff, #fff7f9);
    border: 1px solid rgba(199, 47, 104, 0.04)
}

/* small utility */
.text-muted-2 {
    color: #7a5b63
}