/**
 * Floratrix Pro — Professional UI layer (Bootstrap 5 aligned)
 */

:root {
    --fp-pro-green: #1F4D3A;
    --fp-pro-green-dark: #163a2c;
    --fp-pro-gold: #C8A96B;
    --fp-pro-gold-light: #e8d5a8;
    --fp-pro-cream: #F5F0E8;
    --fp-pro-shadow: 0 8px 32px rgba(31, 77, 58, 0.08);
    --fp-pro-shadow-lg: 0 16px 48px rgba(31, 77, 58, 0.12);
    --fp-pro-radius: 16px;
    --fp-pro-header-h: 132px;
}

/* ── Header: glass luxury bar ── */
.fp-v2-header {
    background: rgba(255, 252, 247, 0.9);
    border-bottom: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: none;
}

.fp-v2-header.scrolled {
    background: rgba(255, 252, 247, 0.97);
    box-shadow: 0 8px 32px rgba(31, 77, 58, 0.1);
}

.fp-v2-topbar {
    background: linear-gradient(90deg, var(--fp-pro-green-dark), var(--fp-pro-green) 45%, #2a6b52 55%, var(--fp-pro-green-dark));
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.fp-v2-topbar__tagline i {
    animation: fpGemPulse 3s ease-in-out infinite;
}

@keyframes fpGemPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.08); }
}

.fp-v2-main {
    padding: 0.65rem 0 0.85rem;
}

.fp-v2-nav a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.25s ease, transform 0.2s ease;
}

.fp-v2-nav a:hover,
.fp-v2-nav a.active {
    color: var(--fp-pro-gold);
}

.fp-v2-nav a:hover {
    transform: translateY(-1px);
}

.fp-v2-nav a::after {
    height: 2px;
    background: linear-gradient(90deg, var(--fp-pro-gold), var(--fp-pro-gold-light));
    border-radius: 2px;
}

/* Logo — user's PNG from assets/images/logo.png */
.fp-v2-logo,
.fp-mob-header__logo {
    line-height: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fp-v2-logo:hover {
    transform: scale(1.02);
}

.fp-v2-logo img,
.fp-v2-logo__img,
.fp-mob-header .fp-logo-img {
    height: clamp(92px, 12vh, 128px) !important;
    max-width: min(140px, 22vw) !important;
    width: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 14px rgba(31, 77, 58, 0.12));
}

.fp-footer-logo {
    height: clamp(72px, 10vw, 96px) !important;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.fp-v2-about__logo {
    max-height: 140px;
    width: auto;
    object-fit: contain;
}

.fp-v2-search {
    max-width: 210px;
    border: 1px solid rgba(31, 77, 58, 0.1);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(31, 77, 58, 0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.fp-v2-search:focus-within {
    border-color: rgba(200, 169, 107, 0.55);
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.18);
}

.fp-v2-search .form-control {
    background: transparent;
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
    min-height: unset;
}

.fp-v2-search .form-control:focus {
    box-shadow: none;
}

.fp-v2-search .btn-link {
    color: var(--fp-pro-green);
    text-decoration: none;
    line-height: 1;
}

.fp-v2-cart {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2a6b52 100%);
    color: #fff !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(31, 77, 58, 0.25);
}

.fp-v2-cart:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(31, 77, 58, 0.32);
    color: #fff !important;
}

.fp-v2-cart i { font-size: 1.1rem; }

.fp-v2-cart .cart-count {
    background: var(--fp-pro-gold);
    color: var(--fp-pro-green-dark);
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    font-size: 0.65rem;
}

/* Trust bar */
.fp-value-bar {
    background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
    padding: 0.7rem 0;
}

.fp-value-bar__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #3d5c4e;
    justify-content: center;
}

.fp-value-bar__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(31, 77, 58, 0.08);
}

/* Homepage hero — compact spotlight (full banner visible) */
.fp-home .fp-value-bar,
.fp-home .fp-value-bar-mob {
    display: none !important;
}

:root {
    --fp-hero-banner-h: clamp(240px, 38vw, 500px);
}

.fp-v2-hero-wrap--spotlight {
    margin: 0;
    padding: 0.75rem 0 0;
    background: linear-gradient(180deg, #f5f0e8 0%, #ffffff 55%, #faf8f4 100%);
}

.fp-hero-stage {
    padding: 0.25rem 0 0;
    background: transparent;
}

.fp-hero-stage.nk-hero {
    background: transparent !important;
}

.fp-hero-stage__shell {
    position: relative;
    padding: 0 2.75rem 2rem;
}

.fp-hero-swiper--spotlight {
    overflow: visible;
    padding: 0.35rem 0 0.75rem;
    height: var(--fp-hero-banner-h);
    box-sizing: content-box;
}

.fp-hero-swiper--spotlight .swiper-wrapper {
    align-items: stretch;
}

/* Do not set transform on .swiper-slide — Swiper positions slides with transform */
.fp-hero-swiper--spotlight .swiper-slide {
    height: var(--fp-hero-banner-h);
    box-sizing: border-box;
}

.fp-hero-slide-card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 28px rgba(31, 77, 58, 0.08);
    border: 1px solid rgba(200, 169, 107, 0.2);
    transition: opacity 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.55s ease, border-color 0.55s ease;
    opacity: 0.55;
    transform: scale(0.94);
}

.fp-hero-swiper--spotlight .swiper-slide-active .fp-hero-slide-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 18px 44px rgba(31, 77, 58, 0.14);
    border-color: rgba(200, 169, 107, 0.45);
}

.fp-home .fp-hero-stage a.nk-hero__slide,
.fp-home .fp-hero-stage .nk-hero__slide {
    display: block !important;
    height: var(--fp-hero-banner-h) !important;
    min-height: var(--fp-hero-banner-h) !important;
    max-height: var(--fp-hero-banner-h) !important;
    overflow: hidden;
    position: relative;
    background: #fff !important;
}

.fp-home .fp-hero-stage .nk-hero__slide--img-only {
    background: #fff !important;
}

.fp-hero-slide-card__link {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
}

.fp-hero-slide-card__media {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    padding: 0;
    margin: 0;
    background: #fff;
}

.fp-hero-slide-card__img,
.fp-home .fp-hero-stage .nk-hero__slide--img-only .nk-hero__img,
.fp-hero-slide-card .nk-hero__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    max-height: none;
    object-fit: cover !important;
    object-position: center center;
    display: block !important;
    animation: none;
    background: transparent !important;
    border-radius: inherit;
}

@keyframes fpHeroBannerIn {
    from {
        opacity: 0.85;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fp-hero-slide-card__img.is-hero-enter {
    animation: fpHeroBannerIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fp-hero-slide-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.15);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.fp-hero-swiper--spotlight .swiper-slide-active .fp-hero-slide-card::after {
    opacity: 1;
}

.fp-hero-stage__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(31, 77, 58, 0.12);
    background: #fff;
    color: var(--fp-pro-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(31, 77, 58, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.fp-hero-stage__arrow:hover {
    background: var(--fp-pro-green);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 8px 28px rgba(31, 77, 58, 0.22);
}

.fp-hero-swiper-prev { left: 0; }
.fp-hero-swiper-next { right: 0; }

.fp-hero-stage__footer {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding-top: 0.25rem;
}

.fp-hero-progress--swiper {
    position: relative;
    bottom: auto;
    left: auto;
    height: 3px;
    width: 0;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fp-pro-gold), var(--fp-pro-gold-light));
    box-shadow: 0 0 12px rgba(200, 169, 107, 0.35);
    transition: width 0.08s linear;
}

.fp-hero-swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0;
}

.fp-hero-swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    background: rgba(31, 77, 58, 0.25);
    border: none;
    opacity: 1;
    transition: width 0.35s ease, background 0.35s ease;
}

.fp-hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--fp-pro-green);
}

/* Clean trust bar below hero */
.fp-home-trust-bar {
    padding: 0 0 1.75rem;
    margin-top: -0.25rem;
}

.fp-home-trust-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #4a6358;
    padding: 0.65rem 0.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(200, 169, 107, 0.18);
    box-shadow: 0 2px 12px rgba(31, 77, 58, 0.04);
}

.fp-home-trust-bar__item i {
    color: var(--fp-pro-gold);
    font-size: 0.95rem;
}

/* Legacy fullscreen hero overrides — disabled on spotlight layout */
.fp-home .fp-hero-fullscreen .nk-hero__slide {
    height: auto !important;
}

.fp-home .fp-hero-fullscreen .nk-hero__slide--img-only .nk-hero__img {
    object-fit: contain !important;
}

.fp-home .fp-hero-stage .nk-hero__slide--img-only .nk-hero__img {
    object-fit: cover !important;
    background: transparent !important;
}

.fp-home .fp-hero-stage .carousel-item.active .nk-hero__img {
    animation: none !important;
}

.fp-home .nk-hero__slide--img-only::after {
    display: none;
}

.fp-hero-stage .nk-hero__img {
    animation: none !important;
}

/* Slider — premium controls */
.fp-hero-carousel--luxe .carousel-indicators {
    margin-bottom: 1.75rem;
}

.nk-hero__nav--luxe {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
}

.nk-hero__nav--luxe:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: var(--fp-pro-gold-light);
}

.nk-hero__dots button.active {
    box-shadow: 0 0 18px rgba(200, 169, 107, 0.65);
}

.fp-hero-progress {
    height: 4px;
    background: linear-gradient(90deg, var(--fp-pro-gold), var(--fp-pro-gold-light), var(--fp-pro-gold));
    z-index: 9;
}

/* Section headings — luxury */
.fp-v2 .fp-section {
    padding: clamp(3.75rem, 7.5vw, 6rem) 0;
}

.fp-v2-section-head .fp-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.14), rgba(200, 169, 107, 0.06));
    border: 1px solid rgba(200, 169, 107, 0.35);
    box-shadow: 0 2px 12px rgba(200, 169, 107, 0.1);
}

.fp-v2-section-head h2 {
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2a6b52 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Promo collection cards */
.fp-v2-collections .fp-promo-banner {
    border-radius: var(--fp-pro-radius);
    overflow: hidden;
    box-shadow: var(--fp-pro-shadow);
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.45s ease;
}

.fp-v2-collections .fp-promo-banner:hover {
    transform: translateY(-6px);
    box-shadow: var(--fp-pro-shadow-lg);
}

.fp-v2-collections .fp-promo-banner__tag {
    background: rgba(200, 169, 107, 0.92);
    color: var(--fp-pro-green-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.fp-v2-collections .fp-promo-banner__cta {
    color: var(--fp-pro-gold-light);
    font-weight: 600;
}

/* Product cards */
.fp-product-card--luxury {
    border-radius: var(--fp-pro-radius);
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: var(--fp-pro-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
}

.fp-product-card--luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--fp-pro-shadow-lg);
    border-color: rgba(200, 169, 107, 0.45);
}

.fp-product-card--luxury .fp-product-card__badge--featured {
    background: linear-gradient(135deg, var(--fp-pro-gold), #a88b4a);
    color: #fff;
}

/* Buttons */
.fp-btn--primary {
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2a6b52 100%);
    border: 1px solid rgba(200, 169, 107, 0.35);
    box-shadow: 0 4px 18px rgba(31, 77, 58, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 77, 58, 0.3);
    background: linear-gradient(135deg, #2a6b52 0%, var(--fp-pro-green) 100%);
}

/* Stats & why cards */
.fp-v2-stats__item,
.fp-v2-why-item {
    border-radius: var(--fp-pro-radius);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fp-v2-stats__item:hover,
.fp-v2-why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--fp-pro-shadow);
}

.fp-v2-why-item__icon {
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.2), rgba(200, 169, 107, 0.08));
    border: 1px solid rgba(200, 169, 107, 0.35);
}

/* Mobile */
.fp-mob-header {
    background: rgba(255, 252, 247, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
}

.fp-mob-search {
    background: #fff;
    border: 1px solid rgba(31, 77, 58, 0.08);
    box-shadow: var(--fp-pro-shadow);
    border-radius: 999px;
}

.whatsapp-float {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ── Animated Swiper hero (spotlight) ── */
.fp-home.fp-body {
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(200, 169, 107, 0.09), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(31, 77, 58, 0.04), transparent),
        linear-gradient(180deg, #F5F0E8 0%, #FAF7F2 42%, #F5F0E8 100%);
}

.fp-v2-header {
    transition: box-shadow 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

.fp-v2-collections .fp-promo-banner__shine {
    animation: fpPromoShine 4s ease-in-out infinite;
}

@keyframes fpPromoShine {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 0.6; transform: translateX(100%); }
}

.fp-product-card--luxury .fp-product-card__media img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.fp-product-card--luxury:hover .fp-product-card__media img {
    transform: scale(1.1);
}

.fp-v2-reviews .fp-review-card,
.fp-v2-transform-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fp-v2-reviews .fp-review-card:hover,
.fp-v2-transform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fp-pro-shadow-lg);
}

@media (max-width: 991.98px) {
    :root {
        --fp-pro-header-h: 76px;
        --fp-hero-banner-h: clamp(200px, 52vw, 340px);
    }

    .fp-hero-stage__shell {
        padding: 0 0 1.75rem;
    }

    .fp-hero-stage__arrow {
        display: none;
    }

    .fp-v2-logo img,
    .fp-mob-header .fp-logo-img {
        height: clamp(64px, 16vw, 88px) !important;
        max-width: min(100px, 24vw) !important;
    }
}

@media (max-width: 767.98px) {
    .fp-v2-section-head h2 {
        -webkit-text-fill-color: var(--fp-pro-green);
        background: none;
    }
}

@media (min-width: 1400px) {
    .fp-v2-logo img,
    .fp-v2-logo__img {
        height: 128px !important;
        max-width: 148px !important;
    }

    .fp-promo-grid--count-3 {
        grid-template-rows: 230px 230px;
    }
}

/* ═══ Homepage sections — collections, featured, results ═══ */
.fp-v2-collections {
    position: relative;
    padding-top: clamp(2rem, 4vw, 2.75rem) !important;
    padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem) !important;
}

.fp-v2-collections .fp-v2-section-head {
    margin-bottom: 1.75rem;
}

.fp-v2-collections .fp-promo-banner {
    border-radius: 20px;
    border: 1px solid rgba(200, 169, 107, 0.28);
    box-shadow: 0 14px 40px rgba(31, 77, 58, 0.1);
}

.fp-v2-collections .fp-promo-banner__overlay {
    background: linear-gradient(
        165deg,
        rgba(8, 20, 16, 0.02) 0%,
        rgba(8, 20, 16, 0.08) 35%,
        rgba(8, 20, 16, 0.72) 100%
    ) !important;
}

.fp-v2-collections .fp-promo-banner:hover .fp-promo-banner__overlay {
    background: linear-gradient(
        165deg,
        rgba(8, 20, 16, 0.05) 0%,
        rgba(8, 20, 16, 0.15) 40%,
        rgba(8, 20, 16, 0.82) 100%
    ) !important;
}

.fp-v2-collections .fp-promo-banner__label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.fp-v2-collections .fp-promo-banner__tag {
    display: inline-block;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.fp-v2-collections .fp-promo-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.fp-v2-collections .fp-promo-banner:hover .fp-promo-banner__cta {
    opacity: 1;
    transform: none;
}

.fp-v2-collections .fp-promo-banner__cta i {
    transition: transform 0.3s ease;
}

.fp-v2-collections .fp-promo-banner:hover .fp-promo-banner__cta i {
    transform: translateX(4px);
}

/* Collection section — full artwork banners (assets/images/collections/) */
.fp-v2-collections--edge {
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(200, 169, 107, 0.11), transparent 58%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(31, 77, 58, 0.05), transparent 50%),
        radial-gradient(ellipse 50% 40% at 100% 70%, rgba(31, 77, 58, 0.05), transparent 50%),
        linear-gradient(180deg, #f3ece2 0%, #ffffff 48%, #f5f0e8 100%);
}

.fp-v2-collections--edge::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(31, 77, 58, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.35;
    pointer-events: none;
}

.fp-v2-collections__decor {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.14), transparent 68%);
    filter: blur(2px);
    pointer-events: none;
}

.fp-v2-collections--luxe .fp-v2-collections__decor::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -280px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 77, 58, 0.08), transparent 70%);
}

.fp-v2-collections--compact {
    padding-top: clamp(1.5rem, 3vw, 2rem) !important;
    padding-bottom: clamp(1.65rem, 3.2vw, 2.25rem) !important;
}

.fp-v2-collections__head-wrap {
    position: relative;
    z-index: 1;
}

.fp-v2-collections--edge .fp-v2-collections__head-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.fp-v2-collections__head h2::after {
    width: 72px;
    margin-top: 0.85rem;
}

.fp-v2-collections__kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    margin: 0.5rem 0 0.35rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    font-weight: 600;
    color: rgba(31, 77, 58, 0.82);
    letter-spacing: 0.02em;
}

.fp-v2-collections__kicker i {
    font-size: 0.45rem;
    color: var(--fp-pro-gold);
    opacity: 0.9;
}

.fp-v2-collections__intro {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(31, 77, 58, 0.58);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.fp-v2-collections--edge .fp-v2-section-head {
    margin-bottom: clamp(0.75rem, 1.8vw, 1.1rem);
}

.fp-v2-collections--compact .fp-v2-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.05rem);
}

.fp-v2-collections__bleed {
    position: relative;
    z-index: 1;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin-left: calc(50% - 50vw + 8px);
    margin-right: calc(50% - 50vw + 8px);
    padding-left: clamp(6px, 0.8vw, 12px);
    padding-right: clamp(6px, 0.8vw, 12px);
}

@media (min-width: 992px) {
    .fp-v2-collections--artwork .fp-promo-grid,
    .fp-v2-collections--artwork .fp-promo-grid--bento {
        display: grid !important;
        flex-direction: unset !important;
    }

    .fp-v2-collections--artwork .fp-promo-banner,
    .fp-v2-collections--artwork .fp-promo-banner--hero,
    .fp-v2-collections--artwork .fp-promo-banner--wide {
        width: auto !important;
        aspect-ratio: unset;
    }
}

@media (min-width: 992px) {
    .fp-v2-collections__bleed {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        margin-left: calc(50% - 50vw + 12px);
        margin-right: calc(50% - 50vw + 12px);
    }
}

.fp-v2-collections__grid-shell {
    position: relative;
    padding: clamp(8px, 1vw, 12px);
    border-radius: clamp(16px, 1.2vw, 22px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(250, 247, 242, 0.35));
    border: 1px solid rgba(200, 169, 107, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 16px 40px rgba(31, 77, 58, 0.08);
}

.fp-v2-collections__grid-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.45), transparent 40%, rgba(200, 169, 107, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.fp-v2-collections--artwork .fp-promo-grid--bento {
    gap: clamp(7px, 0.8vw, 11px);
}

.fp-v2-collections--artwork .fp-promo-banner--artwork {
    background: #0a1612;
    border: 1px solid rgba(200, 169, 107, 0.38);
    border-radius: clamp(11px, 0.85vw, 15px);
    box-shadow:
        0 3px 0 rgba(200, 169, 107, 0.1),
        0 10px 28px rgba(10, 22, 18, 0.2);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork:hover {
    transform: translateY(-3px);
    box-shadow:
        0 5px 0 rgba(200, 169, 107, 0.14),
        0 16px 36px rgba(10, 22, 18, 0.24);
    border-color: rgba(232, 212, 168, 0.6);
    z-index: 2;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork img {
    object-fit: contain;
    object-position: center center;
    background: #0a1612;
    width: 100%;
    height: 100%;
    padding: 3px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork[style*="--fp-banner-aspect"] {
    aspect-ratio: var(--fp-banner-aspect);
    height: auto;
    min-height: 0;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork:hover img {
    transform: scale(1.01);
    filter: none;
}

.fp-v2-collections--artwork .fp-promo-banner__shine--art {
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    z-index: 3;
    pointer-events: none;
    transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-v2-collections--artwork .fp-promo-banner--artwork:hover .fp-promo-banner__shine--art {
    left: 130%;
}

.fp-v2-collections--artwork .fp-promo-banner__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(225deg, rgba(200, 169, 107, 0.35) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork:hover .fp-promo-banner__corner {
    opacity: 1;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork .fp-promo-banner__hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    transition: box-shadow 0.35s ease;
}

.fp-v2-collections--artwork .fp-promo-banner--artwork:hover .fp-promo-banner__hit {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), inset 0 -40px 60px rgba(0, 0, 0, 0.15);
}

.fp-v2-collections__foot {
    display: flex;
    justify-content: center;
    margin-top: clamp(0.85rem, 1.8vw, 1.15rem);
}

.fp-v2-collections__shop-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fp-pro-green-dark, #163828);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 169, 107, 0.45);
    box-shadow: 0 6px 20px rgba(31, 77, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.fp-v2-collections__shop-all:hover {
    transform: translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, var(--fp-pro-green), #2a6b52);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(31, 77, 58, 0.25);
}

.fp-v2-collections__shop-all i {
    transition: transform 0.3s ease;
}

.fp-v2-collections__shop-all:hover i {
    transform: translateX(4px);
}

@media (min-width: 992px) {
    .fp-v2-collections--artwork .fp-promo-grid--count-5 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto auto;
        gap: clamp(8px, 0.85vw, 11px);
        align-items: stretch;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner {
        aspect-ratio: unset;
        min-height: 0;
        height: auto;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(1) {
        grid-column: 1 / 8;
        grid-row: 1 / 3;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(1):not([style*="--fp-banner-aspect"]) {
        aspect-ratio: 1200 / 698;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(2) {
        grid-column: 8 / 13;
        grid-row: 1;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(3) {
        grid-column: 8 / 13;
        grid-row: 2;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(2):not([style*="--fp-banner-aspect"]),
    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(3):not([style*="--fp-banner-aspect"]),
    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(4):not([style*="--fp-banner-aspect"]),
    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(5):not([style*="--fp-banner-aspect"]) {
        aspect-ratio: 1090 / 420;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(4) {
        grid-column: 1 / 7;
        grid-row: 3;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner:nth-child(5) {
        grid-column: 7 / 13;
        grid-row: 3;
    }

    .fp-v2-collections--artwork .fp-promo-grid--count-5 .fp-promo-banner img {
        height: 100%;
        min-height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 1200px) {
    .fp-v2-collections--artwork .fp-promo-grid--count-5 {
        gap: 10px;
    }
}

@media (max-width: 991.98px) {
    .fp-v2-collections--artwork .fp-promo-banner--artwork {
        aspect-ratio: 1090 / 420;
        min-height: 0;
        max-height: none;
    }

    .fp-v2-collections--artwork .fp-promo-banner--artwork:nth-child(1) {
        aspect-ratio: 1200 / 698;
    }
}

/* Featured products */
.fp-v2-featured {
    position: relative;
    padding-top: clamp(2.25rem, 4.5vw, 3.5rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 3.75rem) !important;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 169, 107, 0.1), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
}

.fp-v2-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(31, 77, 58, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.45;
    pointer-events: none;
}

.fp-v2-featured > .container-fluid {
    position: relative;
    z-index: 1;
}

.fp-v2-featured .fp-v2-section-head--row {
    align-items: center;
    margin-bottom: 2rem;
}

.fp-v2-featured .fp-link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 169, 107, 0.45);
    background: rgba(255, 255, 255, 0.85);
    color: var(--fp-pro-green);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(31, 77, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.fp-v2-featured .fp-link-more:hover {
    background: var(--fp-pro-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(31, 77, 58, 0.18);
}

.fp-showcase-grid--luxury {
    gap: clamp(1rem, 2vw, 1.65rem);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

@media (min-width: 1200px) {
    .fp-v2-featured .fp-showcase-grid--luxury {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Featured + shop — full-bleed product image (no white frame) */
.fp-v2-featured .fp-product-card--luxury .fp-product-card__media,
.fp-products-showcase .fp-product-card--luxury .fp-product-card__media,
.fp-showcase-grid--luxury .fp-product-card--luxury .fp-product-card__media {
    aspect-ratio: 4 / 5;
    min-height: clamp(240px, 26vw, 300px);
    padding: 0 !important;
    margin: 0;
    background: #0a1210 !important;
    border: none !important;
    border-bottom: 1px solid rgba(200, 169, 107, 0.2) !important;
    display: block;
    position: relative;
    overflow: hidden;
}

.fp-v2-featured .fp-product-card--luxury .fp-product-card__media::before,
.fp-products-showcase .fp-product-card--luxury .fp-product-card__media::before,
.fp-showcase-grid--luxury .fp-product-card--luxury .fp-product-card__media::before {
    display: none !important;
}

.fp-v2-featured .fp-product-card--luxury .fp-product-card__media::after,
.fp-products-showcase .fp-product-card--luxury .fp-product-card__media::after,
.fp-showcase-grid--luxury .fp-product-card--luxury .fp-product-card__media::after {
    display: none !important;
}

.fp-v2-featured .fp-product-card--luxury .fp-showcase-card__img-link,
.fp-products-showcase .fp-product-card--luxury .fp-showcase-card__img-link,
.fp-showcase-grid--luxury .fp-product-card--luxury .fp-showcase-card__img-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0;
}

.fp-v2-featured .fp-product-card--luxury .fp-showcase-card__img-link img,
.fp-products-showcase .fp-product-card--luxury .fp-showcase-card__img-link img,
.fp-showcase-grid--luxury .fp-product-card--luxury .fp-showcase-card__img-link img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center;
    padding: 0 !important;
    margin: 0;
    border-radius: 0;
    filter: none !important;
    transform-origin: center center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-v2-featured .fp-product-card--luxury:hover .fp-showcase-card__img-link img,
.fp-products-showcase .fp-product-card--luxury:hover .fp-showcase-card__img-link img,
.fp-showcase-grid--luxury .fp-product-card--luxury:hover .fp-showcase-card__img-link img {
    transform: scale(1.08);
    filter: none !important;
}

.fp-showcase-grid--luxury .fp-product-card--luxury .fp-showcase-card__float {
    z-index: 4;
}

/* Featured grid — product photo only (no badges on image) */
.fp-v2-featured .fp-product-card__media .fp-product-card__badge {
    display: none !important;
}

.fp-v2-featured .fp-product-card--luxury .fp-product-card__body {
    padding: 1.15rem 1.2rem 1.35rem;
    background: #fff;
}

.fp-v2-featured .fp-product-card--luxury .fp-product-card__brand {
    color: var(--fp-pro-gold);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.fp-v2-featured .fp-product-card--luxury .fp-product-card__title a {
    font-size: 1.05rem;
}

.fp-v2-featured .fp-product-card--luxury .fp-showcase-card__rating-pill {
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.25);
}

/* Legacy luxury media (other pages) */
.fp-product-card--luxury .fp-product-card__media {
    background: #0a1210;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.fp-product-card--luxury .fp-product-card__media::after {
    display: none;
}

.fp-product-card--luxury .fp-showcase-card__img-link {
    position: absolute;
    inset: 0;
    height: auto !important;
    min-height: 0 !important;
    max-height: none;
    padding: 0 !important;
}

.fp-product-card--luxury .fp-showcase-card__img-link img {
    padding: 0 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-product-card--luxury:hover .fp-showcase-card__img-link img {
    transform: scale(1.08);
    filter: none;
}

.fp-product-card--luxury .fp-btn--buy {
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2d6b52 100%);
}

/* Brand duo posters — full artwork visible (same slot as former results section) */
.fp-v2-brand-duo {
    position: relative;
    overflow: hidden;
    padding-top: clamp(2.5rem, 5vw, 4rem) !important;
    padding-bottom: clamp(2.75rem, 5.5vw, 4.25rem) !important;
    background:
        radial-gradient(ellipse 85% 55% at 15% 20%, rgba(200, 169, 107, 0.14), transparent 55%),
        radial-gradient(ellipse 70% 50% at 88% 75%, rgba(31, 77, 58, 0.08), transparent 52%),
        linear-gradient(175deg, #faf6ef 0%, #ffffff 42%, #f7f2ea 100%);
}

.fp-v2-brand-duo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(31, 77, 58, 0.045) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.fp-v2-brand-duo__ambient {
    position: absolute;
    top: 8%;
    left: 50%;
    width: min(720px, 90vw);
    height: 280px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(200, 169, 107, 0.12), transparent 68%);
    filter: blur(2px);
    pointer-events: none;
}

.fp-v2-brand-duo__wrap {
    position: relative;
    z-index: 1;
}

.fp-v2-brand-duo .fp-v2-section-head {
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.fp-v2-brand-duo .fp-v2-section-head p {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fpBrandDuoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fp-v2-brand-duo__marquee {
    position: relative;
    z-index: 2;
    margin: -0.5rem auto clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: min(1180px, calc(100% - 1.5rem));
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--fp-pro-green) 0%, #2a6b52 45%, var(--fp-pro-green-dark, #163828) 100%);
    border: 1px solid rgba(200, 169, 107, 0.35);
    box-shadow: 0 10px 28px rgba(31, 77, 58, 0.18);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.fp-v2-brand-duo__marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: max-content;
    padding: 0.55rem 1.25rem;
    animation: fpBrandDuoMarquee 32s linear infinite;
}

.fp-v2-brand-duo__marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.fp-v2-brand-duo__marquee-track i {
    color: var(--fp-pro-gold-light, #e8d4a8);
    font-size: 0.85rem;
}

.fp-v2-brand-duo__pitch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.fp-v2-brand-duo__price-chip,
.fp-v2-brand-duo__count-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.fp-v2-brand-duo__price-chip {
    color: var(--fp-pro-green-dark, #163828);
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.95), rgba(232, 212, 168, 0.88));
    box-shadow: 0 6px 18px rgba(200, 169, 107, 0.35);
}

.fp-v2-brand-duo__price-chip i {
    font-size: 0.8rem;
}

.fp-v2-brand-duo__count-chip {
    color: rgba(31, 77, 58, 0.78);
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(200, 169, 107, 0.45);
}

.fp-v2-brand-duo__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    max-width: 1180px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .fp-v2-brand-duo__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 2.5vw, 2.25rem);
        align-items: stretch;
    }

    .fp-v2-brand-duo__panel:nth-child(2) {
        transform: translateY(12px);
    }

    .fp-v2-brand-duo__panel:nth-child(2):hover {
        transform: translateY(4px);
    }
}

.fp-v2-brand-duo__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
    border: 1px solid rgba(200, 169, 107, 0.38);
    box-shadow:
        0 4px 0 rgba(200, 169, 107, 0.12),
        0 18px 48px rgba(31, 77, 58, 0.1);
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        border-color 0.35s ease;
    height: 100%;
}

.fp-v2-brand-duo__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.fp-v2-brand-duo__panel:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 107, 0.62);
    box-shadow:
        0 6px 0 rgba(200, 169, 107, 0.18),
        0 28px 64px rgba(31, 77, 58, 0.16);
}

.fp-v2-brand-duo__ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2a6b52 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(31, 77, 58, 0.28);
}

.fp-v2-brand-duo__frame {
    display: block;
    width: 100%;
    line-height: 0;
    padding: clamp(0.65rem, 1.5vw, 1rem);
    background:
        linear-gradient(180deg, rgba(250, 247, 242, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
    overflow: hidden;
}

.fp-v2-brand-duo__frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fp-pro-gold), transparent);
    opacity: 0.55;
}

.fp-v2-brand-duo__panel .fp-v2-brand-duo__frame {
    position: relative;
}

.fp-v2-brand-duo__perks {
    position: absolute;
    left: clamp(0.85rem, 2vw, 1.15rem);
    right: clamp(0.85rem, 2vw, 1.15rem);
    bottom: clamp(0.75rem, 1.5vw, 1rem);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    pointer-events: none;
}

.fp-v2-brand-duo__perk {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(8, 20, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, background 0.35s ease;
}

.fp-v2-brand-duo__panel:hover .fp-v2-brand-duo__perk {
    background: rgba(31, 77, 58, 0.82);
    transform: translateY(-2px);
}

.fp-v2-brand-duo__shop-float {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fp-pro-green-dark, #163828);
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--fp-pro-gold);
    box-shadow: 0 14px 40px rgba(31, 77, 58, 0.22);
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.92);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.fp-v2-brand-duo__shop-float i {
    color: var(--fp-pro-green);
    font-size: 1rem;
}

.fp-v2-brand-duo__panel:hover .fp-v2-brand-duo__shop-float {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fp-v2-brand-duo__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: contain;
    object-position: center center;
    box-shadow: 0 10px 32px rgba(31, 77, 58, 0.08);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.fp-v2-brand-duo__panel:hover .fp-v2-brand-duo__img {
    transform: scale(1.015);
    box-shadow: 0 14px 40px rgba(31, 77, 58, 0.12);
}

.fp-v2-brand-duo__foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.1rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.4rem);
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
    border-top: 1px solid rgba(200, 169, 107, 0.22);
}

@media (min-width: 576px) {
    .fp-v2-brand-duo__foot {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.fp-v2-brand-duo__copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.fp-v2-brand-duo__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    color: var(--fp-pro-green);
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.fp-v2-brand-duo__subtitle {
    font-size: clamp(0.78rem, 1.4vw, 0.88rem);
    line-height: 1.45;
    color: rgba(31, 77, 58, 0.62);
}

.fp-v2-brand-duo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-shrink: 0;
    align-self: flex-start;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--fp-pro-green) 0%, #2a6b52 55%, #1f4d3a 100%);
    box-shadow: 0 6px 18px rgba(31, 77, 58, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (min-width: 576px) {
    .fp-v2-brand-duo__btn {
        align-self: center;
    }
}

.fp-v2-brand-duo__panel:hover .fp-v2-brand-duo__btn {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 77, 58, 0.32);
    background: linear-gradient(135deg, #2a6b52 0%, var(--fp-pro-green) 100%);
}

.fp-v2-brand-duo__btn i {
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-v2-brand-duo__panel:hover .fp-v2-brand-duo__btn i {
    transform: translate(2px, -2px);
}

.fp-v2-brand-duo__cta-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.15rem, 3vw, 1.75rem);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 247, 242, 0.98) 100%);
    border: 1px solid rgba(200, 169, 107, 0.35);
    box-shadow: 0 16px 44px rgba(31, 77, 58, 0.1);
}

@media (min-width: 768px) {
    .fp-v2-brand-duo__cta-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.fp-v2-brand-duo__cta-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 34rem;
}

.fp-v2-brand-duo__cta-copy strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--fp-pro-green);
}

.fp-v2-brand-duo__cta-copy span {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(31, 77, 58, 0.68);
}

.fp-v2-brand-duo__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.fp-v2-brand-duo__cta-primary {
    box-shadow: 0 8px 22px rgba(31, 77, 58, 0.25);
}

.fp-v2-brand-duo__cta-secondary {
    border-color: rgba(200, 169, 107, 0.55) !important;
}

@media (prefers-reduced-motion: reduce) {
    .fp-v2-brand-duo__marquee-track {
        animation: none;
    }
}

/* Transformation / results — removed from homepage; styles kept for legacy pages if any */
.fp-v2-transform {
    padding-top: clamp(2.25rem, 4.5vw, 3.5rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 3.75rem) !important;
    background: linear-gradient(180deg, #f5f0e8 0%, #ffffff 45%, #f5f0e8 100%);
}

.fp-v2-transform .fp-v2-section-head {
    margin-bottom: 2rem;
}

.fp-v2-transform-card {
    background: #fff;
    border: 1px solid rgba(200, 169, 107, 0.28);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(31, 77, 58, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
    overflow: hidden;
}

.fp-v2-transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(31, 77, 58, 0.14);
    border-color: rgba(200, 169, 107, 0.5);
}

.fp-v2-transform-card__images {
    padding: 1.15rem;
    gap: 0.65rem;
    background: linear-gradient(180deg, #faf7f2 0%, #fff 100%);
}

.fp-v2-transform-card__img-wrap {
    border-radius: 14px;
    border: 1px solid rgba(200, 169, 107, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fp-v2-transform-card:hover .fp-v2-transform-card__img-wrap--after {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(31, 77, 58, 0.12);
}

.fp-v2-transform-card__img-wrap--before {
    background: linear-gradient(145deg, #ece6dc 0%, #f8f4ee 100%);
}

.fp-v2-transform-card__img-wrap--before img {
    object-fit: contain !important;
    padding: 0.75rem;
    filter: grayscale(0.25) contrast(0.98);
}

.fp-v2-transform-card__img-wrap--after img {
    object-fit: cover;
}

.fp-v2-transform-card__badge {
    padding: 0.28rem 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fp-v2-transform-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #f5f0e8 100%);
    border: 1px solid rgba(200, 169, 107, 0.45);
    box-shadow: 0 4px 14px rgba(31, 77, 58, 0.1);
    color: var(--fp-pro-green);
    flex-shrink: 0;
}

.fp-v2-transform-card__body {
    padding: 1.35rem 1.5rem 1.6rem;
    background: #fff;
}

.fp-v2-transform-card__row {
    padding: 0.65rem 0;
    border-bottom-color: rgba(200, 169, 107, 0.15);
}

.fp-v2-transform-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fp-v2-transform-card__key {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a8f84;
    font-weight: 600;
}

.fp-v2-transform-card__val {
    font-weight: 600;
    color: var(--fp-pro-green);
    text-align: right;
    max-width: 58%;
}

.fp-v2-transform-card__product {
    font-weight: 700;
    color: var(--fp-pro-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.fp-v2-transform-card__product:hover {
    color: var(--fp-pro-green);
    border-bottom-color: rgba(200, 169, 107, 0.5);
}

/* ═══ Product detail — rich description & reviews ═══ */
.mm-pdp-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.75rem 0 0;
}

.mm-pdp-spec-pill {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--fp-pro-green);
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.35);
}

.mm-pdp-details--rich {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
    border: 1px solid rgba(200, 169, 107, 0.28);
    box-shadow: 0 14px 40px rgba(31, 77, 58, 0.08);
}

.mm-pdp-details-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mm-pdp-details-lead {
    margin: 0.35rem 0 0;
    color: rgba(31, 77, 58, 0.62);
    font-size: 0.92rem;
}

.mm-pdp-overview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.25rem;
    padding: 1.15rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(31, 77, 58, 0.08);
}

.mm-pdp-overview__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fp-pro-green), #2a6b52);
    color: #fff;
    font-size: 1.15rem;
}

.mm-pdp-overview__body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--fp-pro-green);
    margin: 0 0 0.65rem;
}

.mm-pdp-overview__body p {
    margin: 0 0 0.75rem;
    line-height: 1.65;
    color: rgba(31, 77, 58, 0.78);
    font-size: 0.92rem;
}

.mm-pdp-overview__body p:last-child {
    margin-bottom: 0;
}

.mm-pdp-suited {
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(31, 77, 58, 0.04);
}

.mm-pdp-suited h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fp-pro-green);
    margin: 0 0 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mm-pdp-suited ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(31, 77, 58, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
}

.mm-pdp-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mm-pdp-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fp-pro-green-dark, #163828);
    background: rgba(200, 169, 107, 0.18);
}

.mm-pdp-note {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    color: rgba(31, 77, 58, 0.72);
    background: rgba(200, 169, 107, 0.1);
    border-left: 3px solid var(--fp-pro-gold);
}

.mm-pdp-accordion-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(31, 77, 58, 0.55);
    margin: 0 0 0.75rem;
}

.mm-pdp-usage-list {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.65;
    color: rgba(31, 77, 58, 0.78);
}

.mm-pdp-reviews {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(200, 169, 107, 0.25);
}

.mm-pdp-reviews__head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

@media (min-width: 768px) {
    .mm-pdp-reviews__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.mm-pdp-reviews__head h3 {
    font-family: 'Playfair Display', serif;
    color: var(--fp-pro-green);
    margin: 0.25rem 0 0.35rem;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.mm-pdp-reviews__head p {
    margin: 0;
    color: rgba(31, 77, 58, 0.62);
    font-size: 0.9rem;
    max-width: 36rem;
}

.mm-pdp-reviews__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.mm-pdp-reviews__score {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--fp-pro-green-dark, #163828);
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.35), rgba(200, 169, 107, 0.15));
}

.mm-pdp-reviews__score i {
    color: var(--fp-pro-gold);
}

.mm-pdp-reviews__summary small {
    color: rgba(31, 77, 58, 0.55);
    font-size: 0.75rem;
}

.mm-pdp-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mm-pdp-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .mm-pdp-reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mm-pdp-review-card {
    padding: 1.15rem 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(200, 169, 107, 0.28);
    box-shadow: 0 8px 28px rgba(31, 77, 58, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mm-pdp-review-card__stars {
    margin-bottom: 0.65rem;
    color: var(--fp-pro-gold);
    font-size: 0.75rem;
}

.mm-pdp-review-card__text {
    flex: 1;
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 0.88rem;
    color: rgba(31, 77, 58, 0.78);
    font-style: italic;
}

.mm-pdp-review-card__author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.mm-pdp-review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--fp-pro-green), #2a6b52);
}

.mm-pdp-review-card__author strong {
    display: block;
    font-size: 0.82rem;
    color: var(--fp-pro-green);
}

.mm-pdp-review-card__author small {
    display: block;
    font-size: 0.72rem;
    color: rgba(31, 77, 58, 0.55);
    line-height: 1.35;
}

/* PDP — gallery media, videos, left variations */
.mm-pdp-gallery-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #faf7f2;
}

.mm-pdp-gallery img#mmMainImage,
.mm-pdp-media-stage__img {
    max-height: min(520px, 62vh);
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.mm-pdp-gallery .mm-pdp-media-stage__video,
.mm-pdp-gallery .mm-pdp-media-stage__embed {
    width: 100%;
}

/* Prevent horizontal page scroll from full-bleed sections */
.fp-v2 .fp-main {
    overflow-x: clip;
}

.mm-pdp-media-stage__embed {
    aspect-ratio: 16 / 9;
    min-height: 240px;
    border: 0;
}

.mm-pdp-media-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.mm-pdp-media-thumb {
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(200, 169, 107, 0.25);
}

.mm-pdp-media-thumb.active {
    border-color: var(--fp-pro-green);
    box-shadow: 0 0 0 2px rgba(31, 77, 58, 0.15);
}

.mm-pdp-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mm-pdp-media-thumb__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 18, 0.45);
    color: #fff;
    font-size: 1.25rem;
    pointer-events: none;
}

.mm-pdp-variations--gallery {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #faf7f2);
    border: 1px solid rgba(200, 169, 107, 0.28);
}

.mm-pdp-variations--gallery .mm-pdp-variation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
