/* ─── Design Tokens ────────────────────────────────────────── */
:root {
    --brand-primary: #2a7070;
    --brand-primary-d: #1f5858;
    --brand-primary-l: rgba(42, 112, 112, .10);
    --brand-accent: #c9a84c;
    --brand-accent-d: #a8882e;
    --brand-bg: #faf5ec;
    --brand-soft: #f2ead8;
    --brand-text: #1e1e1e;
    --brand-muted: #5f6b6b;
    --brand-border: #e2d9c8;
    --card-radius: 16px;
    --section-gap: 5rem;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, .14);
}

/* ─── Base ─────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--brand-bg);
    color: var(--brand-text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    padding-top: 126px;
    /* announce bar ~34px + navbar ~92px */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: var(--brand-text);
    line-height: 1.3;
}

img {
    max-width: 100%;
}

a {
    color: var(--brand-primary);
}

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════════ */
.announce-bar {
    background: var(--brand-primary);
    color: rgba(255, 255, 255, .92);
    font-size: .75rem;
    font-weight: 500;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: .42rem 1rem;
    letter-spacing: .2px;
}

.announce-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
}

.announce-item {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.announce-item i {
    font-size: .75rem;
    color: var(--brand-accent);
}

.announce-item a {
    color: #fff;
    text-decoration: none;
}

.announce-item a:hover {
    text-decoration: underline;
}

.announce-sep {
    color: rgba(255, 255, 255, .3);
    margin: 0 .2rem;
}

@media (max-width: 991px) {
    .announce-sep {
        display: none;
    }

    .announce-inner {
        flex-direction: column;
        gap: .2rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.site-navbar {
    background: rgba(250, 245, 236, .98) !important;
    border-bottom: 1px solid var(--brand-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    top: 34px;
    /* below announce bar */
    padding: .3rem 0;
    transition: box-shadow .3s;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1040;
}

.site-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
}

.site-logo {
    height: 72px;
    width: auto;
}

/* Nav links */
.nav-links-list {
    gap: 0;
}

.nav-link-custom {
    display: block;
    color: #2a3535;
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .2px;
    padding: .55rem .9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: color .2s, background .2s;
    position: relative;
}

.nav-link-custom:hover {
    color: var(--brand-primary);
    background: var(--brand-primary-l);
}

.nav-link-custom.active {
    color: var(--brand-primary);
}

.nav-has-dropdown {
    cursor: pointer;
}

.nav-chevron {
    font-size: .65rem;
    transition: transform .25s;
    vertical-align: middle;
    margin-left: .15rem;
}

.nav-dropdown-item:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Mega dropdown */
.nav-dropdown-item {
    position: relative;
}

.nav-mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 600px;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 999;
}

.nav-dropdown-item:hover .nav-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mega-inner {
    padding: 1.25rem 1.5rem 1.5rem;
}

.nav-mega-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .85rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--brand-soft);
}

.nav-mega-header span {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-muted);
}

.nav-mega-viewall {
    font-size: .78rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
}

.nav-mega-viewall:hover {
    text-decoration: underline;
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .25rem;
}

.nav-mega-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .7rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--brand-text);
    text-decoration: none;
    transition: background .15s, color .15s;
}

.nav-mega-link:hover {
    background: var(--brand-soft);
    color: var(--brand-primary);
}

.nav-mega-icon {
    font-size: .8rem;
    color: var(--brand-accent);
    flex-shrink: 0;
}

/* Cart button */
.nav-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--brand-soft);
    border-radius: 50%;
    color: var(--brand-primary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
    position: relative;
}

.nav-cart-btn:hover {
    background: var(--brand-primary-l);
    transform: scale(1.07);
    color: var(--brand-primary);
}

.nav-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #e63946;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-bg);
}

.nav-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--brand-text);
    font-size: 1.15rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.nav-action-icon:hover {
    background: var(--brand-soft);
    color: var(--brand-primary);
}

/* Register button */
.btn-nav-register {
    display: inline-flex;
    align-items: center;
    background: var(--brand-primary);
    color: #fff !important;
    border-radius: 10px;
    padding: .42rem 1.1rem;
    font-size: .83rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.btn-nav-register:hover {
    background: var(--brand-primary-d);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    padding: .25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-text);
    border-radius: 2px;
    margin: 4px 0;
    transition: all .25s;
}

/* Mobile auth */
.nav-mobile-auth {
    padding: 1rem 0 .5rem;
    border-top: 1px solid var(--brand-soft);
    margin-top: .5rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    padding: .6rem .5rem;
    border-radius: 8px;
    color: var(--brand-text);
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
}

.nav-mobile-link:hover {
    background: var(--brand-soft);
    color: var(--brand-primary);
}

/* ── legacy compat */
.cart-count-badge {
    font-size: .6rem;
    top: 2px !important;
}

/* Search toggle */
.search-toggle {
    background: none;
    border: none;
    color: #2e3c3c;
    font-size: 1.1rem;
    padding: .4rem .6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color .2s, background .2s;
}

.search-toggle:hover {
    color: var(--brand-primary);
    background: var(--brand-primary-l);
}

/* Search bar overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9998;
    align-items: flex-start;
    padding-top: 90px;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-box {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-family: "Inter", sans-serif;
    background: transparent;
}

.search-input-wrap button {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 1rem 1.4rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
}

.search-input-wrap button:hover {
    background: var(--brand-primary-d);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn-brand {
    background: var(--brand-primary);
    color: #fff;
    border: 2px solid var(--brand-primary);
    border-radius: 50px;
    padding: .55rem 1.6rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .25s, border-color .25s, transform .2s, box-shadow .2s;
}

.btn-brand:hover {
    background: var(--brand-primary-d);
    border-color: var(--brand-primary-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 112, 112, .28);
}

.btn-outline-brand {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: 50px;
    padding: .55rem 1.6rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .25s;
}

.btn-outline-brand:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 112, 112, .22);
}

.btn-outline-dark {
    border-radius: 50px !important;
    border-width: 2px !important;
    font-weight: 600;
    letter-spacing: .3px;
    padding: .55rem 1.6rem;
    transition: background .25s, transform .2s, box-shadow .2s;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.btn-gold {
    background: var(--brand-accent);
    color: #fff;
    border: 2px solid var(--brand-accent);
    border-radius: 50px;
    padding: .55rem 1.6rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .25s, transform .2s, box-shadow .2s;
}

.btn-gold:hover {
    background: var(--brand-accent-d);
    border-color: var(--brand-accent-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

/* ─── Section Utilities ────────────────────────────────────── */
.section-gap {
    margin-bottom: var(--section-gap);
}

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: .5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .35rem;
    position: relative;
}

.section-title-underline {
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
    border-radius: 2px;
    margin-top: .55rem;
}

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

.text-accent {
    color: var(--brand-accent) !important;
}

.text-muted {
    color: var(--brand-muted) !important;
}

/* ─── Main Content ─────────────────────────────────────────── */
.site-main {
    min-height: 75vh;
}

/* ─── Announcement Bar ─────────────────────────────────────── */
.announce-bar {
    background: linear-gradient(90deg, var(--brand-primary), #1a5c5c, var(--brand-primary-d));
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-align: center;
    padding: .45rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

.announce-bar a {
    color: var(--brand-accent);
    text-decoration: none;
}

body.has-announce-bar {
    padding-top: 143px;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #edf5f3 0%, #f5f0e4 55%, #eef7f5 100%);
    border: 1px solid var(--brand-border);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 168, 76, .14) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(42, 112, 112, .10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-primary-l);
    border: 1px solid rgba(42, 112, 112, .2);
    border-radius: 50px;
    padding: .35rem 1rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--brand-primary);
}

.hero-carousel {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-cake-image {
    height: 420px;
    object-fit: cover;
}

/* ─── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
    background: var(--brand-primary);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: .5rem 1rem;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .3rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .15);
    margin: 0 auto;
}

/* ─── How It Works ─────────────────────────────────────────── */
.how-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.how-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--brand-primary-l);
    border: 2px solid rgba(42, 112, 112, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    font-size: 1.8rem;
    color: var(--brand-primary);
    transition: transform .25s, box-shadow .25s;
}

.how-step:hover .how-step-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(42, 112, 112, .18);
}

.how-step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.how-connector {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary-l), var(--brand-accent), var(--brand-primary-l));
    z-index: 0;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.cake-card {
    border-radius: var(--card-radius) !important;
    overflow: hidden;
    border: 1px solid var(--brand-border) !important;
    transition: transform .3s ease, box-shadow .3s ease;
    background: #fff !important;
}

.cake-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .13) !important;
}

.cake-img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.cake-card:hover .cake-img {
    transform: scale(1.04);
}

.card-body {
    padding: 1.25rem;
}

.price-text {
    font-family: "Playfair Display", serif;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1.05rem;
}

.price-amount {
    font-size: 1.3rem;
}

.stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .3rem .7rem;
}

/* Wishlist heart button on card */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #aaa;
    cursor: pointer;
    transition: color .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    backdrop-filter: blur(4px);
}

.wishlist-btn:hover,
.wishlist-btn.wishlisted {
    color: #e74c3c;
    transform: scale(1.12);
}

/* ─── Occasion Cards ─────────────────────────────────────────── */
.occasion-card {
    border-radius: var(--card-radius) !important;
    overflow: hidden;
    border: 1px solid var(--brand-border) !important;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.occasion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .14) !important;
}

.occasion-img {
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.occasion-card:hover .occasion-img {
    transform: scale(1.05);
}

.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem .9rem;
    background: linear-gradient(to top, rgba(15, 35, 35, .82) 0%, transparent 100%);
    color: #fff;
}

.occasion-overlay h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.occasion-overlay small {
    opacity: .85;
    font-size: .78rem;
}

.occasion-emoji {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    z-index: 2;
    transition: transform .25s ease;
}

.occasion-card:hover .occasion-emoji {
    transform: scale(1.15);
}

/* ─── Why Choose Us ─────────────────────────────────────────── */
.why-choose-wrap {
    background: var(--brand-soft);
    border-radius: 24px;
    border: 1px solid var(--brand-border);
}

.feature-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    height: 100%;
    border: 1px solid var(--brand-border);
    transition: transform .25s, box-shadow .25s;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.feature-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: var(--brand-primary-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--brand-primary);
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
    max-width: 720px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    color: var(--brand-primary-l);
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-primary);
    border: 2px solid var(--brand-border);
    flex-shrink: 0;
}

.testimonial-stars {
    color: var(--brand-accent);
    font-size: .85rem;
}

/* ─── Testimonial Grid Cards ─────────────────────────────────── */
.testimonial-grid-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.testimonial-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-grid-card::before {
    content: '\201C';
    font-family: "Playfair Display", serif;
    font-size: 6rem;
    color: var(--brand-primary-l);
    position: absolute;
    top: -1rem;
    left: 1.25rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--brand-text);
    font-style: italic;
}

/* ─── Stats Icons ────────────────────────────────────────────── */
.stat-icon {
    display: block;
    font-size: 1.45rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .35rem;
}

.stat-item-bordered {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #1f5858 0%, var(--brand-primary) 55%, #1a7070 100%);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 168, 76, .28) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
}

.cta-banner-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.cta-banner-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .8);
    max-width: 480px;
}

.cta-banner-secondary {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .25s, border-color .25s, transform .2s;
}

.cta-banner-secondary:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-banner-title {
        font-size: 1.35rem;
    }

    /* Checkout tablet adjustments */
    .checkout-section {
        padding: 1.35rem 1.15rem;
    }

    .order-summary-card .summary-body {
        padding: 1rem 1.15rem;
    }

    .order-summary-card .summary-head {
        padding: 1rem 1.15rem;
    }
}


/* ─── Category Filter Pills ─────────────────────────────────── */
.filter-pills .btn {
    border-radius: 50px !important;
    font-size: .82rem;
    font-weight: 600;
    padding: .38rem 1.15rem;
    letter-spacing: .2px;
    transition: all .2s;
}

.filter-pills .btn-brand {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.filter-pills .btn-outline-dark {
    border-color: var(--brand-border) !important;
    color: var(--brand-muted) !important;
}

.filter-pills .btn-outline-dark:hover {
    border-color: var(--brand-primary) !important;
    color: var(--brand-primary) !important;
    background: var(--brand-primary-l);
    transform: none;
    box-shadow: none;
}

/* ─── Badges ─────────────────────────────────────────────────── */
.premium-badge {
    background: rgba(201, 168, 76, .18);
    color: #7a6020;
    border: 1px solid rgba(201, 168, 76, .4);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem .9rem;
}

/* ─── Trust Badges ───────────────────────────────────────────── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand-muted);
}

.trust-badge i {
    color: var(--brand-primary);
    font-size: 1rem;
}

/* ─── Payment Methods ───────────────────────────────────────── */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.payment-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .3rem .7rem;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ─── Detail Page ─────────────────────────────────────────────── */

/* Clean floating image wrap with gradient bg + decorative blobs */
.detail-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: linear-gradient(145deg, #f5f0e8 0%, #eef5f5 100%);
    box-shadow: 0 20px 60px rgba(42,112,112,.14), 0 6px 20px rgba(0,0,0,.07);
}

.detail-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.detail-blob-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(201,168,76,.25) 0%, transparent 65%);
}
.detail-blob-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(42,112,112,.2) 0%, transparent 65%);
}

.detail-cake-image {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Thumbnail gallery strip */
.detail-thumb-strip {
    display: flex;
    gap: .55rem;
    margin-top: .75rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-border) transparent;
}
.detail-thumb-strip::-webkit-scrollbar {
    height: 4px;
}
.detail-thumb-strip::-webkit-scrollbar-track {
    background: transparent;
}
.detail-thumb-strip::-webkit-scrollbar-thumb {
    background: var(--brand-border);
    border-radius: 4px;
}
.detail-thumb {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color .2s, box-shadow .2s;
    background: var(--brand-soft);
}
.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.detail-thumb:hover img {
    transform: scale(1.07);
}
.detail-thumb.active {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(42,112,112,.15);
}
.detail-thumb:hover:not(.active) {
    border-color: var(--brand-accent);
}

.detail-info-strip {
    display: flex;
    gap: 1.2rem;
    font-size: .78rem;
    color: var(--brand-muted);
    padding: .7rem 1rem;
    flex-wrap: wrap;
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    margin-top: .75rem;
}
.detail-info-strip span {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.detail-cake-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.2;
}

.detail-option-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.detail-option-label {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--brand-dark);
}

/* Pill-style variant selectors */
.variant-pill {
    display: inline-flex;
    align-items: center;
    padding: .42rem 1rem;
    border-radius: 50px;
    border: 1.5px solid var(--brand-border);
    background: #fff;
    color: var(--brand-dark);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.variant-pill:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(42,112,112,.05);
}
.variant-pill.active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(42,112,112,.3);
}

.detail-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.detail-addon-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1.5px solid var(--brand-border);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.detail-addon-card:hover {
    border-color: var(--brand-accent);
}

.variant-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.form-select,
.form-control {
    border-color: var(--brand-border);
    border-radius: 10px;
    font-size: .9rem;
    padding: .58rem .95rem;
    transition: border-color .2s, box-shadow .2s;
    background-color: #fff;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(42, 112, 112, .12);
}

.form-label {
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .4px;
    color: var(--brand-muted);
    text-transform: uppercase;
    margin-bottom: .4rem;
}

/* ─── Checkout Page ──────────────────────────────────────────── */
.checkout-section {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.checkout-section .section-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--brand-border);
    color: var(--brand-text);
}

.checkout-section .section-head i {
    font-size: 1.15rem;
    color: var(--brand-primary);
}

/* Order summary sidebar */
.order-summary-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 130px;
}

.order-summary-card .summary-head {
    background: var(--brand-soft);
    border-radius: 20px 20px 0 0;
    padding: 1.2rem 1.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid var(--brand-border);
}

.order-summary-card .summary-body {
    padding: 1.25rem 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    font-size: .88rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1rem;
    border-top: 2px solid var(--brand-border);
    margin-top: .5rem;
    padding-top: .85rem;
    color: var(--brand-primary);
    font-family: "Playfair Display", serif;
}

.summary-row .discount-val {
    color: #1a7a4a;
    font-weight: 600;
}

/* Time slot select */
.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}

.time-slot-btn {
    border: 2px solid var(--brand-border);
    border-radius: 10px;
    padding: .45rem .6rem;
    font-size: .82rem;
    font-weight: 600;
    background: #fff;
    color: var(--brand-muted);
    cursor: pointer;
    text-align: center;
    transition: all .2s;
}

.time-slot-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.time-slot-btn.active {
    border-color: var(--brand-primary);
    background: var(--brand-primary-l);
    color: var(--brand-primary);
}

/* Razorpay pay button */
.btn-razorpay {
    background: linear-gradient(135deg, #3395ff 0%, #004caf 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .8rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    width: 100%;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.btn-razorpay:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51, 149, 255, .3);
}

.btn-razorpay:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* ─── Profile Page ───────────────────────────────────────────── */
.profile-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.profile-card-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a5858 100%);
    padding: 2rem 1.75rem;
    color: #fff;
    position: relative;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 3px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
}

.profile-card-body {
    padding: 1.5rem 1.75rem;
}

/* Order status badge colors */
.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #17a2b8;
}

.status-preparing {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.status-out_for_delivery {
    background: #e8d5f7;
    color: #5a189a;
    border: 1px solid #9b5de5;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #dc3545;
}

.order-status-badge {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 50px;
}

/* ─── Review Stars ───────────────────────────────────────────── */
.star-rating {
    display: flex;
    gap: .2rem;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color .15s;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: var(--brand-accent);
}

.star-rating {
    flex-direction: row-reverse;
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: var(--brand-accent);
}

/* ─── Call Floating Button ───────────────────────────────────── */
.call-float {
    position: fixed;
    bottom: 98px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(42, 112, 112, .4);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(42, 112, 112, .55);
    color: #fff;
}

.call-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.call-float:hover .call-tooltip {
    opacity: 1;
}

/* ─── WhatsApp Floating Button ──────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    animation: float-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
    color: #fff;
}

@keyframes float-pulse {

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

    50% {
        transform: scale(1.06);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .8rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ─── Back to Top ─────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 168px;
    right: 28px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid var(--brand-border);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: #0b1f1f;
    color: #b0c8c8;
}

.site-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 50%, var(--brand-primary) 100%);
}

.site-footer a {
    text-decoration: none;
}

/* Logo & tagline */
.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: .84rem;
    line-height: 1.9;
    color: rgba(176, 200, 200, .7);
    margin-bottom: 1.4rem;
    max-width: 360px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .6rem;
    font-size: .83rem;
    color: rgba(176, 200, 200, .8);
}

.fc-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(201, 168, 76, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon i {
    color: var(--brand-accent);
    font-size: .78rem;
}

.footer-contact a {
    color: rgba(176, 200, 200, .8);
    transition: color .2s;
}

.footer-contact a:hover {
    color: var(--brand-accent) !important;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: .45rem;
}

.fsocial-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(176, 200, 200, .8);
    font-size: 1rem;
    text-decoration: none;
    transition: background .22s, color .22s, border-color .22s, transform .25s;
}

.fsocial-btn:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff !important;
    transform: translateY(-3px);
}

/* Section headings */
.footer-heading {
    font-family: "Inter", sans-serif;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(201, 168, 76, .18);
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .55rem;
}

.footer-links a {
    font-size: .84rem;
    color: rgba(176, 200, 200, .7);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    display: inline-block;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--brand-accent) !important;
    padding-left: 6px;
}

/* Delivery area tags */
.footer-areas {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.footer-areas span {
    font-size: .71rem;
    font-weight: 500;
    color: rgba(176, 200, 200, .65);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: .22rem .6rem;
    transition: background .2s, color .2s, border-color .2s;
}

.footer-areas span:hover {
    background: rgba(201, 168, 76, .1);
    color: var(--brand-accent);
    border-color: rgba(201, 168, 76, .25);
}

/* Payment / trust badges */
.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .38rem;
}

.ftrust-badge {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: .35rem .75rem;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(176, 200, 200, .85);
    white-space: nowrap;
}

.ftrust-badge i {
    font-size: .72rem;
    color: rgba(176, 200, 200, .45);
}

.ftrust-badge.ftrust-green {
    border-color: rgba(52, 199, 89, .2);
}

.ftrust-badge.ftrust-green i {
    color: #34c759;
}

/* Bottom bar */
.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .2);
}

.footer-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .85rem 0;
    font-size: .77rem;
    color: rgba(176, 200, 200, .4);
}

.footer-bar-inner a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: opacity .2s;
}

.footer-bar-inner a:hover {
    opacity: .8;
}

.footer-heart {
    color: #e84b6a;
    font-size: .7rem;
}

/* ─── Admin Styles ───────────────────────────────────────────── */
.admin-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.btn-admin {
    background: var(--brand-primary);
    color: #fff;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: .85rem;
    padding: .55rem 1rem;
    transition: background .2s;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-admin:hover {
    background: var(--brand-primary-d);
    color: #fff;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ─── Page Banner ─────────────────────────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, var(--brand-soft) 0%, #e8f0ef 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--brand-border);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(42, 112, 112, .08) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* ─── Misc ───────────────────────────────────────────────────── */
.divider-dot::before {
    content: '·';
    margin: 0 .4rem;
    color: var(--brand-muted);
}

/* ══════════════════════════════════════════════════════════════
   CATALOG PAGE
══════════════════════════════════════════════════════════════ */

/* Hero Banner */
.catalog-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1f5858 60%, #c9a84c 130%);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.catalog-hero::before {
    content: '🎂';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: .13;
    pointer-events: none;
}

.breadcrumb-catalog {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
}

.breadcrumb-catalog .breadcrumb-item a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: .83rem;
}

.breadcrumb-catalog .breadcrumb-item.active {
    color: rgba(255, 255, 255, .55);
    font-size: .83rem;
}

.breadcrumb-catalog .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

.catalog-hero-title {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .35rem;
    line-height: 1.2;
}

.catalog-hero-title em {
    color: var(--brand-accent);
    font-style: italic;
}

.catalog-hero-sub {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    margin: 0;
}

/* Sidebar */
.catalog-sidebar-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    overflow: hidden;
}

.catalog-sidebar-heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-muted);
    padding: 1rem 1.25rem .75rem;
    border-bottom: 1px solid var(--brand-soft);
}

.catalog-cat-list {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
}

.catalog-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 1.25rem;
    text-decoration: none;
    color: var(--brand-text);
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
}

.catalog-cat-link:hover {
    background: var(--brand-soft);
    color: var(--brand-primary);
    border-left-color: var(--brand-primary);
}

.catalog-cat-link.active {
    background: var(--brand-primary-l);
    color: var(--brand-primary);
    font-weight: 700;
    border-left-color: var(--brand-primary);
}

.catalog-cat-count {
    background: var(--brand-soft);
    color: var(--brand-muted);
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: .1rem .55rem;
    min-width: 1.8rem;
    text-align: center;
}

.catalog-cat-link.active .catalog-cat-count {
    background: var(--brand-primary);
    color: #fff;
}

/* Info Box */
.catalog-info-box {
    padding: 0;
}

.catalog-how-list {
    list-style: none;
    margin: 0;
    padding: .25rem 1.25rem .75rem;
    counter-reset: how-step;
}

.catalog-how-list li {
    counter-increment: how-step;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem 0;
    font-size: .82rem;
    color: var(--brand-muted);
    border-bottom: 1px dashed var(--brand-soft);
}

.catalog-how-list li:last-child {
    border-bottom: none;
}

.catalog-how-list li::before {
    content: counter(how-step);
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.catalog-info-box .catalog-sidebar-heading {
    padding-bottom: .6rem;
}

.catalog-info-box .btn {
    margin: 0 1.25rem 1.25rem;
    width: calc(100% - 2.5rem);
}

/* Toolbar */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: .65rem 1rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.catalog-results-count {
    font-size: .88rem;
    color: var(--brand-muted);
}

.catalog-results-count strong {
    color: var(--brand-text);
    font-weight: 700;
}

.catalog-sort-label {
    font-size: .82rem;
    color: var(--brand-muted);
    white-space: nowrap;
}

.catalog-sort-select {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .3rem .75rem;
    font-size: .83rem;
    color: var(--brand-text);
    background: var(--brand-bg);
    cursor: pointer;
    outline: none;
}

.catalog-sort-select:focus {
    border-color: var(--brand-primary);
}

/* Empty State */
.catalog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border: 1px dashed var(--brand-border);
    border-radius: 20px;
}

.catalog-empty-icon {
    font-size: 3.5rem;
    color: var(--brand-border);
    margin-bottom: 1rem;
}

.catalog-empty h4 {
    font-size: 1.2rem;
    color: var(--brand-text);
    margin-bottom: .5rem;
}

/* ── Cake Shop Card ──────────────────────────────────────────── */
.cake-shop-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--brand-border);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cake-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cake-shop-img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--brand-soft);
}

.cake-shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.cake-shop-card:hover .cake-shop-img {
    transform: scale(1.07);
}

.cake-shop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 112, 112, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
}

.cake-shop-card:hover .cake-shop-overlay {
    opacity: 1;
}

.cake-overlay-btn {
    background: #fff;
    color: var(--brand-primary);
    font-size: .82rem;
    font-weight: 700;
    padding: .5rem 1.2rem;
    border-radius: 40px;
    transform: translateY(6px);
    transition: transform .25s;
}

.cake-shop-card:hover .cake-overlay-btn {
    transform: translateY(0);
}

/* Wishlist Button */
.cake-wish-btn {
    position: absolute;
    top: .65rem;
    right: .65rem;
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #bbb;
    cursor: pointer;
    transition: color .2s, background .2s, transform .2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    line-height: 1;
    padding: 0;
}

.cake-wish-btn:hover {
    color: #e0486e;
    transform: scale(1.1);
    background: #fff;
}

.cake-wish-btn.wishlisted {
    color: #e0486e;
}

/* Card Body */
.cake-shop-body {
    padding: .9rem .9rem .85rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cake-shop-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
}

.cake-shop-cat {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--brand-primary);
    background: var(--brand-primary-l);
    padding: .1rem .55rem;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65%;
}

.cake-shop-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--brand-text);
    margin: .45rem 0 .2rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cake-shop-desc {
    font-size: .77rem;
    color: var(--brand-muted);
    margin: 0 0 .6rem;
    line-height: 1.5;
    flex: 1;
}

.cake-shop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: auto;
    padding-top: .6rem;
    border-top: 1px solid var(--brand-soft);
}

.cake-shop-price {
    display: flex;
    align-items: baseline;
    gap: .3rem;
}

.price-from {
    font-size: .7rem;
    color: var(--brand-muted);
}

.price-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.cake-shop-btn {
    display: inline-flex;
    align-items: center;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .38rem .85rem;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.cake-shop-btn:hover {
    background: var(--brand-primary-d);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════════════ */
.cart-page-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-text);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.cart-item-badge {
    font-family: "Inter", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    background: var(--brand-primary-l);
    color: var(--brand-primary);
    border: 1px solid rgba(42, 112, 112, .2);
    padding: .15rem .65rem;
    border-radius: 20px;
    vertical-align: middle;
}

.cart-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border: 1px dashed var(--brand-border);
    border-radius: 20px;
    max-width: 480px;
    margin: 0 auto;
}

.cart-empty-icon {
    font-size: 4rem;
    color: var(--brand-border);
    margin-bottom: 1.25rem;
}

.cart-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    overflow: hidden;
}

.cart-card-header {
    display: grid;
    grid-template-columns: 1fr 90px 120px 90px 40px;
    padding: .75rem 1.25rem;
    background: var(--brand-soft);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--brand-muted);
    gap: 1rem;
    align-items: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 90px 120px 90px 40px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--brand-soft);
    gap: 1rem;
    align-items: center;
    transition: background .15s;
}

.cart-item:last-of-type {
    border-bottom: none;
}

.cart-item:hover {
    background: #fdfaf5;
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}

.cart-item-img-wrap {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--brand-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .2rem;
}

.cart-item-variant {
    font-size: .74rem;
    color: var(--brand-muted);
    background: var(--brand-soft);
    display: inline-block;
    padding: .1rem .5rem;
    border-radius: 6px;
}

.cart-item-price {
    font-weight: 600;
    font-size: .9rem;
    color: var(--brand-text);
    justify-content: center;
}

.cart-item-qty {
    justify-content: center;
}

.cart-item-subtotal {
    font-weight: 800;
    font-size: .95rem;
    color: var(--brand-primary);
    justify-content: center;
}

.cart-item-remove {
    justify-content: center;
    display: flex;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--brand-border);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--brand-text);
    text-decoration: none;
    font-size: .85rem;
    transition: background .15s;
}

.qty-btn:hover {
    background: var(--brand-soft);
    color: var(--brand-primary);
}

.qty-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

.qty-val {
    width: 34px;
    text-align: center;
    font-size: .88rem;
    font-weight: 700;
    border-left: 1px solid var(--brand-soft);
    border-right: 1px solid var(--brand-soft);
    line-height: 32px;
}

.cart-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #aaa;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.cart-remove-btn:hover {
    background: #fff0f0;
    color: #e63946;
}

.cart-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1.25rem;
    background: var(--brand-soft);
    border-top: 1px solid var(--brand-border);
    flex-wrap: wrap;
    gap: .5rem;
}

.cart-trust-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .77rem;
    color: var(--brand-muted);
    font-weight: 500;
}

.cart-trust-item i {
    font-size: .85rem;
    color: var(--brand-primary);
}

.cart-summary-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    padding: 1.5rem;
    position: sticky;
    top: 140px;
}

.cart-summary-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--brand-soft);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    color: var(--brand-muted);
    margin-bottom: .6rem;
}

.cart-free-delivery-nudge {
    background: #edf7ef;
    color: #2a7a3a;
    font-size: .78rem;
    font-weight: 500;
    padding: .5rem .85rem;
    border-radius: 10px;
    margin: .35rem 0 .75rem;
    border: 1px solid #c3e6cb;
}

.cart-summary-divider {
    border-top: 2px dashed var(--brand-soft);
    margin: .85rem 0;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 1.1rem;
}

.cart-checkout-btn {
    padding: .8rem;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 12px;
}

.cart-pay-label {
    font-size: .72rem;
    color: var(--brand-muted);
}

.cart-payment-icons {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}

.cart-pay-badge {
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    padding: .15rem .5rem;
    font-size: .72rem;
    color: var(--brand-muted);
}

.cart-whatsapp-order {
    text-align: center;
    border-top: 1px dashed var(--brand-soft);
    padding-top: .85rem;
    margin-top: .75rem;
}

.cart-whatsapp-order a {
    font-size: .8rem;
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
}

/* ─── Misc ───────────────────────────────────────────────────── */
.divider-dot::before {
    content: '·';
    margin: 0 .4rem;
    color: var(--brand-muted);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    body {
        padding-top: 108px;
    }

    .site-navbar {
        top: 34px;
    }

    .hero-cake-image {
        height: 280px;
    }

    .hero-section {
        padding: 2.5rem 1.5rem;
        margin-top: 1rem;
        border-radius: 20px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .order-summary-card {
        position: static;
    }

    .cart-summary-card {
        position: static;
    }

    .cart-card-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: .5rem;
    }

    .cart-item-product {
        grid-column: 1;
        grid-row: 1;
    }

    .cart-item-remove {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .call-float {
        bottom: 82px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 148px;
        right: 16px;
    }

    .nav-mega-dropdown {
        min-width: 320px;
        left: 0;
        transform: none;
    }

    .nav-dropdown-item:hover .nav-mega-dropdown {
        transform: none;
    }

    .nav-mega-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Catalog sidebar mobile optimization */
    .catalog-sidebar-card {
        margin-bottom: 1.5rem;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .catalog-hero {
        padding: 2rem 1.25rem;
        text-align: center;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 130px;
        /* Account for wrapped announce bar */
    }

    .site-logo {
        height: 64px;
    }

    .footer-body {
        padding-top: 2.5rem !important;
        text-align: center;
    }

    .mobile-footer-row>div {
        width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        height: 60px;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.82rem;
        opacity: 0.7;
        max-width: 280px;
    }

    .footer-contact li {
        justify-content: center;
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .footer-heading {
        margin-top: 0.25rem;
        font-size: 0.72rem;
        display: inline-block;
        border-bottom: 1.5px solid var(--brand-accent);
        padding-bottom: 3px;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-areas {
        justify-content: center;
        gap: 0.45rem;
        margin-bottom: 0.5rem;
    }

    .footer-areas span {
        padding: 0.35rem 0.75rem;
        font-size: 0.72rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-trust-row {
        justify-content: center;
        gap: 0.5rem;
    }

    .ftrust-badge {
        padding: .5rem .9rem;
        font-size: .78rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        flex: 0 0 calc(50% - 0.5rem);
        justify-content: center;
        white-space: nowrap;
    }

    .site-navbar {
        top: 48px;
        /* Offset for wrapped announce bar */
    }

    .announce-bar {
        font-size: .68rem;
        padding: .3rem .5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stats-bar {
        padding: 1.25rem 0.75rem;
        border-radius: 15px;
    }

    .stat-item {
        padding: 0.5rem 0.25rem;
    }


    .time-slot-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Checkout mobile ── */
    .checkout-section {
        padding: 1.1rem;
        border-radius: 16px;
    }

    .checkout-section .section-head {
        font-size: .95rem;
        margin-bottom: .9rem;
        padding-bottom: .65rem;
    }

    .order-summary-card {
        border-radius: 16px;
    }

    .order-summary-card .summary-head {
        padding: .9rem 1rem;
        border-radius: 16px 16px 0 0;
        font-size: .95rem;
    }

    .order-summary-card .summary-body {
        padding: .9rem 1rem;
    }

    .time-slot-btn {
        padding: .55rem .4rem;
        min-height: 44px;
        font-size: .78rem;
    }

    .page-banner {
        padding: 1.4rem 1.1rem;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .page-banner h1 {
        font-size: 1.25rem !important;
    }

    .trust-badge {
        padding: .35rem .7rem;
        font-size: .75rem;
    }

    .btn-razorpay {
        font-size: .92rem;
        padding: .75rem 1.25rem;
    }

    .cart-trust-row {
        justify-content: center;
    }

    /* Smaller text for stats on mobile */
    .stat-label {
        font-size: 0.65rem;
    }

    /* Grid fixes for category cards on mobile */
    .cake-grid-item {
        padding: 0 6px;
    }

    .row.g-3 {
        margin-left: -6px;
        margin-right: -6px;
    }
}

/* ─── Add-ons & Checkbox ─────────────────────────────────── */
.custom-checkbox .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0.2rem;
    cursor: pointer;
    border: 2px solid var(--brand-border);
    background-color: #fff;
    transition: all 0.2s ease;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem rgba(42, 112, 112, 0.15);
}

.custom-checkbox .form-check-label {
    padding-left: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--brand-text);
}

.custom-checkbox .text-accent {
    font-weight: 700;
}

/* ─── Navbar Search Pill ────────────────────────────────────── */
.nav-search-form {
    display: flex;
    align-items: center;
}

.nav-pill-icon {
    position: absolute;
    left: 10px;
    color: var(--brand-muted);
    font-size: .85rem;
    pointer-events: none;
    z-index: 1;
}

.nav-pill-input {
    border: 1.5px solid var(--brand-border);
    border-radius: 50px;
    padding: .38rem .9rem .38rem 2rem;
    font-size: .83rem;
    width: 180px;
    background: var(--brand-soft);
    color: var(--brand-text);
    outline: none;
    transition: border-color .2s, width .25s ease, box-shadow .2s, background .2s;
}

.nav-pill-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(42,112,112,.1);
    width: 220px;
    background: #fff;
}

.nav-pill-input::placeholder {
    color: var(--brand-muted);
    font-size: .82rem;
}

.nav-search-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 1300;
    max-height: 360px;
    overflow-y: auto;
}

.nav-search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    text-decoration: none;
    color: var(--brand-text);
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
    font-size: .87rem;
}

.nav-search-result:last-child {
    border-bottom: none;
}

.nav-search-result:hover,
.nav-search-result.highlighted {
    background: var(--brand-primary-l);
}

.nav-search-result img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--brand-border);
}

.nav-search-result .result-name {
    font-weight: 600;
    color: var(--brand-text);
    line-height: 1.3;
}

.nav-search-result .result-meta {
    font-size: .77rem;
    color: var(--brand-muted);
}

.nav-search-see-all {
    display: block;
    padding: 9px 12px;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    background: #f9fafb;
    border-top: 1px solid var(--brand-border);
}

.nav-search-see-all:hover {
    background: var(--brand-primary-l);
}

.nav-search-no-results {
    padding: 14px 12px;
    text-align: center;
    font-size: .85rem;
    color: var(--brand-muted);
}