/* Floratrix Pro — Unified Design System v5.0 */

:root {
    --fp-green: #1F4D3A;
    --fp-green-deep: #163a2c;
    --fp-cream: #F5F0E8;
    --fp-gold: #C8A96B;
    --fp-gold-light: #e8d5a8;
    --fp-white: #FFFFFF;
    --fp-text: #1E1E1E;
    --fp-muted: #6b6b6b;
    --fp-border: #e8e4de;
    --fp-font-heading: 'Playfair Display', Georgia, serif;
    --fp-font-body: 'Poppins', system-ui, sans-serif;
    --fp-radius: 10px;
    --fp-radius-sm: 6px;
    --fp-radius-pill: 50px;
    --fp-shadow: 0 4px 24px rgba(31, 77, 58, 0.08);
    --fp-shadow-sm: 0 2px 12px rgba(31, 77, 58, 0.06);
    --fp-transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    --fp-nav-h: 62px;
}

*, *::before, *::after { box-sizing: border-box; }

body.fp-body {
    font-family: var(--fp-font-body);
    color: var(--fp-text);
    background: var(--fp-white);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 991.98px) {
    body.fp-body { padding-bottom: calc(var(--fp-nav-h) + env(safe-area-inset-bottom, 0px)); }
}

h1, h2, h3, h4, h5, h6, .fp-heading {
    font-family: var(--fp-font-heading);
    color: var(--fp-green);
    font-weight: 700;
}

.fp-main { min-height: 50vh; }

/* ── Utility top bar ── */
.fp-utility-bar {
    background: var(--fp-green-deep);
    color: rgba(255,255,255,0.92);
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(200, 169, 107, 0.25);
}

.fp-utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    min-height: 36px;
}

.fp-utility-bar__tagline {
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-utility-bar__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.fp-utility-bar__links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color var(--fp-transition);
}

.fp-utility-bar__links a:hover { color: var(--fp-gold); }
.fp-utility-bar__links i { color: var(--fp-gold); font-size: 0.85rem; }

/* ── Desktop premium header ── */
.fp-header {
    background: var(--fp-white) !important;
    border-bottom: 1px solid var(--fp-border) !important;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow var(--fp-transition);
}

.fp-header.scrolled { box-shadow: var(--fp-shadow); }

.fp-desk-header { padding: 0; }

.fp-desk-header__logo {
    display: flex;
    justify-content: center;
    padding: 16px 0 12px;
    border-bottom: 1px solid #f3f3f3;
}

.fp-desk-header__logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform var(--fp-transition);
}

.fp-desk-header__logo a:hover { transform: scale(1.02); }

.fp-logo-img {
    height: 72px;
    max-width: 320px;
    width: auto;
    object-fit: contain;
    display: block;
}

.fp-desk-header__tools {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    max-width: 900px;
    margin: 0 auto;
}

.fp-desk-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fp-cream);
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 0 22px;
    height: 50px;
    transition: border-color var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-desk-search:focus-within {
    border-color: var(--fp-green);
    background: var(--fp-white);
    box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.1);
}

.fp-desk-search i { color: var(--fp-muted); font-size: 1.1rem; }

.fp-desk-search input {
    border: none;
    background: transparent;
    width: 100%;
    font-family: var(--fp-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fp-text);
    outline: none;
}

.fp-desk-search input::placeholder { color: var(--fp-muted); }

.fp-desk-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-desk-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--fp-text);
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: var(--fp-radius-sm);
    position: relative;
    transition: background var(--fp-transition), color var(--fp-transition);
}

.fp-desk-action i { font-size: 1.4rem; color: var(--fp-green); }

.fp-desk-action:hover {
    background: var(--fp-cream);
    color: var(--fp-green);
}

.fp-desk-action em.cart-count {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--fp-gold);
    color: var(--fp-white);
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--fp-white);
}

.fp-desk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 0 14px;
    border-top: 1px solid #f5f5f5;
}

.fp-desk-nav a {
    padding: 8px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--fp-text);
    text-decoration: none;
    border-radius: var(--fp-radius-sm);
    transition: color var(--fp-transition), background var(--fp-transition);
    white-space: nowrap;
}

.fp-desk-nav a:hover,
.fp-desk-nav a.active {
    color: var(--fp-green);
    background: rgba(31, 77, 58, 0.06);
}

.fp-desk-nav .fp-nav-offers {
    margin-left: 8px;
    padding: 7px 18px;
    background: transparent;
    border: 1.5px solid var(--fp-green);
    color: var(--fp-green);
    border-radius: var(--fp-radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fp-desk-nav .fp-nav-offers:hover {
    background: var(--fp-green);
    color: var(--fp-white);
}

/* ── Mobile header ── */
.fp-mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 8px;
    gap: 8px;
}

.fp-mob-header .fp-logo-img {
    height: 48px;
    max-width: 180px;
}

.fp-mob-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--fp-border);
    border-radius: 50%;
    background: var(--fp-cream);
    color: var(--fp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    transition: transform 0.15s ease, background var(--fp-transition);
}

.fp-mob-btn:active { transform: scale(0.94); }

.fp-mob-btn em.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--fp-gold);
    color: var(--fp-white);
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--fp-white);
}

.fp-mob-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--fp-cream);
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 0 14px;
    height: 44px;
    margin-bottom: 10px;
}

.fp-mob-search:focus-within {
    border-color: var(--fp-green);
    background: var(--fp-white);
}

.fp-mob-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    outline: none;
}

.fp-mob-cats {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.fp-mob-cats::-webkit-scrollbar { display: none; }

.fp-mob-cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
    text-align: center;
    text-decoration: none;
    min-width: 72px;
}

.fp-mob-cat__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--fp-white), var(--fp-cream));
    border: 1.5px solid rgba(200, 169, 107, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    box-shadow: var(--fp-shadow-sm);
}

.fp-mob-cat__icon i { font-size: 1.25rem; color: var(--fp-green); }

.fp-mob-cat span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--fp-text);
    line-height: 1.2;
    display: block;
}

/* ── Bottom navigation ── */
.fp-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--fp-nav-h);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--fp-border);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(31, 77, 58, 0.06);
}

.fp-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--fp-muted);
    font-size: 0.58rem;
    font-weight: 600;
    position: relative;
}

.fp-bottom-nav a i { font-size: 1.25rem; }

.fp-bottom-nav a.active { color: var(--fp-green); }

.fp-bottom-nav a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--fp-gold);
    border-radius: 0 0 3px 3px;
}

/* ── Sections ── */
.fp-section {
    padding: 48px 0;
}

.fp-section--cream {
    background: linear-gradient(180deg, var(--fp-cream) 0%, #fafafa 100%);
}

.fp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.fp-section-head h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin: 0 0 4px;
}

.fp-section-head p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--fp-muted);
}

.fp-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--fp-gold);
    margin-bottom: 6px;
    font-family: var(--fp-font-body);
}

.fp-link-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fp-green);
    text-decoration: none;
    white-space: nowrap;
}

.fp-link-more:hover { color: var(--fp-gold); }

/* ── Product card (equal height) ── */
.fp-product-grid .col { display: flex; }

.fp-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    overflow: hidden;
    box-shadow: var(--fp-shadow-sm);
    transition: box-shadow var(--fp-transition), transform var(--fp-transition);
}

.fp-product-card:hover {
    box-shadow: var(--fp-shadow);
    transform: translateY(-3px);
}

.fp-product-card__media {
    position: relative;
    height: 220px;
    background: linear-gradient(180deg, #fafafa 0%, var(--fp-cream) 100%);
    overflow: hidden;
}

.fp-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s var(--fp-transition);
}

.fp-product-card:hover .fp-product-card__media img {
    transform: scale(1.06);
}

.fp-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--fp-gold);
    color: var(--fp-text);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.fp-product-card__badge--pro {
    background: var(--fp-green);
    color: var(--fp-white);
    top: auto;
    bottom: 10px;
}

.fp-product-card__wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--fp-border);
    background: var(--fp-white);
    color: var(--fp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--fp-transition);
}

.fp-product-card__wish:hover,
.fp-product-card__wish.active { color: #c62828; border-color: #c62828; }

.fp-product-card__quick {
    position: absolute;
    inset: 0;
    background: rgba(31, 77, 58, 0.55);
    color: var(--fp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transition: opacity var(--fp-transition);
}

.fp-product-card:hover .fp-product-card__quick { opacity: 1; }

.fp-product-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fp-product-card__brand {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fp-muted);
    margin-bottom: 4px;
}

.fp-product-card__title {
    font-family: var(--fp-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.fp-product-card__title a {
    color: var(--fp-text);
    text-decoration: none;
}

.fp-product-card__title a:hover { color: var(--fp-green); }

.fp-product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--fp-muted);
    margin-bottom: 10px;
}

.fp-product-card__rating .bi-star-fill { color: var(--fp-gold); font-size: 0.65rem; }

.fp-product-card__prices { margin-bottom: 12px; }

.fp-product-card__price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--fp-text);
}

.fp-product-card__mrp {
    font-size: 0.78rem;
    color: var(--fp-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.fp-product-card__save {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 2px;
}

.fp-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-family: var(--fp-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: var(--fp-radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--fp-transition);
    white-space: nowrap;
}

.fp-btn--cart {
    background: var(--fp-white);
    border-color: var(--fp-green);
    color: var(--fp-green);
}

.fp-btn--cart:hover {
    background: var(--fp-green);
    color: var(--fp-white);
}

.fp-btn--buy {
    background: var(--fp-green);
    color: var(--fp-white);
}

.fp-btn--buy:hover {
    background: var(--fp-green-deep);
}

.fp-btn--primary {
    background: var(--fp-green);
    color: var(--fp-white);
    border-color: var(--fp-green);
    padding: 14px 28px;
    font-size: 0.85rem;
}

.fp-btn--primary:hover {
    background: var(--fp-green-deep);
    color: var(--fp-white);
}

.fp-btn--outline {
    background: transparent;
    border-color: var(--fp-gold);
    color: var(--fp-green);
}

/* Compact card (carousel) */
.fp-product-card--compact .fp-product-card__media { height: 160px; }
.fp-product-card--compact .fp-product-card__title { font-size: 0.8rem; min-height: 2.2em; }
.fp-product-card--compact .fp-product-card__actions { grid-template-columns: 1fr; }
.fp-product-card--compact .fp-btn--buy { display: none; }

/* Product scroll carousel */
.fp-product-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.fp-product-carousel::-webkit-scrollbar { display: none; }

.fp-product-carousel > * {
    flex: 0 0 168px;
    scroll-snap-align: start;
}

@media (min-width: 992px) {
    .fp-product-carousel--desk {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        gap: 20px;
    }
    .fp-product-carousel--desk > * { flex: unset; }
}

/* Category icons */
.fp-cat-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 0 16px;
    justify-content: center;
    flex-wrap: wrap;
    scrollbar-width: none;
}

.fp-cat-item {
    text-align: center;
    text-decoration: none;
    min-width: 80px;
}

.fp-cat-item__ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--fp-white), var(--fp-cream));
    border: 1.5px solid rgba(200, 169, 107, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: transform var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-cat-item:hover .fp-cat-item__ring {
    transform: translateY(-3px);
    box-shadow: var(--fp-shadow-sm);
}

.fp-cat-item__ring i { font-size: 1.35rem; color: var(--fp-green); }

.fp-cat-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--fp-text);
    line-height: 1.25;
    display: block;
}

/* Trust pills */
.fp-trust-row {
    padding: 20px 0;
    background: var(--fp-white);
    border-bottom: 1px solid var(--fp-border);
}

.fp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fp-trust-item {
    text-align: center;
    padding: 12px 8px;
}

.fp-trust-item i {
    font-size: 1.4rem;
    color: var(--fp-gold);
    display: block;
    margin-bottom: 8px;
}

.fp-trust-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--fp-green);
    line-height: 1.3;
}

/* Promo banners */
.fp-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fp-promo-banner {
    display: block;
    border-radius: var(--fp-radius);
    overflow: hidden;
    aspect-ratio: 16/6;
    min-height: 140px;
    box-shadow: var(--fp-shadow-sm);
    transition: transform var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--fp-shadow);
}

.fp-promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero slider */
.nk-hero, .fp-hero {
    background: var(--fp-green-deep);
    margin: 0;
    padding: 0 !important;
}

.nk-hero__carousel { max-height: none !important; border-radius: 0 !important; overflow: hidden; }

.nk-hero__slide {
    display: block;
    height: clamp(220px, 38vw, 420px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nk-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nk-hero__slide--img-only .nk-hero__img { object-fit: cover; }

.nk-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12,32,24,0.92) 0%, rgba(12,32,24,0.45) 55%, transparent 100%);
}

.nk-hero__copy {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 4vw, 48px);
    max-width: 520px;
    color: var(--fp-white);
    z-index: 2;
}

.nk-hero__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fp-gold);
    margin-bottom: 10px;
}

.nk-hero__title {
    font-family: var(--fp-font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--fp-white) !important;
    margin: 0 0 10px;
    line-height: 1.2;
}

.nk-hero__sub {
    font-size: 0.9rem;
    opacity: 0.92;
    margin: 0 0 16px;
    line-height: 1.5;
}

.nk-hero__btn {
    display: inline-block;
    padding: 11px 26px;
    background: var(--fp-gold);
    color: var(--fp-text);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--fp-radius-sm);
    width: fit-content;
    transition: background var(--fp-transition), transform var(--fp-transition);
}

.nk-hero__slide:hover .nk-hero__btn { background: var(--fp-white); transform: translateY(-2px); }

.nk-hero__dots { margin-bottom: 12px !important; }

.nk-hero__dots button {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    border: none;
    border-radius: 50%;
}

.nk-hero__dots button.active {
    background: var(--fp-gold);
    width: 24px;
    border-radius: 4px;
}

.nk-hero__nav {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--fp-shadow-sm);
}

.nk-hero__nav i { font-size: 1.2rem; color: var(--fp-green); }
.carousel-control-prev.nk-hero__nav { left: 16px; }
.carousel-control-next.nk-hero__nav { right: 16px; }

/* Offer strip */
.fp-offer-strip {
    background: linear-gradient(90deg, var(--fp-green-deep), var(--fp-green));
    color: var(--fp-white);
    padding: 12px 0;
    font-size: 0.82rem;
    font-weight: 600;
}

.fp-offer-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.fp-offer-strip__code {
    background: rgba(200, 169, 107, 0.2);
    border: 1px solid var(--fp-gold);
    padding: 4px 14px;
    border-radius: var(--fp-radius-pill);
    color: var(--fp-gold-light);
    font-size: 0.78rem;
}

.fp-offer-strip__code strong { color: var(--fp-gold); }

/* Featured cards */
.fp-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 992px) {
    .fp-featured-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.fp-feature-card {
    display: flex;
    flex-direction: column;
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--fp-text);
    box-shadow: var(--fp-shadow-sm);
    transition: transform var(--fp-transition), box-shadow var(--fp-transition);
    min-height: 220px;
}

.fp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fp-shadow);
    color: var(--fp-text);
}

.fp-feature-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.fp-feature-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fp-feature-card__body h3 {
    font-family: var(--fp-font-heading);
    font-size: 1rem;
    color: var(--fp-green);
    margin: 0 0 8px;
}

.fp-feature-card__body p {
    font-size: 0.78rem;
    color: var(--fp-muted);
    margin: 0 0 auto;
    line-height: 1.4;
}

.fp-feature-card--partner {
    background: linear-gradient(145deg, var(--fp-green-deep), var(--fp-green));
    border-color: var(--fp-green);
    color: var(--fp-white);
}

.fp-feature-card--partner .fp-feature-card__body h3 { color: var(--fp-gold); }

.fp-feature-card--partner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    font-size: 0.78rem;
    opacity: 0.9;
}

.fp-feature-card--partner li::before { content: '•'; color: var(--fp-gold); margin-right: 6px; }

.fp-feature-card__btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--fp-green);
    color: var(--fp-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: var(--fp-radius-sm);
    width: fit-content;
}

.fp-feature-card--partner .fp-feature-card__btn {
    background: var(--fp-gold);
    color: var(--fp-text);
}

/* Testimonials */
.fp-testimonial-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background: var(--fp-white);
    border-radius: var(--fp-radius);
    border: 1px solid var(--fp-border);
    box-shadow: var(--fp-shadow-sm);
}

.fp-testimonial-wrap h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 16px;
}

.fp-testimonial-stars { color: var(--fp-gold); margin-bottom: 12px; }

.fp-testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--fp-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.fp-testimonial-author strong { display: block; color: var(--fp-green); }
.fp-testimonial-author small { color: var(--fp-muted); font-size: 0.8rem; }

.fp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fp-cream);
    color: var(--fp-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 2px solid var(--fp-gold);
}

/* Ingredient trust */
.fp-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .fp-ingredient-grid { grid-template-columns: repeat(6, 1fr); }
}

.fp-ingredient-item {
    text-align: center;
    padding: 16px 8px;
}

.fp-ingredient-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--fp-cream);
    border: 1.5px solid rgba(200, 169, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: transform var(--fp-transition);
}

.fp-ingredient-item:hover .fp-ingredient-ring { transform: scale(1.06); }
.fp-ingredient-ring i { font-size: 1.2rem; color: var(--fp-green); }
.fp-ingredient-item span { font-size: 0.68rem; font-weight: 600; color: var(--fp-text); line-height: 1.25; display: block; }

/* Service ribbon */
.fp-service-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
}

@media (min-width: 768px) {
    .fp-service-ribbon__grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
}

.fp-service-ribbon__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.fp-service-ribbon__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.15);
    border: 1px solid rgba(200, 169, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-service-ribbon__icon i {
    color: var(--fp-gold);
    font-size: 1.15rem;
}

/* Utilities */
.fp-bg-cream { background: var(--fp-cream); }

.fp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--fp-green);
    color: var(--fp-white);
    border: none;
    border-radius: var(--fp-radius-sm);
    font-family: var(--fp-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--fp-transition);
}

.fp-btn-primary:hover { background: var(--fp-green-deep); color: var(--fp-white); }

.fp-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fp-reveal.is-visible { opacity: 1; transform: none; }

/* PDP spacing fix */
.mm-pdp--premium {
    padding: 24px 0 48px !important;
}

.mm-pdp--premium .mm-pdp-hero-bg { display: none; }

.mm-pdp-breadcrumb { margin-bottom: 20px !important; }

.mm-pdp-panel { padding: 24px !important; }

.mm-pdp-related { margin-top: 40px !important; padding-top: 32px; border-top: 1px solid var(--fp-border); }

.mm-pdp-sticky .mm-btn-add,
.mm-pdp-sticky .mm-btn-buy,
.mm-pdp-sticky .fp-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.68rem;
}

/* Products page */
.fp-products-page { padding: 32px 0 56px; }

.fp-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 28px;
    scrollbar-width: none;
}

.fp-filter-tabs a {
    flex-shrink: 0;
    padding: 9px 18px;
    border-radius: var(--fp-radius-pill);
    border: 1.5px solid var(--fp-border);
    background: var(--fp-white);
    color: var(--fp-text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--fp-transition);
}

.fp-filter-tabs a:hover,
.fp-filter-tabs a.active {
    background: var(--fp-green);
    border-color: var(--fp-green);
    color: var(--fp-white);
}

/* Cart & checkout */
.fp-cart-card, .fp-summary-card, .fp-form-card {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 24px;
    box-shadow: var(--fp-shadow-sm);
}

.fp-cart-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--fp-radius-sm);
    background: var(--fp-cream);
}

.fp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.fp-summary-total {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.05rem;
}

.fp-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-sm);
    cursor: pointer;
    transition: border-color var(--fp-transition);
}

.fp-payment-option:has(input:checked) {
    border-color: var(--fp-green);
    background: rgba(31, 77, 58, 0.04);
}

.fp-empty-state {
    text-align: center;
    padding: 64px 24px;
}

.fp-empty-state i { font-size: 3rem; color: var(--fp-gold); margin-bottom: 16px; }

/* Why section */
.fp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .fp-why-grid { grid-template-columns: repeat(4, 1fr); }
}

.fp-why-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--fp-white);
    border-radius: var(--fp-radius);
    border: 1px solid var(--fp-border);
}

.fp-why-item i {
    font-size: 1.75rem;
    color: var(--fp-gold);
    margin-bottom: 12px;
}

.fp-why-item h4 {
    font-family: var(--fp-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--fp-green);
}

.fp-why-item p {
    font-size: 0.78rem;
    color: var(--fp-muted);
    margin: 0;
    line-height: 1.4;
}

/* CTA banner */
.fp-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, var(--fp-green-deep), var(--fp-green));
    border-radius: var(--fp-radius);
    color: var(--fp-white);
    overflow: hidden;
    position: relative;
}

.fp-cta-banner h3 {
    color: var(--fp-white);
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.fp-cta-banner p { margin: 0; opacity: 0.9; font-size: 0.9rem; }

.fp-cta-banner .fp-btn--primary {
    background: var(--fp-gold);
    border-color: var(--fp-gold);
    color: var(--fp-text);
    flex-shrink: 0;
}

/* Footer ribbon */
body:has(.fp-service-ribbon) .fp-footer-trust { display: none; }

.fp-service-ribbon {
    background: var(--fp-green);
    color: var(--fp-white);
    padding: 16px 0;
}

/* Toast */
.fp-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--fp-green);
    color: var(--fp-white);
    padding: 12px 24px;
    border-radius: var(--fp-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.fp-toast.error { background: #c62828; }

/* Footer */
.fp-footer {
    position: relative;
}

.fp-footer-trust {
    background: var(--fp-green-deep);
    padding: 20px 0;
    border-top: 3px solid var(--fp-gold);
}

.fp-footer-trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.fp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fp-white);
    font-size: 0.82rem;
    font-weight: 500;
}

.fp-trust-badge i { font-size: 1.3rem; color: var(--fp-gold); }

.fp-footer-main {
    position: relative;
    background: linear-gradient(165deg, #122a20 0%, var(--fp-green-deep) 40%, #163a2c 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 52px 0 0;
    overflow: hidden;
}

.fp-footer-main__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fp-gold), transparent);
}

.fp-footer-main::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.08), transparent 70%);
    pointer-events: none;
}

.fp-footer-grid {
    position: relative;
    z-index: 1;
}

/* Logo — bright panel for visibility on dark footer */
.fp-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: linear-gradient(145deg, #ffffff 0%, var(--fp-cream) 100%);
    border-radius: 14px;
    border: 1px solid rgba(200, 169, 107, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fp-footer-logo-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.fp-footer-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.fp-footer-brand {
    padding-right: 12px;
}

.fp-footer-tagline {
    font-family: var(--fp-font-heading);
    color: var(--fp-gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.fp-footer-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    max-width: 340px;
}

.fp-footer-social {
    display: flex;
    gap: 10px;
}

.fp-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 107, 0.4);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fp-white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fp-footer-social a:hover {
    background: var(--fp-gold);
    border-color: var(--fp-gold);
    color: var(--fp-green-deep);
    transform: translateY(-2px);
}

.fp-footer-col h6 {
    font-family: var(--fp-font-body);
    color: var(--fp-white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.fp-footer-col h6::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--fp-gold);
    margin: 10px 0 18px;
    border-radius: 2px;
}

.fp-footer-links,
.fp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-footer-links li {
    margin-bottom: 11px;
}

.fp-footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.fp-footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--fp-gold);
    transition: width 0.2s ease;
    flex-shrink: 0;
}

.fp-footer-links a:hover {
    color: var(--fp-gold);
    padding-left: 4px;
}

.fp-footer-links a:hover::before {
    width: 8px;
}

.fp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    margin-bottom: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    line-height: 1.5;
}

.fp-footer-contact__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(200, 169, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-footer-contact__icon i {
    color: var(--fp-gold);
    font-size: 0.95rem;
}

.fp-footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    word-break: break-word;
}

.fp-footer-contact a:hover {
    color: var(--fp-gold);
}

.fp-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1.5px solid var(--fp-gold);
    border-radius: 8px;
    color: var(--fp-gold) !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, color 0.25s ease;
}

.fp-footer-cta:hover {
    background: var(--fp-gold);
    color: var(--fp-green-deep) !important;
}

.fp-footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.fp-footer-bottom p {
    margin: 0;
}

.fp-footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fp-footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fp-footer-bottom a:hover {
    color: var(--fp-gold);
}

.fp-footer-bottom span {
    margin: 0 6px;
    opacity: 0.4;
}

/* Legacy logo box — hidden if still referenced */
.fp-footer-logo-link,
.fp-logo-box--footer {
    display: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: var(--fp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--fp-shadow);
    z-index: 1030;
    text-decoration: none;
    transition: transform var(--fp-transition);
}

.whatsapp-float:hover {
    color: var(--fp-white);
    transform: scale(1.08);
}

@media (min-width: 992px) {
    .whatsapp-float { bottom: 24px; }
}

@media (max-width: 991px) {
    .fp-utility-bar__tagline { display: none; }
    .fp-utility-bar__links { gap: 12px; font-size: 0.68rem; }
    .fp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-promo-grid { grid-template-columns: 1fr; }
    .fp-section { padding: 32px 0; }
    .fp-section-head { margin-bottom: 20px; }
    .fp-product-card__media { height: 180px; }
    .fp-cta-banner { flex-direction: column; text-align: center; padding: 28px 20px; }
    .fp-cat-row { justify-content: flex-start; flex-wrap: nowrap; }
}

@media (min-width: 992px) {
    .fp-mob-header, .fp-mob-search, .fp-mob-cats { display: none !important; }
}
