:root {
    --fluffimi-rose: #ee6f8f;
    --fluffimi-rose-strong: #d9486d;
    --fluffimi-peach: #ffb788;
    --fluffimi-cream: #fff8f5;
    --fluffimi-ink: #172033;
    --fluffimi-muted: #667085;
    --fluffimi-line: rgba(148, 163, 184, 0.2);
    --fluffimi-line-strong: rgba(148, 163, 184, 0.34);
    --fluffimi-panel: rgba(255, 255, 255, 0.92);
    --fluffimi-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    --fluffimi-shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.06);
    --fluffimi-radius-lg: 24px;
    --fluffimi-radius-md: 16px;
}

body {
    font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.storefront-body {
    background:
        radial-gradient(circle at top left, rgba(255, 192, 203, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 221, 181, 0.24), transparent 24%),
        linear-gradient(180deg, #fffaf8 0%, #f9f7f3 100%);
    color: var(--fluffimi-ink);
}

.store-header {
    backdrop-filter: blur(14px);
    background: rgba(255, 250, 248, 0.78);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.checkout-minimal-header {
    background: rgba(255, 255, 255, 0.98);
}

.checkout-minimal-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.4rem;
    padding: 1rem 0;
}

.announcement-bar {
    background: linear-gradient(90deg, rgba(255, 245, 247, 0.92) 0%, rgba(255, 247, 237, 0.92) 48%, rgba(255, 250, 245, 0.92) 100%);
    font-size: 0.75rem;
}

.announcement-bar-inner {
    min-height: 38px;
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    align-items: center;
}

.announcement-offer,
.announcement-points,
.announcement-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.announcement-offer {
    justify-content: center;
    min-width: 0;
    text-align: center;
    font-weight: 800;
    color: #9f1239;
}

.announcement-copy-code {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 28px;
    padding: 0.24rem 0.45rem 0.24rem 0.62rem;
    border: 1px dashed rgba(159, 18, 57, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #9f1239;
    font: inherit;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(159, 18, 57, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.announcement-copy-code:hover,
.announcement-copy-code:focus {
    border-color: rgba(159, 18, 57, 0.62);
    background: #ffffff;
    transform: translateY(-1px);
}

.announcement-copy-code small {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 0.42rem;
    border-radius: 999px;
    background: #fff1f4;
    color: #be123c;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.announcement-copy-code.is-copied {
    border-style: solid;
    border-color: rgba(22, 163, 74, 0.42);
    color: #166534;
}

.announcement-copy-code.is-copied small {
    background: #dcfce7;
    color: #166534;
}

.announcement-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.24rem 0.42rem 0.24rem 0.55rem;
    border: 1px solid rgba(251, 113, 133, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #9f1239;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(159, 18, 57, 0.07);
    white-space: nowrap;
}

.announcement-timer-label {
    color: #be123c;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-time-chip {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.08rem;
    min-width: 2.05rem;
    padding: 0.16rem 0.34rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
    color: #9f1239;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(251, 113, 133, 0.12);
}

.announcement-time-chip strong {
    font-size: 0.78rem;
    line-height: 1;
}

.announcement-time-chip em {
    color: #be123c;
    font-size: 0.58rem;
    font-style: normal;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .announcement-bar {
        font-size: 0.68rem;
    }

    .announcement-bar-inner {
        min-height: 36px;
        gap: 0.45rem;
    }

    .announcement-offer {
        gap: 0.35rem;
    }

    .announcement-timer {
        gap: 0.18rem;
        padding: 0.18rem 0.28rem;
    }

    .announcement-timer-label {
        display: none;
    }

    .announcement-time-chip {
        min-width: 1.72rem;
        padding: 0.12rem 0.22rem;
    }

    .announcement-time-chip strong {
        font-size: 0.68rem;
    }

    .announcement-time-chip em {
        font-size: 0.52rem;
    }

}

.announcement-points {
    justify-content: center;
    color: var(--fluffimi-muted);
}

.announcement-points span,
.announcement-actions a,
.announcement-select {
    color: var(--fluffimi-muted);
    text-decoration: none;
}

.announcement-points i,
.announcement-actions i {
    color: var(--fluffimi-rose);
}

.announcement-actions {
    justify-content: flex-end;
    gap: 0.9rem;
}

.announcement-actions a {
    position: relative;
    font-weight: 600;
}

.announcement-actions a + a::before {
    content: "";
    position: absolute;
    left: -0.48rem;
    top: 50%;
    width: 1px;
    height: 0.8rem;
    background: rgba(148, 163, 184, 0.35);
    transform: translateY(-50%);
}

.announcement-select {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0;
    border: 0;
}

.main-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 249, 0.94));
}

.desktop-header {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
}

.mobile-header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.storefront-main {
    min-height: 60vh;
}

.storefront-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: #101828;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.storefront-brand-has-logo {
    gap: 0;
}

.storefront-brand-mobile {
    justify-self: center;
    font-size: 1.35rem;
}

.storefront-brand-mobile.storefront-brand-has-logo {
    gap: 0;
}

.storefront-brand-logo {
    width: auto;
    height: 2.8rem;
    max-width: 11rem;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
}

.storefront-brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.95rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9b71 0%, #fb7185 100%);
    color: #fff;
    box-shadow: 0 1rem 1.8rem rgba(251, 113, 133, 0.22);
}

.header-brand-wrap {
    min-width: 0;
}

.brand-tagline {
    margin-left: 0;
    margin-top: 0.18rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fluffimi-muted);
}

.storefront-brand-footer .storefront-brand-logo {
    height: 2.45rem;
    max-width: 10rem;
}

.storefront-brand-footer {
    display: inline-grid;
    justify-items: start;
    gap: 0.25rem;
    grid-template-columns: 1fr;
}

.storefront-brand-footer .storefront-brand-copy {
    align-items: flex-start;
    grid-column: 1;
    flex: 1 1 auto;
}

.storefront-brand-footer .brand-tagline {
    margin-top: 0;
    display: block;
}

.hero-search-form {
    width: 100%;
    position: relative;
}

.hero-search-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 114, 182, 0.14);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(251, 113, 133, 0.08);
}

.search-category-btn,
.hero-search-input,
.hero-search-btn,
.header-account-btn,
.header-action-pill,
.header-icon-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.search-category-btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff3f4 0%, #fff7ed 100%);
    color: var(--fluffimi-rose-strong);
    font-weight: 700;
    padding: 0.72rem 0.95rem;
    font-size: 0.88rem;
}

.hero-search-input {
    border: 0;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: var(--fluffimi-ink);
    min-height: 44px;
    padding-inline: 0.25rem;
}

.hero-search-input::placeholder {
    color: #9ca3af;
}

.hero-search-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(251, 113, 133, 0.24);
}

.search-suggest-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    z-index: 30;
    padding: 0.5rem;
    border: 1px solid rgba(244, 114, 182, 0.12);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.search-suggest-link {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.6rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-suggest-link:hover,
.search-suggest-link:focus {
    background: #fff5f7;
    transform: translateY(-1px);
}

.search-suggest-thumb {
    width: 54px;
    height: 54px;
    border-radius: 0.9rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 243, 245, 0.98), rgba(255, 245, 237, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggest-copy {
    min-width: 0;
}

.search-suggest-title {
    color: #142033;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-suggest-meta {
    margin-top: 0.18rem;
    color: #6b7280;
    font-size: 0.76rem;
    font-weight: 600;
}

.search-suggest-empty {
    padding: 0.8rem 0.9rem;
    color: #6b7280;
    font-size: 0.84rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.header-action-pill,
.header-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: var(--fluffimi-panel);
    color: var(--fluffimi-ink);
    padding: 0.68rem 0.9rem;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: var(--fluffimi-shadow-soft);
}

.header-action-icon {
    color: var(--fluffimi-rose);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #101828;
    color: #fff;
    font-size: 0.64rem;
    font-weight: 700;
}

.header-icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--fluffimi-ink);
    text-decoration: none;
    box-shadow: var(--fluffimi-shadow-soft);
}

.secondary-nav,
.category-quick-row {
    background: rgba(255, 255, 255, 0.8);
}

.secondary-nav-inner {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-row-label {
    padding-top: 0.75rem;
    margin-bottom: 0.35rem;
}

.secondary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.secondary-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    color: #344054;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
}

.secondary-menu a.active,
.secondary-menu a:hover,
.announcement-actions a:hover,
.footer-link:hover,
.quick-link:hover {
    color: var(--fluffimi-rose-strong);
}

.secondary-menu a.active,
.secondary-menu a:hover {
    background: rgba(255, 243, 244, 0.92);
}

.nav-new-badge {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
    background: #fde68a;
    color: #92400e;
    font-size: 0.62rem;
    font-weight: 700;
}

.quick-row-inner {
    min-height: 52px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    padding: 0.35rem 0 0.55rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    min-height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.94);
    color: var(--fluffimi-ink);
    text-decoration: none;
    padding: 0.5rem 0.65rem;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.04);
    font-size: 0.76rem;
    font-weight: 600;
}

.quick-link i {
    color: var(--fluffimi-rose);
    width: 1rem;
    text-align: center;
}

.quick-link-all {
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
    color: #be185d;
    font-weight: 700;
}

.mobile-search-modal .modal-content,
.mobile-menu-offcanvas {
    background: linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
}

.hero-search-shell-mobile {
    margin-top: 1rem;
    grid-template-columns: minmax(0, 1fr) auto;
}

.mobile-menu-block,
.mobile-quick-grid {
    display: grid;
    gap: 0.75rem;
}

.mobile-menu-block a,
.mobile-quick-grid a {
    color: var(--fluffimi-ink);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--fluffimi-line);
    box-shadow: var(--fluffimi-shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-block a {
    font-weight: 800;
}

.mobile-menu-label {
    margin: 1.5rem 0 0.8rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9f1239;
}

.hero-search-shell:focus-within,
.header-action-pill:focus-visible,
.header-account-btn:focus-visible,
.header-icon-btn:focus-visible,
.search-category-btn:focus-visible,
.secondary-menu a:focus-visible,
.quick-link:focus-visible,
.mobile-menu-block a:focus-visible,
.mobile-quick-grid a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(238, 111, 143, 0.16);
}

.hero-search-shell:focus-within {
    border-color: rgba(238, 111, 143, 0.45);
}

.header-icon-btn:hover,
.header-action-pill:hover,
.header-account-btn:hover,
.quick-link:hover,
.hero-search-btn:hover,
.search-category-btn:hover,
.mobile-menu-block a:hover,
.mobile-quick-grid a:hover {
    transform: translateY(-2px);
}

.header-action-pill:hover,
.header-account-btn:hover,
.header-icon-btn:hover,
.quick-link:hover,
.mobile-menu-block a:hover,
.mobile-quick-grid a:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.search-category-btn:hover,
.hero-search-btn:hover {
    box-shadow: 0 14px 30px rgba(251, 113, 133, 0.18);
}

.fl-home-hero-shell {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    contain: layout;
    border: 1px solid rgba(244, 203, 210, 0.7);
    border-radius: 28px;
    padding: 2.9rem 2.5rem;
    background:
        radial-gradient(circle at top left, rgba(255, 225, 232, 0.62), transparent 36%),
        radial-gradient(circle at 80% 52%, rgba(255, 236, 212, 0.58), transparent 24%),
        linear-gradient(135deg, rgba(255, 250, 251, 0.98), rgba(255, 251, 247, 0.98));
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.fl-home-hero-grid {
    min-height: 100%;
    --bs-gutter-x: 1.75rem;
}

.fl-home-copy-col {
    display: flex;
    align-items: center;
}

.fl-home-copy-stack {
    width: 100%;
    max-width: 33.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.fl-home-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-home-kicker,
.fl-section-link,
.fl-inline-badge,
.fl-product-badge,
.fl-mockup-tag {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fluffimi-rose-strong);
    font-size: 0.68rem;
    font-weight: 800;
    align-self: flex-start;
}

.fl-home-title {
    max-width: 12.8ch;
    margin: 0;
    font-size: clamp(3.05rem, 4.25vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #142033;
}

.fl-home-highlight {
    background: linear-gradient(135deg, #ef6d8f 0%, #f7a36d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fl-home-copy {
    max-width: 29rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #617084;
}

.fl-home-actions {
    align-items: center;
}

.fl-btn-primary,
.fl-btn-secondary {
    min-height: 48px;
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-weight: 700;
    font-size: 0.94rem;
    border-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.fl-btn-primary {
    background: linear-gradient(135deg, #ef6d8f 0%, #f7a36d 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(239, 109, 143, 0.22);
}

.fl-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #142033;
    border: 1px solid rgba(228, 232, 240, 0.92);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.045);
}

.fl-btn-primary:hover,
.fl-btn-secondary:hover {
    transform: translateY(-2px);
}

.fl-btn-primary:hover {
    color: #fff;
    box-shadow: 0 20px 36px rgba(249, 112, 143, 0.3);
}

.fl-btn-secondary:hover {
    color: #142033;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.08);
}

.fl-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
    margin-top: 0.1rem;
}

.fl-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #516074;
}

.fl-trust-item strong {
    display: block;
    color: #142033;
    font-size: 0.95rem;
    line-height: 1.1;
}

.fl-trust-item small {
    display: block;
    color: #677489;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.fl-trust-icon {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 228, 235, 0.98), rgba(255, 237, 211, 0.98));
    color: var(--fluffimi-rose-strong);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}

.fl-trust-icon-violet {
    background: linear-gradient(135deg, rgba(241, 233, 255, 0.98), rgba(250, 241, 255, 0.98));
    color: #8b5cf6;
}

.fl-trust-icon-amber {
    background: linear-gradient(135deg, rgba(255, 240, 222, 0.98), rgba(255, 247, 218, 0.98));
    color: #f59e0b;
}

.fl-hero-visual {
    position: relative;
    width: 100%;
    max-width: min(35rem, var(--fl-hero-visual-width, 500px));
    min-height: calc(var(--fl-hero-visual-height, 340px) + 12px);
    contain: layout;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.fl-hero-visual-frame {
    position: absolute;
    inset: 1.5rem 0.5rem 1.15rem 0.5rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 214, 221, 0.55), transparent 24%),
        radial-gradient(circle at 15% 85%, rgba(255, 237, 211, 0.5), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.26));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.fl-floating-badge {
    position: absolute;
    right: 0.25rem;
    bottom: 2rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #142033;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.fl-floating-badge i {
    color: var(--fluffimi-rose-strong);
}

.fl-mockup-stack {
    position: relative;
    width: min(100%, var(--fl-hero-visual-width, 500px));
    min-height: var(--fl-hero-visual-height, 340px);
    margin: 0 auto;
    z-index: 2;
}

.fl-mockup-stack-custom .fl-mockup-card {
    background: #fff;
}

.fl-mockup-stack-single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, var(--fl-hero-visual-height, 340px));
    min-height: var(--fl-hero-visual-height, 340px);
}

.fl-mockup-card-single {
    position: relative;
    inset: auto;
    width: min(100%, var(--fl-hero-visual-height, 340px));
    aspect-ratio: 1 / 1;
    transform: none;
}

.fl-mockup-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.fl-mockup-card-1 {
    top: 0.5rem;
    left: 50%;
    z-index: 3;
    width: min(52%, 258px);
    transform: translateX(-50%);
}

.fl-mockup-card-2 {
    top: 4.9rem;
    left: 1.45rem;
    z-index: 2;
    width: min(33%, 164px);
    transform: rotate(-7deg);
    opacity: 0.94;
}

.fl-mockup-card-3 {
    top: 5rem;
    right: 1.3rem;
    z-index: 1;
    width: min(33%, 164px);
    transform: rotate(7deg);
    opacity: 0.94;
}

.fl-mockup-media {
    aspect-ratio: 4 / 4.5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 242, 245, 0.95), rgba(255, 245, 237, 0.95));
}

.fl-mockup-stack-custom .fl-mockup-media {
    aspect-ratio: 1 / 1;
}

.fl-mockup-body {
    padding: 0.78rem 0.9rem 0.92rem;
}

.fl-mockup-tag {
    display: inline-flex;
    margin-bottom: 0.38rem;
    padding: 0.26rem 0.52rem;
    border-radius: 999px;
    background: rgba(255, 241, 217, 0.92);
    color: #a55a12;
    font-size: 0.62rem;
    font-weight: 800;
}

.fl-mockup-body h3 {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: #142033;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.fl-mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(255, 220, 228, 0.8), rgba(255, 232, 206, 0.8)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75) 14px, rgba(255, 255, 255, 0.35) 14px, rgba(255, 255, 255, 0.35) 28px);
    color: #8f2948;
    font-size: 1.05rem;
    font-weight: 800;
}

.fl-feature-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(241, 224, 229, 0.95);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.045);
}

.fl-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.35rem 0.95rem;
    border-right: 1px solid rgba(234, 239, 246, 0.9);
    background: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fl-feature-card:last-child {
    border-right: 0;
}

.fl-feature-card:hover,
.fl-category-card:hover,
.fl-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.08);
}

.fl-feature-icon {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 238, 243, 0.98), rgba(255, 243, 231, 0.98));
    color: var(--fluffimi-rose-strong);
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fl-feature-copy {
    min-width: 0;
}

.fl-feature-card .fl-feature-title {
    margin-bottom: 0.18rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
}

.fl-feature-card p {
    margin-bottom: 0;
    color: #677489;
    font-size: 0.72rem;
    line-height: 1.45;
}

.fl-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.fl-section-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
    color: #142033;
}

.fl-section-link {
    color: #142033;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.fl-home-product-section {
    padding-block: 1.65rem;
}

.fl-home-product-section + .fl-home-product-section {
    padding-top: 1.15rem;
}

.fl-home-product-section .fl-section-head {
    margin-bottom: 1rem !important;
}

@media (max-width: 575px) {
    .fl-home-product-section {
        padding-block: 1.1rem;
    }

    .fl-home-product-section + .fl-home-product-section {
        padding-top: 0.75rem;
    }
}

.fl-category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    min-height: 170px;
    padding: 1.35rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.045);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-category-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 239, 243, 0.95), rgba(255, 245, 232, 0.98));
    color: var(--fluffimi-rose-strong);
    font-size: 1.1rem;
}

.fl-category-name {
    color: #142033;
    font-size: 1rem;
    font-weight: 800;
}

.fl-category-count {
    color: #677489;
    font-size: 0.86rem;
}

.fl-mobile-slider {
    --bs-gutter-x: 1rem;
}

.fl-inline-badge {
    display: inline-flex;
    margin-left: 0.45rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 233, 175, 0.95);
    color: #9a5a05;
    font-size: 0.68rem;
    font-weight: 800;
    vertical-align: middle;
}

.fl-product-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.045);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-product-media-wrap {
    position: relative;
    padding: 0.8rem 0.8rem 0;
}

.fl-product-media {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1.1;
    background: linear-gradient(135deg, rgba(255, 245, 248, 0.95), rgba(255, 244, 236, 0.95));
}

.fl-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.55rem;
}

.fl-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a5a6c;
    font-weight: 700;
}

.fl-product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    display: inline-flex;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--fluffimi-rose-strong);
    font-size: 0.62rem;
    font-weight: 800;
}

.fl-product-body {
    display: grid;
    gap: 0.55rem;
    padding: 1rem 1rem 1.15rem;
}

.fl-product-category {
    color: #8a96a9;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fl-product-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
}

.fl-product-title a {
    color: #142033;
    text-decoration: none;
}

.fl-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.fl-product-price {
    color: #142033;
    font-size: 1rem;
    font-weight: 800;
}

.fl-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.55rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 243, 244, 0.92);
    color: var(--fluffimi-rose-strong);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.fl-home-cta {
    position: relative;
    overflow: hidden;
    padding: 2.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 223, 229, 0.62), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 219, 186, 0.58), transparent 26%),
        linear-gradient(135deg, #fff5f8 0%, #fff9f2 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.055);
}

.fl-home-showcase {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.fl-home-showcase-featured {
    background: transparent;
}

.fl-home-showcase-trending {
    background: transparent;
}

.fl-home-showcase-head {
    padding: 0;
}

.fl-home-showcase .row {
    --bs-gutter-x: 1.15rem;
}

.fl-home-showcase-item .product-card {
    border-color: rgba(251, 204, 214, 0.92);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.fl-home-showcase-item .product-card:hover {
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.11) !important;
}

.fl-home-showcase-item .product-image-wrap {
    min-height: 305px;
    padding: 0;
}

.fl-home-showcase-item .product-card-image {
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
}

.fl-home-showcase-item .product-card-body {
    gap: 8px;
    padding: 14px 16px 17px;
}

.fl-home-showcase-item .product-title {
    font-size: 15px;
    line-height: 1.35;
}

.fl-home-showcase-item .product-price-main {
    font-size: 20px;
}

.fl-home-reviews-subtitle {
    margin-top: 0.8rem;
    max-width: 42rem;
    color: #64748b;
    line-height: 1.75;
}

.fl-home-reviews-head {
    align-items: flex-end;
}

.fl-review-slider-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.fl-review-slider-btn {
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(251, 208, 217, 0.95);
    border-radius: 999px;
    background: #fff;
    color: #142033;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.fl-review-slider-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.08);
}

.fl-review-slider-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.fl-review-slider-shell {
    overflow: hidden;
}

.fl-review-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.28s ease;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    will-change: transform;
}

.fl-review-slider-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.fl-review-slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
}

.fl-review-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    height: 100%;
    padding: 1.25rem 1.2rem;
    border: 1px solid rgba(251, 208, 217, 0.9);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(255, 238, 243, 0.6), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 247, 0.98));
    box-shadow: none;
    transition: transform 0.2s ease;
}

.fl-review-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.fl-review-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.fl-review-avatar {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316 0%, #fb7185 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.18);
}

.fl-review-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.fl-review-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    margin-bottom: 0.35rem;
}

.fl-review-name {
    color: #142033;
    font-size: 1rem;
    font-weight: 800;
}

.fl-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.98);
    color: #15803d;
    font-size: 0.7rem;
    font-weight: 800;
}

.fl-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1;
}

.fl-review-stars .is-filled {
    color: #f59e0b;
}

.fl-review-score {
    margin-left: 0.35rem;
    color: #475467;
    font-size: 0.8rem;
    font-weight: 700;
}

.fl-review-copy {
    margin: 0;
    color: #475467;
    font-size: 0.95rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.fl-review-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.fl-review-product {
    color: #142033;
    font-size: 0.83rem;
    font-weight: 700;
}

.fl-review-date {
    color: #98a2b3;
    font-size: 0.76rem;
}

@media (max-width: 1199.98px) {
    .fl-review-slide {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 767.98px) {
    .fl-home-reviews-head {
        align-items: flex-start;
        gap: 1rem;
    }

    .fl-review-slider-track {
        gap: 1rem;
    }

    .fl-review-slide {
        flex-basis: 100%;
    }
}

/* Homepage footer breathing room. This repeats the homepage :has() selector so it
   wins over earlier page-specific footer compaction rules. */
.fl-home-page .fl-home-newsletter-section {
    padding-bottom: 46px !important;
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer.mt-5 {
        margin-top: 0 !important;
    }

    .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
        padding-top: 1.75rem !important;
    }
}

@media (max-width: 767.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-bottom: 30px !important;
    }

    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 1.25rem !important;
        }
    }
}

.fl-home-cta-title {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
    color: #142033;
}

.fl-home-cta-copy {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: #5f6b80;
    line-height: 1.75;
}

.fl-home-newsletter-form {
    max-width: 44rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.fl-home-newsletter-input-shell {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 3.65rem;
    padding: 0 1rem 0 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.fl-home-newsletter-input-shell:focus-within {
    border-color: rgba(249, 115, 22, 0.34);
    box-shadow: 0 0 0 0.24rem rgba(249, 115, 22, 0.1);
}

.fl-home-newsletter-input-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 241, 231, 0.95);
    color: #f97316;
    font-size: 0.95rem;
}

.fl-home-newsletter-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #142033;
    font-size: 1.02rem;
    padding: 0;
    outline: none;
}

.fl-home-newsletter-submit {
    min-height: 3.65rem;
    min-width: 9.75rem;
    border-radius: 999px;
}

.fl-home-newsletter-input::placeholder {
    color: #8a94a6;
}

.fl-newsletter-thankyou-modal {
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 223, 229, 0.42), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 219, 186, 0.36), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.98));
}

.fl-newsletter-thankyou-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 18px 34px rgba(34, 197, 94, 0.24);
}

.fl-newsletter-thankyou-title {
    color: #142033;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.fl-newsletter-thankyou-copy {
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    color: #5f6b80;
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .fl-home-showcase {
        padding: 0;
    }

    .fl-home-showcase-head {
        padding: 0;
    }

    .fl-home-showcase-item .product-image-wrap {
        min-height: 270px;
        padding: 0;
    }

    .fl-home-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        padding: 0.9rem;
    }

    .fl-home-newsletter-input-shell {
        min-height: 3.35rem;
        padding: 0 0.95rem;
    }

    .fl-home-newsletter-input {
        font-size: 0.98rem;
    }

    .fl-home-newsletter-form .btn {
        width: 100%;
    }

    .fl-home-newsletter-submit {
        min-height: 3.35rem;
    }

    .fl-newsletter-thankyou-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .fl-home-visual-col {
        display: none;
    }

    .fl-home-hero .container,
    .fl-home-product-section .container,
    .fl-home-reviews-section .container,
    .fl-home-newsletter-section .container,
    .fl-home-hero + section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-header .container.py-3.py-lg-4 {
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
    }

    .mobile-header {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 0.55rem;
    }

    .mobile-header-actions {
        gap: 0.28rem;
    }

    .header-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .header-action-pill,
    .header-account-btn {
        min-height: 40px;
        padding: 0.58rem 0.72rem;
        font-size: 0.82rem;
    }

    .storefront-brand-mobile {
        font-size: 1.08rem;
    }

    .storefront-brand-logo {
        height: 2.1rem;
        max-width: 8.5rem;
    }

    .fl-home-hero {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .fl-home-hero-shell {
        padding: 1.1rem 0.9rem 1rem;
        border-radius: 20px;
    }

    .fl-home-copy-col,
    .fl-home-visual-col {
        width: 100%;
    }

    .fl-home-copy-stack {
        gap: 0.7rem;
        align-items: center;
        text-align: center;
    }

    .fl-home-kicker {
        align-self: center;
        padding: 0.38rem 0.72rem;
        font-size: 0.61rem;
    }

    .fl-home-title {
        max-width: 11.5ch;
        font-size: clamp(1.65rem, 6.9vw, 2.12rem);
        line-height: 1.03;
        letter-spacing: -0.035em;
        margin-bottom: 0.45rem !important;
    }

    .fl-home-copy {
        max-width: 21rem;
        font-size: 0.88rem;
        line-height: 1.62;
        margin-bottom: 0.8rem !important;
    }

    .fl-home-actions {
        width: 100%;
        gap: 0.65rem !important;
    }

    .fl-home-actions .btn {
        width: 100%;
        min-height: 3rem;
        justify-content: center;
        font-size: 0.9rem;
    }

    .fl-trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.625rem;
        width: 100%;
        margin-top: 0.7rem !important;
    }

    .fl-trust-item {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.38rem;
        justify-content: center;
        min-height: 0;
        padding: 0.625rem 0.375rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    }

    .fl-trust-item strong,
    .fl-trust-item small {
        display: block;
    }

    .fl-trust-item strong {
        font-size: 0.72rem;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .fl-trust-item small {
        max-width: none;
        margin: 0.06rem auto 0;
        font-size: 0.64rem;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .fl-hero-visual {
        min-height: auto;
        padding-top: 0;
    }

    .fl-mockup-stack {
        min-height: auto;
        width: 100%;
    }

    .fl-section-head {
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 1rem !important;
    }

    .fl-section-title {
        font-size: 1.7rem;
        line-height: 1.08;
    }

    .fl-section-link {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .fl-mobile-slide-product,
    .fl-mobile-slide-category {
        width: auto;
    }

    .fl-home-product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin: 0;
    }

    .fl-home-product-grid.fl-mobile-slider {
        display: grid;
        overflow: visible;
        margin-inline: 0;
        padding: 0;
        gap: 1rem;
    }

    .fl-home-product-grid .fl-mobile-slide-item {
        width: auto;
        min-width: 0;
    }

    .fl-home-product-grid .storefront-grid-col {
        width: 100%;
    }

    .fl-home-product-grid .product-card,
    .fl-home-product-grid .fl-home-showcase-item .product-card {
        height: 100%;
    }

    .fl-home-product-grid .product-card-image,
    .fl-home-product-grid .fl-home-showcase-item .product-card-image {
        object-fit: cover;
    }

    .fl-home-showcase-item .product-card-body {
        padding: 12px 14px 15px;
    }

    .fl-home-showcase-item .product-title {
        font-size: 14px;
    }

    .fl-home-showcase-item .product-image-wrap {
        min-height: 235px;
    }

    .fl-category-card {
        min-height: 150px;
        padding: 1rem;
        border-radius: 20px;
    }

    .fl-category-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 16px;
    }

    .fl-category-name {
        font-size: 0.95rem;
    }

    .fl-feature-card {
        flex: 0 0 min(76vw, 240px);
        min-height: 100%;
    }

    .fl-home-reviews-subtitle {
        margin-top: 0.45rem;
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .fl-review-slider-actions {
        align-self: flex-start;
    }

    .fl-review-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .fl-home-cta {
        padding: 1.75rem 1rem;
        border-radius: 24px;
    }

    .fl-home-cta-title {
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .fl-home-cta-copy {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .fl-home-title {
        max-width: 10.8ch;
        font-size: 1.55rem;
        line-height: 1.04;
    }

    .fl-trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.625rem;
    }

    .fl-trust-item {
        min-height: 0;
        padding: 0.625rem 0.375rem;
    }

    .fl-trust-item strong {
        font-size: 0.69rem;
    }

    .fl-trust-item small {
        max-width: none;
        font-size: 0.62rem;
    }

    .fl-trust-icon {
        width: 2.125rem;
        height: 2.125rem;
    }

    .fl-mockup-card-1 {
        max-width: 212px;
    }

    .fl-mobile-slide-product,
    .fl-mobile-slide-category {
        width: auto;
    }

    .fl-home-product-grid {
        gap: 0.85rem;
    }

    .fl-home-newsletter-form {
        padding: 0.8rem;
    }

    .fl-home-newsletter-input-shell {
        min-height: 3.2rem;
    }

    .fl-home-newsletter-submit {
        min-height: 3.2rem;
        min-width: 0;
    }

    .fl-feature-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        overflow: visible;
        padding: 0;
    }

    .fl-feature-card {
        flex: none;
        min-height: 100%;
        padding: 0.55rem 0.2rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
    }
}

@media (max-width: 359.98px) {
    .fl-trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .fl-trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 0;
        gap: 0.35rem;
        padding: 0.625rem 0.3rem;
    }

    .fl-trust-item strong {
        font-size: 0.66rem;
    }

    .fl-trust-item small {
        margin: 0.04rem auto 0;
        font-size: 0.58rem;
    }

    .fl-trust-icon {
        width: 2rem;
        height: 2rem;
    }

    .fl-home-product-grid {
        grid-template-columns: 1fr;
    }

    .fl-feature-strip {
        grid-template-columns: 1fr;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d97706;
}

.hero-panel {
    position: relative;
    border-radius: 2rem;
    padding: 1.25rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.95));
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-tile {
    min-height: 150px;
    border-radius: 1.4rem;
    display: flex;
    align-items: end;
    padding: 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.hero-tile-warm {
    background: linear-gradient(160deg, #fde68a 0%, #fb923c 100%);
}

.hero-tile-soft {
    background: linear-gradient(160deg, #fbcfe8 0%, #a5b4fc 100%);
}

.hero-tile-dark {
    color: #fff;
    background: linear-gradient(160deg, #0f172a 0%, #334155 100%);
}

.hero-tile-light {
    background: linear-gradient(160deg, #d9f99d 0%, #67e8f9 100%);
}

.page-hero {
    background: rgba(255, 255, 255, 0.7);
}

.browse-toolbar-strip {
    padding: 1.35rem 0 0.55rem;
}

.catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.catalog-heading-title {
    margin: 0;
    color: var(--fluffimi-ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    font-weight: 900;
}

.catalog-heading-copy {
    max-width: 46rem;
    margin: 0.55rem 0 0;
    color: var(--fluffimi-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.catalog-heading-meta {
    flex: 0 0 auto;
    padding: 0.58rem 0.9rem;
    border: 1px solid rgba(238, 111, 143, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--fluffimi-ink);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.browse-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.browse-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.browse-sort-dropdown {
    position: relative;
}

.browse-sort-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    min-width: 176px;
    padding: 0.38rem 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: transparent;
    color: #172033;
    font-weight: 700;
    box-shadow: none;
}

.browse-sort-trigger:hover,
.browse-sort-trigger:focus,
.browse-sort-trigger.show {
    color: #172033;
    background: rgba(255, 245, 247, 0.6);
    border-color: rgba(238, 111, 143, 0.24);
    box-shadow: none;
}

.browse-sort-trigger::after {
    margin-left: 0.85rem;
}

.browse-sort-menu {
    min-width: 240px;
    margin-top: 0.65rem !important;
    padding: 0.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12) !important;
}

.browse-sort-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    color: #344054;
    font-weight: 600;
}

.browse-sort-item i {
    color: var(--fluffimi-rose-strong);
    font-size: 0.84rem;
}

.browse-sort-item:hover,
.browse-sort-item:focus {
    color: #172033;
    background: #fff5f7;
}

.browse-sort-item.is-active,
.browse-sort-item.is-active:hover {
    color: #172033;
    background: linear-gradient(135deg, #fff2f4 0%, #fff8f1 100%);
}

.browse-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 36px;
    padding: 0.38rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: transparent;
    color: #172033;
    font-weight: 800;
    box-shadow: none;
}

.browse-filter-toggle i {
    color: var(--fluffimi-rose-strong);
}

.browse-filter-toggle:hover,
.browse-filter-toggle:focus {
    color: #172033;
    transform: none;
    background: rgba(255, 245, 247, 0.6);
    box-shadow: none;
}

.browse-toolbar-categories {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 0.1rem 0.35rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.browse-toolbar-categories::-webkit-scrollbar {
    display: none;
}

.category-child-tabs {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.65rem;
    overflow-x: auto;
    padding: 0.05rem 0 0.15rem;
    scrollbar-width: none;
}

.category-child-tabs::-webkit-scrollbar {
    display: none;
}

.category-child-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    min-height: 2.1rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    background: #fff;
    color: #243047;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.category-child-tab:hover,
.category-child-tab.is-active {
    border-color: rgba(244, 114, 182, 0.36);
    background: rgba(255, 242, 246, 0.96);
    color: #e83e63;
}

.category-child-tab small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.32rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #243047;
    font-size: 0.7rem;
}

.browse-layout {
    position: relative;
}

.catalog-sidebar-shell {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.14s ease, transform 0.14s ease;
}

.catalog-sidebar-shell.is-open {
    opacity: 1;
    transform: translateX(0);
}

.catalog-filter-panel {
    width: 100%;
}

.catalog-results-shell {
    transition: none;
}

.catalog-filter-card {
    position: sticky;
    top: 12rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 234, 238, 0.56), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 245, 0.96));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.catalog-filter-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.catalog-filter-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #172033;
}

.catalog-filter-form {
    display: grid;
    gap: 1rem;
}

.catalog-filter-group .form-label,
.catalog-filter-form .form-label {
    margin-bottom: 0.45rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #344054;
}

.catalog-filter-form .form-select,
.catalog-filter-form .form-control {
    min-height: 46px;
    border-radius: 14px;
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
}

.catalog-filter-form .form-select:focus,
.catalog-filter-form .form-control:focus {
    border-color: rgba(238, 111, 143, 0.45);
    box-shadow: 0 0 0 0.22rem rgba(238, 111, 143, 0.12);
}

.price-range-card {
    display: grid;
    gap: 0.75rem;
    padding: 0.8rem 0.8rem 0.9rem;
    border: 1px solid rgba(244, 114, 182, 0.12);
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(255, 235, 240, 0.5), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.96));
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.045);
}

.price-range-values {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem;
}

.price-range-value-box {
    display: grid;
    gap: 0.12rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.price-range-value-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #667085;
}

.price-range-value-box strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #172033;
    line-height: 1;
}

.price-range-separator {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(251, 113, 133, 0.18), rgba(255, 155, 113, 0.28));
}

.price-range-slider-wrap {
    position: relative;
    height: 24px;
    padding-inline: 0.1rem;
}

.price-range-track,
.price-range-progress {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 6px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.price-range-track {
    background: rgba(226, 232, 240, 0.9);
}

.price-range-progress {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    box-shadow: 0 6px 12px rgba(251, 113, 133, 0.18);
}

.price-range-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.price-range-input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.price-range-input::-moz-range-track {
    height: 6px;
    background: transparent;
}

.price-range-input::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 10px 18px rgba(251, 113, 133, 0.28);
    cursor: pointer;
    margin-top: -5px;
}

.price-range-input::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 10px 18px rgba(251, 113, 133, 0.28);
    cursor: pointer;
}

.catalog-filter-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    padding-top: 0.15rem;
}

.catalog-filter-actions .btn {
    min-height: 46px;
    padding-inline: 1rem;
    border-radius: 14px;
    font-weight: 800;
}

.catalog-filter-link a {
    color: #172033;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.browse-quick-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0.3rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: transparent;
    color: #172033;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: none;
}

.browse-quick-chip:hover,
.browse-quick-chip:focus {
    color: var(--fluffimi-rose-strong);
    background: rgba(255, 245, 247, 0.6);
}

.storefront-grid-col {
    width: 100%;
}

@media (min-width: 1200px) {
    .storefront-grid-col-3 {
        width: 33.333333%;
    }

    .storefront-grid-col-4 {
        width: 25%;
    }

    .storefront-grid-col-5 {
        width: 20%;
    }

    .storefront-grid-col-6 {
        width: 16.666667%;
    }
}

.category-promo,
.product-card {
    border-radius: 1.4rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-promo {
    position: relative;
    min-height: 18rem;
    background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
    border: 1px solid rgba(255, 210, 218, 0.55);
}

.category-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.48), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 52%);
    pointer-events: none;
}

.category-promo-body {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.2rem;
}

.category-promo .category-promo-body h2 {
    color: #1f2937;
}

.category-promo .category-promo-body p {
    color: #4b5563;
}

.category-promo .category-promo-body .small {
    margin-top: auto;
    color: #111827;
}

.category-promo:nth-child(6n + 1) {
    background: linear-gradient(135deg, #fff0f3 0%, #fffaf4 100%);
}

.category-promo:nth-child(6n + 2) {
    background: linear-gradient(135deg, #eef9ff 0%, #f8fdff 100%);
}

.category-promo:nth-child(6n + 3) {
    background: linear-gradient(135deg, #f7f4ff 0%, #fffaff 100%);
}

.category-promo:nth-child(6n + 4) {
    background: linear-gradient(135deg, #f1fff6 0%, #fbfffd 100%);
}

.category-promo:nth-child(6n + 5) {
    background: linear-gradient(135deg, #fff8ec 0%, #fffdf8 100%);
}

.category-promo:nth-child(6n + 6) {
    background: linear-gradient(135deg, #f3f7ff 0%, #fbfcff 100%);
}

.category-promo:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.08) !important;
}

.category-promo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    font-weight: 700;
    color: #9a3412;
}

.category-promo:nth-child(6n + 1) .category-promo-icon {
    background: linear-gradient(135deg, #ffe0e8 0%, #ffd6b0 100%);
}

.category-promo:nth-child(6n + 2) .category-promo-icon {
    background: linear-gradient(135deg, #dff2ff 0%, #cde7ff 100%);
}

.category-promo:nth-child(6n + 3) .category-promo-icon {
    background: linear-gradient(135deg, #ece2ff 0%, #ddd0ff 100%);
}

.category-promo:nth-child(6n + 4) .category-promo-icon {
    background: linear-gradient(135deg, #daf8e6 0%, #c9f3d9 100%);
}

.category-promo:nth-child(6n + 5) .category-promo-icon {
    background: linear-gradient(135deg, #ffefcf 0%, #ffe2ad 100%);
}

.category-promo:nth-child(6n + 6) .category-promo-icon {
    background: linear-gradient(135deg, #dde8ff 0%, #cfddff 100%);
}

.product-card-media,
.product-gallery-frame {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 100%);
    overflow: hidden;
}

.blog-post-featured-frame {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    text-align: center;
}

.blog-post-featured-frame .blog-post-featured-image {
    display: block;
    width: 100%;
    max-height: min(82vh, 920px);
    object-fit: contain;
    background: #fff;
}

.fl-product-shell {
    border: 1px solid rgba(251, 191, 183, 0.28);
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top left, rgba(255, 227, 234, 0.56), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 240, 226, 0.72), transparent 22%),
        #fffdfb;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
    padding: clamp(0.95rem, 1.45vw, 1.4rem);
}

.fl-product-gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.fl-product-thumbs {
    display: grid;
    gap: 0.7rem;
}

.fl-product-thumb {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1rem;
    background: #fff;
    padding: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fl-product-thumb:hover,
.fl-product-thumb.is-active {
    border-color: #fb7185;
    box-shadow: 0 0 0 0.18rem rgba(251, 113, 133, 0.14);
    transform: translateY(-1px);
}

.fl-product-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #fff8fb 0%, #f7fbff 100%);
}

.fl-product-stage {
    position: relative;
}

.fl-product-stage-head {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.fl-product-stage-count,
.fl-product-stage-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #172033;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.fl-product-stage-chip {
    color: #d9486d;
}

.fl-product-stage-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1.3rem;
    background:
        radial-gradient(circle at top left, rgba(255, 231, 236, 0.6), transparent 28%),
        linear-gradient(180deg, #fff7f8 0%, #fff4ec 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.86),
        0 18px 38px rgba(15, 23, 42, 0.08);
}

.fl-product-stage-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.fl-product-stage-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fl-product-stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    padding: 0;
    transition: transform 0.28s ease;
}

@media (hover: hover) {
    .fl-product-stage-frame:hover .fl-product-stage-image {
        transform: scale(1.08);
    }
}

.fl-product-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    color: #172033;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-50%);
}

.fl-product-gallery-prev {
    left: 1rem;
}

.fl-product-gallery-next {
    right: 1rem;
}

.fl-product-info {
    display: grid;
    gap: 0.85rem;
}

.fl-product-badges {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.fl-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.32rem 0.78rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-product-badge-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #facc15 100%);
    color: #111827;
}

.fl-product-badge-new {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
}

.fl-product-badge-sale {
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
}

.fl-product-info .fl-product-title {
    margin: 0;
    color: #172033;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    max-width: 100%;
}

.fl-product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.fl-product-rating-copy {
    color: #5f6c82;
    font-size: 0.95rem;
}

.fl-product-summary {
    margin: 0;
    color: #5f6c82;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 34rem;
}

.fl-product-feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.fl-product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.82rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
    color: #172033;
    font-size: 0.92rem;
    font-weight: 600;
}

.fl-product-feature-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0f4 0%, #fff5e9 100%);
    color: #e25d86;
    font-size: 0.95rem;
    flex: 0 0 auto;
}

.fl-product-price-card {
    border-radius: 1.55rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.07);
    display: grid;
    gap: 0.9rem;
}

.fl-product-price-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.fl-product-price-label {
    color: #8a96aa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-product-price-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fl-product-price-main {
    color: #172033;
    font-size: clamp(2rem, 2vw, 2.4rem);
    line-height: 1;
    font-weight: 800;
}

.fl-product-price-old {
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: line-through;
}

.fl-product-price-discount,
.fl-product-price-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fl-product-price-discount {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
}

.fl-product-price-category {
    background: #fff6e8;
    color: #b45309;
}

.fl-product-cta-row {
    display: flex;
    gap: 0.85rem;
    align-items: stretch;
}

.fl-product-icon-cart-form {
    margin: 0;
    flex: 0 0 auto;
}

.fl-product-cart-form {
    display: flex;
    gap: 0.85rem;
    flex: 1 1 auto;
    margin: 0;
}

.fl-product-quantity {
    width: 88px;
    min-height: 48px;
    border-radius: 999px;
    text-align: center;
    border-color: rgba(203, 213, 225, 0.95);
    box-shadow: none;
}

.fl-product-primary-btn,
.fl-product-secondary-btn {
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-weight: 700;
    text-decoration: none;
}

.fl-product-primary-btn {
    flex: 1 1 auto;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(251, 113, 133, 0.22);
}

.fl-product-primary-btn:hover {
    color: #fff;
}

.fl-product-secondary-btn {
    width: 48px;
    min-width: 48px;
    background: #fff;
    color: #172033;
    box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.9);
}

.fl-product-trust-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #5f6c82;
    font-size: 0.92rem;
}

.fl-product-trust-note span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.fl-product-seller-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.05);
}

.fl-product-seller-label {
    color: #8a96aa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-product-seller-name {
    color: #172033;
    font-size: 1.05rem;
    font-weight: 700;
}

.fl-product-seller-meta {
    color: #5f6c82;
    font-size: 0.92rem;
}

.fl-product-seller-link {
    min-height: 42px;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    color: #172033;
    text-decoration: none;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.92);
}

.fl-product-meta-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.fl-product-meta-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.05);
}

.fl-product-meta-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0f4 0%, #fff5e7 100%);
    color: #e25d86;
    font-size: 1rem;
    flex: 0 0 auto;
}

.fl-product-meta-label {
    color: #8a96aa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-product-meta-value {
    color: #172033;
    font-weight: 700;
}

.fl-product-tabs-card {
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.fl-product-tabs-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.2rem 1.2rem 0;
}

.fl-product-tab {
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.96);
    color: #172033;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.92);
}

.fl-product-tab.is-active {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(251, 113, 133, 0.18);
}

.fl-product-tab-panels {
    padding: 1.25rem;
}

.fl-product-tab-panel {
    display: none;
}

.fl-product-tab-panel.is-active {
    display: block;
}

.fl-product-list-card {
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.05);
    padding: 1.35rem;
}

.fl-product-detail-list {
    display: grid;
    gap: 0.85rem;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 1.2rem;
}

.fl-product-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 245, 248, 0.95);
    color: #c2416c;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-media-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.45rem;
}

@media (max-width: 1199.98px) {
    .fl-product-shell {
        padding: 1.25rem;
    }

    .fl-product-info .fl-product-title {
        font-size: 17px;
    }

    .fl-product-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .fl-product-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .fl-product-thumbs {
        order: 2;
        grid-auto-flow: column;
        grid-auto-columns: 70px;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .fl-product-thumbs::-webkit-scrollbar {
        height: 6px;
    }

    .fl-product-thumbs::-webkit-scrollbar-thumb {
        background: rgba(251, 113, 133, 0.28);
        border-radius: 999px;
    }

    .fl-product-stage {
        order: 1;
    }

    .fl-product-info .fl-product-title {
        font-size: 16px;
    }

    .fl-product-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .fl-product-shell {
        padding: 0.9rem;
        border-radius: 1.35rem;
    }

    .fl-product-info .fl-product-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .fl-product-stage-head {
        top: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
    }

    .fl-product-gallery-nav {
        width: 40px;
        height: 40px;
    }

    .fl-product-gallery-prev {
        left: 0.8rem;
    }

    .fl-product-gallery-next {
        right: 0.8rem;
    }

    .fl-product-feature-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .fl-product-cta-row,
    .fl-product-cart-form,
    .fl-product-seller-box,
    .fl-product-price-top {
        flex-direction: column;
        align-items: stretch;
    }

    .fl-product-secondary-btn,
    .fl-product-quantity {
        width: 100%;
    }

    .fl-product-meta-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fl-product-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .fl-product-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .fl-product-tab {
        white-space: nowrap;
    }
}

.pdp-page {
    background:
        radial-gradient(circle at top left, rgba(251, 113, 133, 0.06), transparent 24%),
        radial-gradient(circle at top right, rgba(253, 186, 116, 0.06), transparent 20%),
        #fff;
}

.pdp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.pdp-gallery-column {
    display: grid;
    gap: 28px;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.pdp-info-column {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

.pdp-gallery {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.pdp-thumbs {
    display: grid;
    gap: 12px;
}

.pdp-thumb {
    width: 72px;
    height: 72px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 6px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pdp-thumb.is-active {
    border-color: #fb7185;
    box-shadow: 0 12px 24px rgba(251, 113, 133, 0.16);
}

.pdp-thumb-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.pdp-stage {
    position: relative;
}

.pdp-stage-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(255, 221, 229, 0.5), transparent 24%),
        radial-gradient(circle at bottom right, rgba(191, 219, 254, 0.45), transparent 22%),
        linear-gradient(180deg, #fff9f7 0%, #fff 100%);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.pdp-stage-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.pdp-stage-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.pdp-stage-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
}

.pdp-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    color: #111827;
    transform: translateY(-50%);
}

.pdp-gallery-prev {
    left: 14px;
}

.pdp-gallery-next {
    right: 14px;
}

.pdp-stage-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 2;
}

.pdp-stage-counter,
.pdp-stage-chip {
    min-height: 32px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    color: #111827;
}

.pdp-info-stack {
    display: grid;
    gap: 18px;
}

.pdp-seller-row,
.pdp-option-card,
.pdp-accordion,
.pdp-review-summary-card,
.pdp-review-card,
.pdp-review-form-card,
.pdp-content-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.pdp-seller-row {
    padding: 16px 18px;
}

.pdp-urgency-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(251, 113, 133, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(255, 247, 237, 0.94));
    box-shadow: 0 18px 36px rgba(251, 113, 133, 0.1);
}

.pdp-urgency-copy {
    display: grid;
    gap: 4px;
}

.pdp-urgency-label {
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ea580c;
}

.pdp-urgency-meta {
    color: #111827;
    font-size: 0.96rem;
    font-weight: 700;
}

.pdp-urgency-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-urgency-timebox {
    min-width: 52px;
    padding: 8px 10px 7px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pdp-urgency-timevalue {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.pdp-urgency-timelabel {
    display: block;
    margin-top: 5px;
    font-size: 0.64rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.78);
}

.pdp-urgency-separator {
    color: #6d4c3d;
    font-size: 1.05rem;
    font-weight: 800;
}

.pdp-urgency-row.is-ended .pdp-urgency-timer {
    opacity: 0.84;
}

.pdp-urgency-row.is-ended .pdp-urgency-timebox {
    background: #7b8794;
}

.pdp-urgency-row.is-ended .pdp-urgency-separator {
    color: #7b8794;
}

.admin-product-dropdown {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

.admin-product-dropdown[open] {
    box-shadow: none;
}

.admin-product-dropdown.is-invalid {
    color: inherit;
}

.admin-product-dropdown-toggle {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 0 14px 0 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    background: #fff;
    border: 1px solid #d8e1ee;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.admin-product-dropdown-toggle::-webkit-details-marker {
    display: none;
}

.admin-product-dropdown-value {
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.admin-product-dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #6b7280;
}

.admin-product-dropdown-icon i {
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.admin-product-dropdown[open] .admin-product-dropdown-icon i {
    transform: rotate(180deg);
}

.admin-product-dropdown-menu {
    margin-top: 12px;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    padding: 14px;
}

.admin-product-dropdown-toolbar {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.admin-product-dropdown.is-invalid .admin-product-dropdown-toggle {
    border-color: #dc3545;
}

.admin-product-dropdown[open] .admin-product-dropdown-toggle {
    border-color: #cfd8e3;
    box-shadow: 0 0 0 0.18rem rgba(59, 130, 246, 0.08);
}

.admin-product-dropdown-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 2px 0;
    font-weight: 600;
    color: #334155;
}

.admin-product-dropdown-search {
    min-height: 42px;
    border-radius: 12px;
    border-color: #dbe3ef;
}

.admin-product-dropdown-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-product-dropdown-selected-copy {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
}

.admin-product-dropdown-clear {
    padding: 0;
    border: 0;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.admin-product-dropdown-options {
    display: grid;
    gap: 2px;
    max-height: 320px;
    overflow-y: auto;
    padding: 4px 2px 4px 0;
}

.admin-product-dropdown-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.admin-product-dropdown-option .form-check-input {
    margin-top: 0.18rem;
    flex: 0 0 auto;
}

.admin-product-dropdown-option .form-check-label {
    color: #111827;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-product-dropdown-option:hover {
    background: #f8fbff;
    box-shadow: inset 0 0 0 1px #e2e8f0;
}

.admin-product-dropdown-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.admin-product-dropdown-done {
    min-width: 110px;
    border-radius: 999px;
}

.pdp-seller-name {
    font-size: 0.98rem;
    font-weight: 800;
    color: #111827;
}

.pdp-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.45rem;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 800;
}

.pdp-seller-meta {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.9rem;
}

.pdp-title {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.pdp-stars {
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #e5e7eb;
}

.pdp-stars-base,
.pdp-stars-fill {
    font-size: 0.95rem;
}

.pdp-stars-fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f59e0b;
}

.pdp-stars-large .pdp-stars-base,
.pdp-stars-large .pdp-stars-fill {
    font-size: 1.15rem;
}

.pdp-rating-text,
.pdp-benefit-line,
.pdp-review-summary-copy,
.pdp-review-date,
.pdp-review-form-card p,
.pdp-section-head p {
    color: #64748b;
    font-size: 0.92rem;
}

.pdp-price-block {
    display: grid;
    gap: 8px;
}

.pdp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pdp-price-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.pdp-price-main {
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 800;
    color: #111827;
}

.pdp-price-old {
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: line-through;
}

.pdp-discount-badge {
    min-height: 30px;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    background: #fff1f4;
    color: #e11d48;
    font-size: 0.78rem;
    font-weight: 800;
}

.pdp-option-card {
    padding: 18px;
}

.pdp-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.pdp-option-item {
    display: grid;
    gap: 3px;
}

.pdp-option-label {
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pdp-option-item strong {
    color: #111827;
    font-size: 0.95rem;
}

.pdp-quantity-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.pdp-quantity-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
}

.pdp-quantity-input {
    min-width: 66px;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid #dbe5f1;
    background: #fff;
    font-weight: 800;
    text-align: center;
    color: #111827;
    box-shadow: none;
}

.pdp-quantity-input:focus {
    border-color: #fb7185;
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
    outline: none;
}

.pdp-cta-stack {
    display: grid;
    gap: 10px;
}

.pdp-inline-description {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
    padding: 16px 18px;
}

.pdp-inline-description-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.pdp-inline-description-head h2 {
    margin: 0;
    color: inherit;
    font: inherit;
}

.pdp-inline-description-head h3 {
    margin: 0;
    color: inherit;
    font: inherit;
}

.pdp-inline-accordion {
    padding: 0;
    overflow: hidden;
}

.pdp-inline-accordion > .pdp-inline-description-head {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
}

.pdp-inline-accordion > .pdp-inline-description-head::-webkit-details-marker {
    display: none;
}

.pdp-inline-accordion > .pdp-inline-description-head::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.92rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.pdp-inline-accordion[open] > .pdp-inline-description-head::after {
    transform: rotate(180deg);
}

.pdp-inline-description-copy {
    margin-top: 12px;
    color: #4b5563;
    line-height: 1.75;
    display: block;
}

.pdp-inline-description-copy p {
    margin: 0 0 0.9rem;
}

.pdp-inline-description-copy p:last-child {
    margin-bottom: 0;
}

.pdp-inline-description[data-pdp-description]:not(.is-expanded) .pdp-inline-description-copy {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdp-inline-accordion > .pdp-inline-description-copy {
    display: none;
    margin-top: 0;
    padding: 0 18px 16px;
}

.pdp-inline-accordion[open] > .pdp-inline-description-copy {
    display: block;
}

.pdp-inline-description-toggle {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.pdp-inline-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 10px;
}

.pdp-inline-list li {
    color: #4b5563;
}

.pdp-faq-stack {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.pdp-faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fffaf8;
}

.pdp-faq-item > .pdp-inline-description-head {
    padding: 12px 14px;
    font-size: 0.94rem;
}

.pdp-faq-item > .pdp-inline-description-copy {
    padding: 0 14px 14px;
    font-size: 0.92rem;
}

.pdp-action-form,
.pdp-sticky-form {
    margin: 0;
}

.pdp-primary-btn,
.pdp-secondary-btn {
    min-height: 48px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pdp-primary-btn {
    background: #111827;
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
}

.pdp-primary-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.pdp-primary-btn-secondary-surface {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    box-shadow: 0 16px 28px rgba(251, 113, 133, 0.22);
}

.pdp-secondary-btn {
    border: 1px solid #dbe5f1;
    background: #fff;
    color: #111827;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.pdp-secondary-btn:hover {
    color: #111827;
    transform: translateY(-1px);
}

.pdp-secondary-btn-dark {
    background: #111827;
    color: #fff;
}

.pdp-secondary-btn-dark:hover {
    color: #fff;
}

.pdp-trust-list {
    display: grid;
    gap: 10px;
    color: #475467;
    font-size: 0.92rem;
}

.pdp-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pdp-side-accordions {
    display: grid;
    gap: 12px;
}

.pdp-accordion {
    padding: 14px 16px;
}

.pdp-accordion summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 800;
    color: #111827;
}

.pdp-accordion summary::-webkit-details-marker {
    display: none;
}

.pdp-accordion p,
.pdp-accordion-list {
    margin: 12px 0 0;
    color: #4b5563;
    line-height: 1.65;
}

.pdp-accordion-list {
    padding-left: 1.15rem;
}

.pdp-content-stack {
    display: grid;
    gap: 22px;
    margin-top: 36px;
}

.pdp-content-card {
    padding: 24px;
}

.pdp-content-card-flat {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pdp-gallery-reviews {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pdp-section-head {
    margin-bottom: 14px;
}

.pdp-section-head h2 {
    margin: 0 0 6px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #111827;
}

.pdp-description-copy {
    color: #475467;
    line-height: 1.8;
}

.pdp-answer-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pdp-answer-card {
    padding: 16px;
    border-radius: 16px;
    background: #fcfdff;
    border: 1px solid #e8edf4;
}

.pdp-answer-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.pdp-answer-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.pdp-bullet-list,
.pdp-steps-list {
    display: grid;
    gap: 12px;
    color: #4b5563;
    line-height: 1.75;
    padding-left: 1.2rem;
}

.pdp-reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 22px;
}

.pdp-gallery-reviews .pdp-reviews-grid {
    grid-template-columns: minmax(0, 1fr);
}

.pdp-reviews-list,
.pdp-review-card-list {
    display: grid;
    gap: 16px;
}

.pdp-review-summary-card,
.pdp-review-form-card,
.pdp-review-card {
    padding: 18px;
}

.pdp-review-summary-score {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.pdp-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 10px;
}

.pdp-review-author,
.pdp-review-form-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.pdp-review-copy,
.pdp-empty-review,
.pdp-review-note {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.pdp-view-all-reviews-btn {
    justify-self: center;
    padding: 0 22px;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid #d9e2ef;
    background: #fff;
    color: #111827;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pdp-view-all-reviews-btn:hover {
    transform: translateY(-1px);
    border-color: #c9d6e7;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.pdp-reviews-modal-open {
    overflow: hidden;
}

.pdp-reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.pdp-reviews-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}

.pdp-reviews-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(880px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
}

.pdp-reviews-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #edf2f7;
}

.pdp-reviews-modal-head h2 {
    margin: 0 0 6px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #111827;
}

.pdp-reviews-modal-head p {
    margin: 0;
    color: #64748b;
}

.pdp-reviews-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
}

.pdp-reviews-modal-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid #edf2f7;
}

.pdp-reviews-sort-label {
    color: #475467;
    font-weight: 700;
}

.pdp-reviews-sort-select {
    min-width: 180px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid #dbe3ef;
    background: #fff;
    padding: 0 14px;
    color: #111827;
}

.pdp-reviews-modal-list {
    display: grid;
    gap: 16px;
    padding: 20px 24px 24px;
    overflow-y: auto;
}

.pdp-review-form {
    display: grid;
    gap: 14px;
}

.pdp-form-field {
    display: grid;
    gap: 6px;
}

.pdp-related-section {
    display: grid;
    gap: 18px;
}

.pdp-sticky-buybar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1050;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
}

.pdp-sticky-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.pdp-sticky-form {
    flex: 1 1 auto;
}

.pdp-sticky-actions {
    display: flex;
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
}

.pdp-sticky-actions .pdp-primary-btn {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .pdp-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .pdp-gallery-column,
    .pdp-info-column,
    .pdp-gallery-reviews {
        grid-column: auto;
        grid-row: auto;
    }

    .pdp-answer-grid,
    .pdp-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .pdp-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .pdp-urgency-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdp-thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .pdp-answer-grid,
    .pdp-reviews-grid,
    .pdp-option-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pdp-reviews-modal-dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        border-radius: 20px;
    }

    .pdp-reviews-modal-head,
    .pdp-reviews-modal-toolbar,
    .pdp-reviews-modal-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pdp-reviews-modal-toolbar {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .pdp-reviews-sort-select {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .pdp-page {
        padding-bottom: 88px;
    }

    .pdp-hero {
        gap: 22px;
    }

    .pdp-gallery-column {
        gap: 14px;
    }

    .pdp-title {
        font-size: 1.25rem;
    }

    .pdp-price-row {
        align-items: flex-start;
    }

    .pdp-quantity-row {
        width: 100%;
        justify-content: space-between;
    }

    .pdp-content-card {
        padding: 18px;
    }

    .pdp-gallery-nav {
        width: 38px;
        height: 38px;
    }

    .pdp-stage-image {
        padding: 12px;
    }

    .pdp-gallery-reviews {
        margin-top: 0;
    }

    .pdp-sticky-buybar {
        display: flex;
    }
}

.marketplace-product-card {
    position: relative;
    border-radius: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.marketplace-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.65rem 3.2rem rgba(15, 23, 42, 0.1) !important;
}

.marketplace-card-link {
    display: block;
    color: inherit;
}

.marketplace-product-media {
    position: relative;
    aspect-ratio: 1 / 1.12;
    padding: 1rem 1rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 221, 229, 0.55), transparent 28%),
        radial-gradient(circle at top right, rgba(191, 219, 254, 0.55), transparent 26%),
        linear-gradient(180deg, #fffaf7 0%, #f8fafc 100%);
}

.marketplace-image-frame {
    height: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.98)),
        linear-gradient(135deg, #fff4f6 0%, #eef6ff 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.88),
        0 16px 28px rgba(15, 23, 42, 0.08);
    position: relative;
}

.marketplace-image-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 32%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.12));
    pointer-events: none;
}

.marketplace-card-badges,
.marketplace-media-footer {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.marketplace-card-badges {
    top: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
}

.marketplace-media-footer {
    bottom: 1.05rem;
    left: 1.2rem;
    right: 1.2rem;
}

.marketplace-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

.marketplace-chip-top {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marketplace-chip-light {
    background: rgba(255, 255, 255, 0.97);
    color: #172033 !important;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.marketplace-chip-sale {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff !important;
}

.marketplace-chip-free {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
}

.marketplace-chip-dark {
    max-width: calc(100% - 7rem);
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(15, 23, 42, 0.84);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.marketplace-chip-ghost {
    background: rgba(255, 255, 255, 0.92);
    color: #d9486d !important;
}

.marketplace-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
}

.marketplace-product-body {
    gap: 0.72rem;
    padding-top: 1rem !important;
}

.marketplace-meta-top,
.marketplace-rating-row,
.marketplace-price-line,
.marketplace-product-footer {
    display: flex;
    align-items: center;
}

.marketplace-meta-top,
.marketplace-rating-row,
.marketplace-product-footer {
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.marketplace-type-label,
.marketplace-download-label,
.marketplace-rating-copy,
.marketplace-price-sub {
    font-size: 0.79rem;
}

.marketplace-type-label {
    color: #a13b66;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marketplace-download-label,
.marketplace-rating-copy,
.marketplace-price-sub {
    color: #6b7280;
}

.marketplace-product-title {
    font-size: 1.12rem;
    line-height: 1.38;
    letter-spacing: -0.02em;
    margin: 0;
}

.stretched-link-title {
    color: #142033 !important;
    transition: color 0.2s ease;
    display: block;
    font-weight: 800;
}

.marketplace-product-card:hover .stretched-link-title {
    color: #d9486d;
}

.marketplace-summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.6;
    font-size: 0.9rem;
}

.marketplace-stars {
    color: #b7791f;
    font-size: 0.86rem;
    font-weight: 800;
}

.marketplace-price-block {
    min-width: 0;
}

.marketplace-price-line {
    gap: 0.45rem;
    flex-wrap: wrap;
}

.marketplace-price-current {
    color: #111827;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.marketplace-price-old {
    color: #9ca3af;
    font-size: 0.92rem;
    text-decoration: line-through;
}

.marketplace-action-block {
    margin-left: auto;
    width: 100%;
}

.marketplace-action-block form {
    width: 100%;
}

.marketplace-cta-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 0.78rem 1.05rem;
    box-shadow: 0 16px 28px rgba(251, 113, 133, 0.24);
}

.marketplace-cta-btn:hover,
.marketplace-cta-btn:focus {
    color: #fff;
    background: linear-gradient(135deg, #e85d75 0%, #f78a5c 100%);
}

@media (max-width: 575.98px) {
    .marketplace-product-media {
        aspect-ratio: 1 / 1.06;
        padding: 0.8rem 0.8rem 0;
    }

    .marketplace-card-badges {
        top: 0.95rem;
        left: 0.95rem;
        right: 0.95rem;
    }

    .marketplace-media-footer {
        left: 0.95rem;
        right: 0.95rem;
    }

    .marketplace-chip {
        padding: 0.34rem 0.62rem;
        font-size: 0.66rem;
    }

    .marketplace-product-title {
        font-size: 1.02rem;
    }

    .marketplace-price-current {
        font-size: 1.16rem;
    }

    .marketplace-action-block,
    .marketplace-action-block form {
        width: 100%;
    }

    .marketplace-cta-btn {
        width: 100%;
    }
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    color: #9ca3af;
    font-weight: 600;
    background:
        linear-gradient(135deg, rgba(253, 230, 138, 0.35), rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 12px, rgba(251, 146, 60, 0.08) 12px, rgba(251, 146, 60, 0.08) 24px);
}

.product-card {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #f3dfe7;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    contain: layout;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1) !important;
}

.product-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    inline-size: 100%;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    min-height: 0;
}

.product-gallery-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
    display: block;
    border-radius: 0;
    background: #fffaf8;
    box-shadow: none;
}

.product-card img,
.pdp-gallery img,
.cart-thumb img,
.account-order-item-thumb img,
.fl-success-download-preview,
.product-gallery-frame img,
.fl-mockup-media img,
.blog-featured-image,
.blog-post-featured-image {
    max-width: 100%;
}

.product-image-wrap-gallery .product-card-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
    transform: translateX(10px);
    pointer-events: none;
}

.product-image-wrap-gallery .product-card-image.is-active {
    opacity: 1;
    transform: translateX(0);
}

.product-image-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 8%;
    background: transparent;
    pointer-events: none;
}

.product-badge-group {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.product-badge-group-top-start {
    top: 0.95rem;
    left: 0.95rem;
}

.product-badge-group-bottom-start {
    left: 0.95rem;
    bottom: 0.95rem;
    max-width: calc(100% - 8rem);
}

.product-badge-group-bottom-end {
    right: 0.95rem;
    bottom: 0.95rem;
}

.product-badge,
.product-category-pill,
.product-digital-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 26px;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-badge {
    background: rgba(255, 255, 255, 0.97);
    color: #172033;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}

.product-badge-sale {
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
}

.product-category-pill {
    max-width: 68%;
    background: #444854;
    color: #fff;
}

.product-digital-pill {
    background: #fff4f7;
    color: #d9486d;
    border: 1px solid rgba(244, 114, 182, 0.12);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 7px;
    min-height: 116px;
    padding: 12px 16px 12px;
    background: #fff;
}

.product-card-pills {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.product-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    line-height: 1.3;
    min-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-title a {
    color: #142033;
    text-decoration: none;
    font-weight: 500;
}

.product-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.product-subtitle i {
    color: #f97316;
    font-size: 11px;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 1rem;
    flex-wrap: wrap;
}

.product-rating-group {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.product-rating-stars {
    position: relative;
    display: inline-block;
    color: #d1d5db;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.product-rating-stars-base,
.product-rating-stars-fill {
    display: block;
    white-space: nowrap;
}

.product-rating-stars-base {
    color: #d1d5db;
}

.product-rating-stars-fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    color: #f59e0b;
}

.product-rating-copy {
    color: #667085;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-sales-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #344054;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

.product-sales-copy i {
    color: #f55772;
    font-size: 11px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 1.8rem;
    flex-wrap: wrap;
}

.products-grid > *,
.product-scroll-grid > * {
    min-width: 0;
}

.related-category-links {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(244, 203, 210, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.category-below-content-block {
    margin-top: 2rem;
    padding: 1.35rem;
    border: 1px solid rgba(244, 203, 210, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
}

.category-below-content {
    max-width: 100%;
    color: #243047;
    font-size: 0.98rem;
    line-height: 1.65;
}

.category-below-content h2,
.category-below-content h3,
.category-below-content h4 {
    margin: 0 0 0.75rem;
    color: #142033;
    font-weight: 800;
    line-height: 1.25;
}

.category-below-content h2 {
    font-size: 1.25rem;
}

.category-below-content h3 {
    font-size: 1.12rem;
}

.category-below-content p,
.category-below-content ul,
.category-below-content ol,
.category-below-content blockquote {
    margin: 0 0 0.85rem;
}

.category-below-content a {
    color: #e83e63;
    font-weight: 700;
}

.category-below-content > :last-child {
    margin-bottom: 0;
}

.related-category-links-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.related-category-links-head h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #142033;
}

.related-category-links-head p {
    max-width: 34rem;
    margin: 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.45;
}

.related-category-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.related-category-link {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: #fff;
    color: #142033;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.related-category-link:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 114, 182, 0.32);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    color: #142033;
}

.related-category-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.related-category-link small {
    color: #667085;
    font-weight: 700;
}

@media (max-width: 991px) {
    .related-category-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .related-category-links {
        margin-top: 1.25rem;
        padding: 1rem;
        border-radius: 18px;
    }

    .related-category-links-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }
}

.product-price-values {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.product-price-main {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.product-price-sale {
    color: #e85d1f;
}

.product-price-old {
    color: #98a2b3;
    font-size: 0.92rem;
    text-decoration: line-through;
}

.product-discount-copy {
    color: #16a34a;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
    padding-top: 2px;
}

.product-action-form {
    margin: 0;
}

.product-main-action-form {
    margin: 0;
    display: flex;
    flex: 1 1 auto;
}

.product-icon-btn,
.product-main-btn {
    min-height: 42px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.product-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    color: #172033;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.product-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    border: 0;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    padding: 0.65rem 1rem;
    box-shadow: 0 14px 24px rgba(251, 113, 133, 0.22);
}

.product-main-btn:hover,
.product-main-btn:focus,
.product-icon-btn:hover,
.product-icon-btn:focus {
    color: inherit;
}

.product-main-btn:hover,
.product-main-btn:focus {
    color: #fff;
    background: linear-gradient(135deg, #e85d75 0%, #f78a5c 100%);
}

@media (max-width: 575.98px) {
    .browse-toolbar-strip {
        padding: 0.65rem 0 0.25rem;
    }

    .browse-toolbar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .browse-toolbar-actions {
        width: 100%;
        justify-content: stretch;
    }

    .browse-toolbar-categories {
        order: 3;
        margin-inline: -0.25rem;
        padding-inline: 0.25rem;
    }

    .browse-sort-dropdown {
        width: 100%;
    }

    .browse-sort-trigger {
        width: 100%;
        min-width: 0;
    }

    .browse-filter-toggle {
        width: 100%;
        justify-content: center;
    }

    .catalog-filter-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .product-card-body {
        padding: 0.9rem;
    }

    .product-image-wrap {
        padding: 8px;
    }
}

.product-purchase-box,
.spec-card,
.empty-state {
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.05);
    padding: 1.5rem;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 100%);
}

.cart-product-copy {
    min-width: 0;
}

.cart-product-title,
.cart-product-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.45;
}

.cart-coupon-group {
    max-width: 360px;
}

.payment-method-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.payment-method-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-body {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1.35rem;
    padding: 1.1rem 1.05rem;
    background: rgba(255, 255, 255, 0.96);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-method-card:hover .payment-method-body {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.07);
}

.payment-method-input:checked + .payment-method-body {
    border-color: rgba(251, 113, 133, 0.38);
    box-shadow: 0 0 0 0.2rem rgba(251, 113, 133, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 248, 0.92));
}

.payment-method-title {
    color: #111827;
    font-size: 1.15rem;
}

.payment-method-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.payment-method-icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.payment-method-icon-stripe {
    background: linear-gradient(135deg, #635bff 0%, #4f46e5 100%);
}

.payment-method-icon-paypal {
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
}

.payment-method-copy-block {
    display: block;
    min-width: 0;
}

.payment-method-copy {
    line-height: 1.65;
    display: block;
}

.payment-method-foot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.payment-method-pill {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: #f8fafc;
    color: #475467;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.checkout-page-head {
    max-width: 42rem;
}

.checkout-order-column {
    padding-top: 3rem;
}

.checkout-page-title {
    font-weight: 800;
}

.checkout-page-copy {
    font-size: 1.02rem;
    line-height: 1.7;
}

.checkout-page-wrap {
    position: relative;
}

.checkout-panel-card,
.checkout-order-card {
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

.checkout-account-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18.75rem, 20.5rem);
    align-items: start;
    gap: 1.25rem;
    padding: 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 89, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.checkout-account-note-guest {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
}

.checkout-account-label {
    color: #667085;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.checkout-account-email {
    color: #111827;
    font-weight: 700;
    line-height: 1.45;
    font-size: 1rem;
}

.checkout-account-copy {
    flex: 1 1 0;
    max-width: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.64), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(255, 122, 89, 0.08);
}

.checkout-account-copy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.checkout-account-copy-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.07);
    color: #475467;
    font-size: 0.78rem;
    font-weight: 700;
}

.checkout-account-copy-points span::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185 0%, #fdba74 100%);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.1);
}

.checkout-account-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.8rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
}

.checkout-account-link {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.checkout-account-link-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.15rem;
    width: 100%;
    padding: 0.74rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.checkout-google-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.checkout-account-link-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.checkout-account-link-large {
    min-height: 3rem;
    width: 100%;
    padding: 0.7rem 1.25rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.checkout-account-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    width: 100%;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.checkout-account-divider::before,
.checkout-account-divider::after {
    content: "";
    flex: 1 1 auto;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.checkout-account-divider span {
    display: inline-block;
}

.checkout-inline-auth-form {
    width: 100%;
    padding: 1.15rem 1.15rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.checkout-account-note-guest .checkout-account-copy {
    width: 100%;
    max-width: 38rem;
    align-items: center;
    text-align: center;
}

.checkout-account-note-guest .checkout-account-actions {
    width: 100%;
    max-width: 38rem;
}

.checkout-account-note-guest .checkout-account-link-primary,
.checkout-account-note-guest .checkout-inline-auth-form,
.checkout-account-note-guest .checkout-account-divider,
.checkout-account-note-guest .checkout-inline-register {
    width: 100%;
}

.checkout-account-note-guest .checkout-account-copy-points {
    justify-content: center;
}

.checkout-inline-auth-title {
    margin-bottom: 0.9rem;
    color: #111827;
    font-size: 0.98rem;
    font-weight: 800;
}

.checkout-inline-auth-fields {
    display: grid;
    gap: 0.78rem;
}

.checkout-inline-auth-input {
    min-height: 3.1rem;
    border-radius: 1rem;
    border-color: rgba(15, 23, 42, 0.1);
    padding-inline: 1rem;
    background: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
}

.checkout-inline-auth-input::placeholder {
    color: #98a2b3;
}

.checkout-inline-auth-input:focus {
    border-color: rgba(255, 122, 89, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 89, 0.12);
}

.checkout-inline-auth-foot {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkout-inline-auth-help {
    color: #667085;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.checkout-inline-auth-help:hover,
.checkout-inline-auth-help:focus {
    color: #ff7a59;
}

.checkout-inline-register {
    width: 100%;
}

.checkout-inline-register-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #344054;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.checkout-inline-register-toggle::-webkit-details-marker {
    display: none;
}

.checkout-inline-register-toggle::after {
    content: "+";
    margin-left: 0.55rem;
    color: #98a2b3;
    font-size: 1rem;
    font-weight: 800;
}

.checkout-inline-register[open] .checkout-inline-register-toggle {
    border-color: rgba(255, 122, 89, 0.18);
    background: #fff7ed;
    color: #111827;
}

.checkout-inline-register[open] .checkout-inline-register-toggle::after {
    content: "-";
}

.checkout-inline-register-form {
    margin-top: 0.8rem;
}

.checkout-inline-register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.78rem;
    margin-bottom: 0.78rem;
}

.checkout-payment-brands {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.checkout-payment-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.2rem;
    min-height: 2rem;
    padding: 0.28rem 0.54rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.checkout-payment-brand-compact {
    min-width: 4rem;
}

.checkout-payment-brands-outside {
    width: 100%;
}

.checkout-payment-brands-inline {
    justify-content: flex-start;
}

.checkout-payment-logo-image {
    display: block;
    width: auto;
    max-width: 2.95rem;
    height: 0.88rem;
    object-fit: contain;
}

.checkout-payment-combo-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
}

.checkout-payment-combo-visa {
    color: #1a49d7;
    font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    transform: skewX(-8deg);
}

.checkout-payment-logo-image-mastercard {
    max-width: 1.62rem;
    height: 0.92rem;
}

.checkout-payment-logo-image-stripe {
    max-width: 2.75rem;
    height: 0.88rem;
}

.checkout-payment-logo-image-paypal {
    max-width: 2.85rem;
    height: 0.88rem;
}

.checkout-payment-logo-mastercard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.6rem;
    height: 0.95rem;
}

.checkout-payment-logo-mastercard-inline {
    width: 1.34rem;
}

.checkout-payment-logo-mastercard-circle {
    width: 0.78rem;
    height: 0.78rem;
    border-radius: 999px;
}

.checkout-payment-logo-mastercard-left {
    background: #eb001b;
    margin-right: -0.22rem;
}

.checkout-payment-logo-mastercard-right {
    background: rgba(247, 158, 27, 0.96);
}

.checkout-account-link:hover,
.checkout-account-link:focus {
    color: #ff7a59;
}

.checkout-account-link-primary:hover,
.checkout-account-link-primary:focus {
    color: #fff;
    background: #1f2937;
    transform: translateY(-1px);
}

.checkout-account-link-secondary:hover,
.checkout-account-link-secondary:focus {
    color: #111827;
    border-color: rgba(249, 115, 22, 0.28);
    background: #fff7ed;
}

.checkout-provider-note {
    border-radius: 1rem;
    padding: 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.checkout-section-label {
    margin-bottom: 0.85rem;
    color: #111827;
    font-size: 1.02rem;
}

.checkout-submit-btn {
    min-height: 3.4rem;
    min-width: 16rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-color: transparent;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.checkout-submit-btn:hover,
.checkout-submit-btn:focus {
    background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
    border-color: transparent;
}

.checkout-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkout-submit-caption {
    color: #667085;
    font-size: 0.9rem;
}

.checkout-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.checkout-order-copy {
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.65;
}

.checkout-order-list {
    display: grid;
    gap: 1rem;
}

.checkout-order-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.checkout-order-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.checkout-order-item-copy {
    min-width: 0;
}

.checkout-order-item-title {
    display: -webkit-box;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.checkout-order-item-meta {
    margin-top: 0.35rem;
}

.checkout-order-item-price {
    flex-shrink: 0;
}

.checkout-total-row {
    font-size: 1.02rem;
}

.checkout-grand-total {
    padding-top: 0.45rem;
}

.checkout-order-foot {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 1rem;
    padding-top: 0.7rem;
}

.checkout-order-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-top: 0.85rem;
    color: #111827;
    font-size: 0.83rem;
    font-weight: 700;
}

.checkout-order-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.checkout-order-trust span::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185 0%, #fdba74 100%);
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
}

@media (max-width: 767.98px) {
    .checkout-account-note {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 1.2rem;
    }

    .checkout-account-actions {
        width: 100%;
        max-width: none;
    }

    .checkout-account-copy {
        max-width: none;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .checkout-inline-register-grid {
        grid-template-columns: 1fr;
    }

    .checkout-account-link-primary {
        width: 100%;
    }

    .checkout-account-link-secondary {
        width: 100%;
    }

    .checkout-submit-btn {
        width: 100%;
        min-width: 0;
    }

    .checkout-submit-wrap {
        align-items: stretch;
    }

    .payment-method-head {
        gap: 0.75rem;
    }

    .payment-method-icon {
        width: 2.55rem;
        height: 2.55rem;
    }

    .checkout-order-item {
        flex-direction: column;
    }

    .checkout-order-item-price {
        align-self: flex-start;
    }
}

@media (max-width: 991.98px) {
    .checkout-order-column {
        padding-top: 0;
    }
}

.checkout-page-wrap {
    padding-bottom: 1.25rem !important;
}

@media (max-width: 767.98px) {
    .checkout-page-wrap {
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.checkout-page-wrap) {
        min-height: auto;
    }

    .storefront-main:has(.checkout-page-wrap) + .store-footer {
        margin-top: 12px !important;
    }

    .storefront-main:has(.checkout-page-wrap) + .store-footer .container-fluid.py-5 {
        padding-top: 0.9rem !important;
    }
}

.checkout-page-wrap .checkout-panel-card {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible;
}

.checkout-page-wrap .checkout-panel-card > .card-body {
    padding: 0 !important;
}

.checkout-account-note-guest {
    width: 100%;
    max-width: none;
    padding: 1.25rem;
    border-radius: 1.35rem;
}

.checkout-account-note-guest .checkout-account-copy,
.checkout-account-note-guest .checkout-account-actions {
    max-width: none;
}

@media (max-width: 767.98px) {
    .checkout-account-note-guest {
        padding: 1rem;
        border-radius: 1.2rem;
    }
}

.checkout-account-note:not(.checkout-account-note-guest) {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 1rem;
    border-color: rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(255, 241, 244, 0.8), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.045);
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-copy {
    min-height: 82px;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(243, 227, 231, 0.9);
    box-shadow: none;
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-copy {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-label {
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-email {
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.05rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-link:hover,
.checkout-account-note:not(.checkout-account-note-guest) .checkout-account-link:focus {
    color: #fff;
    background: #1f2937;
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .checkout-account-note:not(.checkout-account-note-guest) {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0.9rem;
    }

    .checkout-account-note:not(.checkout-account-note-guest) .checkout-account-copy {
        min-height: 0;
        padding: 0;
    }

    .checkout-account-note:not(.checkout-account-note-guest) .checkout-account-link {
        width: 100%;
    }
}


.product-rating-stars {
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.review-copy,
.review-admin-copy {
    line-height: 1.7;
    white-space: pre-wrap;
}

.store-copy {
    line-height: 1.85;
    color: #4b5563;
}

.store-footer {
    background:
        radial-gradient(circle at top left, rgba(251, 113, 133, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.08), transparent 24%),
        #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.store-footer-shell {
    width: 100%;
    background: transparent;
    padding: 0 0 1.35rem;
}

.store-footer-shell > .container {
    padding-inline: 2rem;
}

@media (min-width: 768px) {
    .store-footer-shell > .container {
        display: grid;
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.1fr);
        gap: 3rem;
        align-items: start;
    }

    .store-footer-top {
        display: block;
    }

    .store-footer-links-grid {
        margin-top: 0;
    }

    .footer-meta-row {
        grid-column: 1 / -1;
    }
}

.store-footer-brand-card {
    display: grid;
    gap: 1rem;
    max-width: 21rem;
}

.store-footer-copy {
    color: #4b5563;
    line-height: 1.82;
    font-size: 1.02rem;
}

.store-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-footer-contact-link:hover {
    color: #111827;
    border-color: rgba(251, 113, 133, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
}

.store-footer-column {
    display: grid;
    gap: 0.95rem;
}

.store-footer .row.align-items-start {
    row-gap: 2rem !important;
}

.store-footer-heading {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.02em;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #111827;
    transform: translateX(2px);
}

.footer-meta-row {
    margin-top: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0.7rem;
}

.footer-payment-row {
    margin-top: 1.5rem;
    padding-top: 0;
}

.footer-payment-brands {
    justify-content: flex-end;
    gap: 0.45rem;
}

.store-footer-meta {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    grid-column: 1 / -1;
    grid-row: 2;
}

.footer-meta-row .footer-payment-brands {
    grid-column: 2;
    grid-row: 1;
    margin-left: auto;
}

.footer-meta-row .footer-preference-row {
    grid-column: 3;
    grid-row: 1;
}

.footer-preference-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.footer-preference-block {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-preference-toggle {
    min-height: 36px;
    padding: 0.42rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.footer-preference-toggle:hover,
.footer-preference-toggle:focus,
.footer-preference-toggle:active {
    border-color: rgba(251, 113, 133, 0.28) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #111827 !important;
}

@media (max-width: 767.98px) {
    .store-footer-shell {
        padding: 0 0 1.1rem;
    }

    .store-footer-shell > .container {
        padding-inline: 1.25rem;
    }

    .store-footer-copy {
        font-size: 0.97rem;
    }

    .store-footer-brand-card {
        max-width: 100%;
    }

    .footer-meta-row,
    .footer-preference-row {
        justify-content: flex-start;
    }

    .footer-payment-brands {
        justify-content: flex-start;
    }

    .footer-preference-block {
        width: auto;
        justify-content: flex-start;
    }
}

.fl-google-auth-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    border-radius: 999px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    color: #142033;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
}

.fl-google-auth-btn:hover,
.fl-google-auth-btn:focus {
    background: #f8fafc;
    color: #142033;
    border-color: #cfd8e3;
}

.fl-google-auth-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fl-google-auth-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fl-auth-divider {
    position: relative;
    text-align: center;
}

.fl-auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #e5e7eb;
}

.fl-auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 0.9rem;
    background: #fff;
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 600;
}

.free-download-auth-dialog {
    max-width: min(1040px, calc(100vw - 2rem));
}

.free-download-auth-modal {
    overflow: hidden;
}

.free-download-auth-header {
    position: relative;
    padding: 1.8rem 2rem 0;
}

.free-download-auth-header .btn-close {
    position: absolute;
    top: 1.45rem;
    right: 1.45rem;
}

.free-download-auth-card {
    width: min(100%, 760px);
}

.free-download-auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.35rem;
    border: 1px solid #e5edf6;
    border-radius: 999px;
    background: #f8fafc;
}

.free-download-auth-tabs .nav-item {
    min-width: 0;
}

.free-download-auth-tabs .nav-link {
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
    color: #647084;
    font-weight: 800;
}

.free-download-auth-tabs .nav-link.active {
    background: #20252a;
    color: #fff;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.free-download-auth-pane {
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid #e5edf6;
    border-radius: 22px;
    background: #fff;
}

.free-download-auth-pane .form-label {
    font-weight: 700;
    color: #172033;
}

.free-download-auth-pane .form-control {
    border-radius: 14px;
}

.fl-auth-page {
    padding-bottom: 1.5rem !important;
}

@media (max-width: 575.98px) {
    .free-download-auth-dialog {
        max-width: calc(100vw - 1rem);
        margin-left: auto;
        margin-right: auto;
    }

    .free-download-auth-header {
        padding: 1.45rem 1.25rem 0;
    }

    .free-download-auth-header .btn-close {
        top: 1rem;
        right: 1rem;
    }

    .free-download-auth-tabs .nav-link {
        min-height: 40px;
        font-size: 0.92rem;
    }

    .fl-auth-page {
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-auth-page) {
        min-height: auto;
    }

    .storefront-main:has(.fl-auth-page) + .store-footer {
        margin-top: 12px !important;
    }

    .storefront-main:has(.fl-auth-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.9rem !important;
    }
}

.fl-contact-page {
    padding-bottom: 1.25rem !important;
}

.fl-contact-help-card {
    padding: 1.35rem 1.5rem;
}

.fl-contact-help-card li {
    line-height: 1.45;
}

.fl-contact-help-card strong {
    margin-bottom: 0.15rem;
}

@media (max-width: 767.98px) {
    .fl-contact-page {
        padding-top: 1.25rem !important;
        padding-bottom: 1rem !important;
    }

    .fl-contact-help-card {
        padding: 1.15rem;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-contact-page) {
        min-height: auto;
    }

    .storefront-main:has(.fl-contact-page) + .store-footer {
        margin-top: 12px !important;
    }

    .storefront-main:has(.fl-contact-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.9rem !important;
    }
}

.fl-blog-page {
    padding-bottom: 1.25rem !important;
}

@media (max-width: 767.98px) {
    .fl-blog-page {
        padding-top: 1.25rem !important;
        padding-bottom: 1rem !important;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-blog-page) {
        min-height: auto;
    }

    .storefront-main:has(.fl-blog-page) + .store-footer {
        margin-top: 12px !important;
    }

    .storefront-main:has(.fl-blog-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.9rem !important;
    }
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 575.98px) {
    .fl-home-hero-shell {
        max-height: none;
        border-radius: 24px;
        padding: 2rem 1.25rem;
    }

    .fl-home-title {
        max-width: none;
        font-size: 2.125rem;
        line-height: 1.04;
    }

    .fl-trust-row {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.625rem;
    }

    .fl-trust-item {
        width: 100%;
    }

    .fl-hero-visual {
        min-height: auto;
        padding-top: 0.75rem;
        justify-content: center;
        max-width: 100%;
    }

    .fl-hero-visual-frame {
        display: none;
    }

    .fl-floating-badge {
        position: static;
        margin: 0 auto 0.9rem;
    }

    .fl-mockup-stack {
        min-height: auto;
        width: 100%;
    }

    .fl-mockup-card-1 {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .fl-mockup-card-2,
    .fl-mockup-card-3 {
        display: none;
    }

    .fl-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .fl-home-showcase-item .product-image-wrap {
        min-height: 285px;
        padding: 0;
    }

    .fl-category-card {
        min-height: 160px;
        padding: 1rem;
    }

    .fl-product-body {
        padding: 0.9rem 0.85rem 1rem;
    }

    .fl-product-title {
        font-size: 0.92rem;
    }

    .fl-product-price,
    .fl-product-link {
        font-size: 0.82rem;
    }

    .fl-feature-strip {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0.85rem 0.9rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .fl-feature-strip::-webkit-scrollbar {
        display: none;
    }

    .fl-feature-card {
        flex: 0 0 min(74vw, 250px);
        padding: 0.25rem 0.05rem;
        border-right: 0;
        scroll-snap-align: start;
    }

    .announcement-bar-inner {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.55rem 0;
    }

    .announcement-offer,
    .announcement-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .storefront-brand-mobile {
        font-size: 1.15rem;
        gap: 0.5rem;
    }

    .storefront-brand-logo {
        height: 2.35rem;
        max-width: 9.4rem;
    }

    .storefront-brand-mark {
        width: 2.45rem;
        height: 2.45rem;
    }

    .hero-search-shell-mobile {
        padding: 0.4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-tile {
        min-height: 120px;
    }
}

@media (max-width: 767.98px) {
    .fl-mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.9rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.15rem 0.25rem 0.65rem;
        margin-inline: -0.25rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .fl-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .fl-mobile-slide-item {
        flex: 0 0 auto;
        padding-right: 0;
        padding-left: 0;
        scroll-snap-align: start;
    }

    .fl-mobile-slide-category {
        width: min(74vw, 250px);
    }

    .fl-mobile-slide-product {
        width: min(82vw, 320px);
    }

    .fl-mobile-slide-category .fl-category-card,
    .fl-mobile-slide-product .product-card {
        height: 100%;
    }

    .fl-mobile-slide-category .fl-category-card {
        min-height: 156px;
    }
}

@media (max-width: 991.98px) {
    .catalog-filter-card {
        position: static;
        top: auto;
    }

    .fl-home-hero {
        overflow: hidden;
    }

    .fl-home-hero-shell {
        max-height: none;
        padding: 2rem 1.75rem;
    }

    .fl-home-title {
        max-width: 12.2ch;
        font-size: clamp(2.55rem, 5vw, 3.35rem);
        line-height: 1.02;
    }

    .fl-home-copy {
        max-width: 100%;
    }

    .fl-home-copy-stack {
        max-width: 100%;
        gap: 1rem;
    }

    .fl-hero-visual {
        min-height: 280px;
        padding-top: 0;
        justify-content: center;
        max-width: 100%;
    }

    .fl-floating-badge {
        position: static;
        margin-bottom: 1rem;
    }

    .fl-mockup-stack {
        width: min(100%, 395px);
        min-height: 280px;
        margin: 0 auto;
    }

    .fl-mockup-card-1 {
        width: 222px;
    }

    .fl-mockup-card-2,
    .fl-mockup-card-3 {
        width: 132px;
    }

    .fl-feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem 0;
    }

    .fl-feature-card:nth-child(3n) {
        border-right: 0;
    }

    .announcement-bar {
        display: none;
    }

    .main-header {
        background: rgba(255, 255, 255, 0.96);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .desktop-header {
        grid-template-columns: 190px minmax(0, 1fr) auto;
    }

    .fl-home-title {
        max-width: 12.4ch;
        font-size: 3.4rem;
    }

    .fl-home-copy-stack {
        max-width: 31.5rem;
    }

    .fl-mockup-card-1 {
        width: 244px;
    }

    .fl-mockup-card-2,
    .fl-mockup-card-3 {
        width: 150px;
    }

    .secondary-nav-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .catalog-filter-card {
        top: 11.2rem;
    }

    .fl-feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 0;
    }

    .fl-feature-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (min-width: 992px) {
    .fl-home-copy-col {
        flex: 0 0 53%;
        width: 53%;
    }

    .fl-home-visual-col {
        flex: 0 0 47%;
        width: 47%;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.fl-home-page {
    overflow-x: clip;
}

.fl-home-page img {
    max-width: 100%;
    height: auto;
}

.fl-home-page .container {
    width: 100%;
    max-width: 1320px;
    padding-left: 24px;
    padding-right: 24px;
}

.fl-home-page .fl-home-hero-shell,
.fl-home-page .fl-feature-strip,
.fl-home-page .product-card,
.fl-home-page .fl-review-card,
.fl-home-page .fl-home-cta,
.fl-home-page .fl-trust-item {
    min-width: 0;
}

.fl-home-page .fl-home-hero-grid {
    align-items: center;
}

.fl-home-page .fl-home-copy-stack {
    max-width: 100%;
}

.fl-home-page .fl-home-title {
    max-width: 12ch;
    font-size: min(48px, 4.2vw);
}

.fl-home-page .fl-home-copy {
    max-width: 32rem;
}

.fl-home-page .fl-home-actions .btn {
    min-height: 44px;
}

.fl-home-page .fl-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 520px;
}

.fl-home-page .fl-trust-item {
    min-width: 0;
    width: 100%;
    padding: 10px 8px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.fl-home-page .fl-feature-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    width: 100%;
}

.fl-home-page .fl-feature-card {
    min-width: 0;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 0;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.fl-home-page .fl-feature-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.fl-home-page .fl-feature-copy {
    min-width: 0;
}

.fl-home-page .fl-feature-card .fl-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fl-home-page .fl-feature-card p {
    font-size: 11px;
    line-height: 1.25;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fl-home-page .fl-home-product-grid,
.fl-home-page .fl-home-product-grid.fl-mobile-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    margin: 0;
    padding: 0;
}

.fl-home-page .fl-home-product-grid > .fl-mobile-slide-item,
.fl-home-page .fl-home-product-grid > [class*="col-"] {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: initial;
    padding-right: 0;
    padding-left: 0;
}

.fl-home-page .fl-home-product-grid > .col-12 {
    grid-column: 1 / -1;
}

.fl-home-page .product-card,
.fl-home-page .fl-home-showcase-item .product-card {
    height: 100%;
}

.fl-home-page .product-image-wrap,
.fl-home-page .fl-home-showcase-item .product-image-wrap {
    min-height: 0;
}

.fl-home-page .product-card-image,
.fl-home-page .fl-home-showcase-item .product-card-image {
    width: 100%;
    height: 100%;
}

.fl-home-page .product-title,
.fl-home-page .fl-home-showcase-item .product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fl-home-page .product-title a,
.fl-home-page .fl-home-showcase-item .product-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fl-home-page .fl-review-slider-track {
    gap: 1rem;
}

.fl-home-page .fl-review-slide {
    flex: 0 0 calc((100% - 2rem) / 3);
}

.fl-home-page .fl-review-copy {
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.fl-home-page .fl-home-cta {
    padding: 2.4rem 1.5rem;
}

.fl-home-page .fl-home-newsletter-form {
    max-width: 44rem;
}

@media (max-width: 1199px) {
    .fl-home-page .fl-home-title {
        font-size: 42px;
    }

    .fl-home-page .fl-home-copy {
        max-width: 100%;
    }

    .fl-home-page .fl-feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fl-home-page .fl-review-slide {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 991px) {
    .fl-home-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fl-home-page .fl-home-hero-shell {
        min-height: 0;
        padding: 2rem 1.75rem;
    }

    .fl-home-page .fl-home-copy-col,
    .fl-home-page .fl-home-visual-col {
        width: 100%;
    }

    .fl-home-page .fl-home-title {
        max-width: 13ch;
        font-size: 36px;
        line-height: 1.04;
    }

    .fl-home-page .fl-home-copy-stack {
        gap: 1rem;
    }

    .fl-home-page .fl-home-visual-col {
        justify-content: center;
    }

    .fl-home-page .fl-hero-visual {
        max-width: 100%;
        min-height: 280px;
    }

    .fl-home-page .fl-floating-badge {
        position: static;
        margin: 0 auto 1rem;
    }

    .fl-home-page .fl-mockup-stack {
        width: min(100%, 395px);
        min-height: 280px;
    }

    .fl-home-page .fl-feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .fl-home-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fl-home-page .fl-home-hero-shell {
        min-height: 0;
        padding: 1.25rem 1rem;
        border-radius: 22px;
    }

    .fl-home-page .fl-home-copy-stack {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 0.7rem;
    }

    .fl-home-page .fl-home-kicker {
        align-self: center;
    }

    .fl-home-page .fl-home-title {
        max-width: 14ch;
        font-size: 30px;
        line-height: 1.06;
        margin-left: auto;
        margin-right: auto;
    }

    .fl-home-page .fl-home-copy {
        max-width: 100%;
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .fl-home-page .fl-home-actions {
        width: 100%;
    }

    .fl-home-page .fl-home-actions .btn {
        width: 100%;
    }

    .fl-home-page .fl-home-visual-col {
        display: none;
    }

    .fl-home-page .fl-trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: 520px;
    }

    .fl-home-page .fl-trust-item {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 9px 5px;
    }

    .fl-home-page .fl-trust-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        flex: 0 0 30px;
    }

    .fl-home-page .fl-trust-item strong {
        font-size: 10.5px;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .fl-home-page .fl-trust-item small {
        font-size: 9px;
        line-height: 1.15;
        color: #64748b;
    }

    .fl-home-page .fl-feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .fl-home-page .fl-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
    }

    .fl-home-page .fl-feature-copy {
        display: block;
    }

    .fl-home-page .fl-feature-card .fl-feature-title {
        white-space: normal;
        font-size: 12px;
        color: #000;
        text-align: center;
        margin-bottom: 0.18rem;
    }

    .fl-home-page .fl-feature-card p {
        font-size: 10px;
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .fl-home-page .fl-home-showcase-item .product-image-wrap {
        min-height: 235px;
    }

    .fl-home-page .product-card-body,
    .fl-home-page .fl-home-showcase-item .product-card-body {
        padding: 0.9rem 0.85rem 1rem;
    }

    .fl-home-page .product-title,
    .fl-home-page .fl-home-showcase-item .product-title {
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .fl-home-page .fl-section-head,
    .fl-home-page .fl-home-reviews-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .fl-home-page .fl-section-link {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .fl-home-page .fl-review-slide {
        flex-basis: 100%;
    }

    .fl-home-page .fl-home-cta {
        padding: 1.75rem 1rem;
        text-align: center;
    }

    .fl-home-page .fl-home-cta-title {
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .fl-home-page .fl-home-newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 0.9rem;
        border-radius: 24px;
    }

    .fl-home-page .fl-home-newsletter-input-shell {
        min-height: 3.35rem;
    }

    .fl-home-page .fl-home-newsletter-submit {
        width: 100%;
        min-width: 0;
        min-height: 3.35rem;
    }
}

@media (max-width: 575px) {
    .fl-home-page .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .fl-home-page .fl-home-hero-shell {
        padding: 1.1rem 0.9rem;
    }

    .fl-home-page .fl-home-title {
        max-width: 14ch;
        font-size: 28px;
    }

    .fl-home-page .fl-home-copy {
        font-size: 0.9rem;
    }

    .fl-home-page .fl-trust-row {
        gap: 10px;
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fl-home-page .fl-home-showcase-item .product-image-wrap {
        min-height: 210px;
    }

    .fl-home-page .fl-feature-card {
        padding: 0.85rem 0.7rem;
    }

    .fl-home-page .fl-home-cta-title {
        font-size: 1.75rem;
    }

    .fl-home-page .fl-home-cta-copy {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

@media (max-width: 360px) {
    .fl-home-page .fl-home-title {
        font-size: 26px;
    }

    .fl-home-page .fl-trust-row {
        grid-template-columns: 1fr;
    }

    .fl-home-page .fl-trust-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        padding: 10px 12px;
    }

    .fl-home-page .fl-trust-item strong {
        font-size: 12px;
    }

    .fl-home-page .fl-trust-item small {
        font-size: 10px;
    }

    .fl-home-page .fl-feature-card {
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }

    .fl-home-page .fl-feature-card .fl-feature-title {
        text-align: left;
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider,
    .fl-home-page .fl-feature-strip {
        grid-template-columns: 1fr;
    }
}

.fl-home-page .product-scroll-grid,
.fl-home-page .product-scroll-grid.fl-mobile-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    overflow: visible;
    margin: 0;
    padding: 0;
}

.fl-home-page .product-scroll-grid > * {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: initial;
    padding-right: 0;
    padding-left: 0;
}

.fl-home-page .product-scroll-grid > .product-scroll-empty {
    grid-column: 1 / -1;
}

.fl-home-page .product-scroll-grid .product-card {
    width: 100%;
    min-width: 0;
}

.fl-home-page .product-scroll-grid .product-image-wrap,
.fl-home-page .product-scroll-grid .fl-home-showcase-item .product-image-wrap {
    min-height: 0;
}

.fl-home-page .product-scroll-grid .product-card-image {
    width: 100%;
}

.fl-home-page .product-scroll-grid .product-title,
.fl-home-page .product-scroll-grid .product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fl-home-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.fl-home-page .section-header .fl-section-link {
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .fl-home-page .product-scroll-grid,
    .fl-home-page .product-scroll-grid.fl-mobile-slider {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .fl-home-page .product-scroll-grid,
    .fl-home-page .product-scroll-grid.fl-mobile-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .fl-home-page .section-header {
        flex-direction: row;
        align-items: center;
    }

    .fl-home-page .section-header .fl-section-title {
        font-size: 22px;
    }

    .fl-home-page .section-header .fl-section-link {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .fl-home-page .product-scroll-grid,
    .fl-home-page .product-scroll-grid.fl-mobile-slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 16px 14px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .fl-home-page .product-scroll-grid > * {
        flex: 0 0 74%;
        width: auto;
        max-width: 74%;
        scroll-snap-align: start;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-empty {
        flex-basis: 100%;
        max-width: 100%;
    }

    .fl-home-page .product-scroll-grid .product-card {
        width: 100%;
        min-width: 0;
        border-radius: 18px;
    }

    .fl-home-page .product-scroll-grid .product-image-wrap,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-image-wrap {
        aspect-ratio: 1 / 1.18;
        min-height: 0;
        max-height: none;
    }

    .fl-home-page .product-scroll-grid .product-card-body,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-card-body {
        padding: 12px;
    }

    .fl-home-page .product-scroll-grid .product-title,
    .fl-home-page .product-scroll-grid .product-title a {
        font-size: 14px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .fl-home-page .product-scroll-grid .product-rating,
    .fl-home-page .product-scroll-grid .product-rating-copy,
    .fl-home-page .product-scroll-grid .product-sales-copy,
    .fl-home-page .product-scroll-grid .product-discount-copy {
        font-size: 11px;
    }

    .fl-home-page .product-scroll-grid .product-price-main,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-price-main {
        font-size: 16px;
    }

    .fl-home-page .section-header {
        gap: 8px;
        margin-bottom: 14px !important;
    }

    .fl-home-page .section-header .fl-section-title {
        font-size: 20px;
        margin: 0;
    }

    .fl-home-page .section-header .fl-section-link {
        font-size: 11px;
    }

    .fl-home-page .product-scroll-grid::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 390px) {
    .fl-home-page .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .fl-home-page .product-scroll-grid > * {
        flex-basis: 80%;
        max-width: 80%;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-empty {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 340px) {
    .fl-home-page .product-scroll-grid > * {
        flex-basis: 88%;
        max-width: 88%;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-empty {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.secure-download-modal-card {
    background: linear-gradient(180deg, #fffafb 0%, #ffffff 100%);
    border: 1px solid rgba(244, 114, 182, 0.16);
    border-radius: 1.1rem;
    padding: 1rem;
}

.account-inline-meta-label {
    color: #667085;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-inline-meta-value,
.account-inline-hint {
    color: #475467;
    font-size: 0.95rem;
}

.storefront-brand-media,
.storefront-brand-copy {
    display: inline-flex;
    align-items: center;
}

.storefront-brand-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.storefront-brand-name {
    font-weight: 800;
    color: #101828;
}

.announcement-bar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem;
}

.announcement-points {
    gap: 1rem;
}

.announcement-actions {
    gap: 0.85rem;
}

.desktop-header {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.header-action-pill-icon {
    min-width: 0;
}

.header-deals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(251, 113, 133, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-deals-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(251, 113, 133, 0.24);
}

.mobile-search-panel {
    width: 100%;
}

.mobile-search-form {
    position: relative;
}

.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-offcanvas {
    width: min(92vw, 390px);
    border-right: 1px solid rgba(244, 114, 182, 0.12);
    background: linear-gradient(180deg, rgba(255, 250, 248, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.mobile-menu-subtitle {
    margin-top: 0.2rem;
    color: var(--fluffimi-muted);
    font-size: 0.8rem;
}

.mobile-menu-search {
    margin-bottom: 1.1rem;
}

.mobile-menu-section + .mobile-menu-section {
    margin-top: 1rem;
}

.mobile-menu-label {
    margin-bottom: 0.65rem;
    color: #344054;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-block,
.mobile-quick-grid,
.mobile-menu-selectors {
    display: grid;
    gap: 0.7rem;
}

.mobile-menu-block a,
.mobile-quick-grid a,
.mobile-menu-select {
    min-height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
}

.mobile-menu-block a,
.mobile-quick-grid a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    color: #111827;
    text-decoration: none;
    font-weight: 700;
}

.mobile-quick-grid a i {
    color: var(--fluffimi-rose-strong);
}

.mobile-menu-select {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0.9rem;
    color: #111827;
    font-size: 0.92rem;
    font-weight: 700;
}

.store-footer-shell {
    padding-bottom: 1.2rem;
}

.store-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.store-footer-social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.store-footer-social-managed {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-top: 0;
}

.store-footer-social-managed .store-footer-social-link {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.store-footer-social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--fluffimi-rose-strong);
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-footer-social-link:hover {
    color: var(--fluffimi-rose-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.store-footer-newsletter-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.5rem;
    border: 1px solid rgba(244, 114, 182, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 245, 248, 0.94), rgba(255, 249, 242, 0.98));
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.store-footer-newsletter-copy {
    color: #5f6b80;
    line-height: 1.7;
}

.store-footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
}

.store-footer-newsletter-input {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.75rem 1rem;
}

.store-footer-newsletter-btn {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    background: linear-gradient(135deg, #fb7185 0%, #ff9b71 100%);
    color: #fff;
    font-weight: 800;
}

.store-footer-newsletter-btn:hover {
    color: #fff;
}

.store-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.store-footer-heading-toggle {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.store-footer-accordion-panel {
    overflow: hidden;
}

@media (min-width: 768px) {
    .store-footer-heading-toggle {
        pointer-events: none;
    }

    .store-footer-accordion-panel {
        max-height: none !important;
    }
}

@media (max-width: 1199px) {
    .desktop-header {
        grid-template-columns: 200px minmax(0, 1fr) auto;
    }

    .announcement-points {
        gap: 0.75rem;
    }

    .store-footer-top {
        grid-template-columns: 1fr;
    }
}

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

    .main-header .container.py-3.py-lg-4 {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    .mobile-header {
        grid-template-columns: 44px minmax(0, 1fr) auto;
    }

    .storefront-brand-mobile {
        justify-self: center;
    }

    .mobile-search-panel .hero-search-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }
}

@media (max-width: 767px) {
    .store-header {
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    .mobile-header-actions {
        gap: 0.2rem;
    }

    .header-icon-btn {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .mobile-search-panel {
        margin-top: 0.65rem;
    }

    .mobile-search-panel .hero-search-shell {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .mobile-search-panel .search-category-dropdown {
        display: none;
    }

    .secondary-nav,
    .category-quick-row {
        display: none !important;
    }

    .store-footer-top {
        gap: 1.4rem;
    }

    .store-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 1.5rem;
    }

    .store-footer-column {
        gap: 0;
        padding: 0.9rem 1rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
    }

    .store-footer-heading-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .store-footer-heading-toggle::after {
        content: "+";
        color: var(--fluffimi-muted);
        font-size: 1rem;
        font-weight: 700;
    }

    .store-footer-column.is-open .store-footer-heading-toggle::after {
        content: "-";
    }

    .store-footer-accordion-panel {
        max-height: 0;
        transition: max-height 0.24s ease;
    }

    .store-footer-accordion-panel .list-unstyled {
        padding-top: 0.9rem;
    }

    .footer-meta-row {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .store-footer-social-managed,
    .footer-meta-row .footer-payment-brands,
    .footer-meta-row .footer-preference-row,
    .store-footer-meta {
        grid-column: 1;
    }

    .store-footer-social-managed {
        grid-row: 1;
    }

    .footer-meta-row .footer-payment-brands {
        grid-row: 2;
        margin-left: 0;
    }

    .footer-meta-row .footer-preference-row {
        grid-row: 3;
    }

    .store-footer-meta {
        grid-row: 4;
        text-align: left;
    }

    .footer-payment-brands,
    .footer-preference-row {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .storefront-brand-logo {
        height: 2.45rem;
        max-width: 8.75rem;
    }

    .store-footer {
        text-align: center;
    }

    .store-footer-shell > .container {
        display: block;
        padding-inline: 1.15rem;
    }

    .store-footer-top {
        width: 100%;
    }

    .store-footer-brand-card {
        justify-items: center;
        gap: 0.85rem;
        width: 100%;
        max-width: none;
        margin-inline: auto;
    }

    .storefront-brand-footer {
        display: grid;
        justify-items: center;
        gap: 0.35rem;
    }

    .storefront-brand-footer .storefront-brand-logo {
        height: 2.6rem;
        max-width: 10rem;
        object-position: center;
    }

    .storefront-brand-footer .storefront-brand-copy {
        align-items: center;
    }

    .storefront-brand-footer .brand-tagline {
        margin-top: 0;
        padding: 0.2rem 0.55rem;
        border-radius: 999px;
        background: rgba(255, 245, 247, 0.85);
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .store-footer-copy {
        width: 100%;
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
    }

    .store-footer-social {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.65rem;
        width: 100%;
    }

    .store-footer-social-link {
        width: 40px;
        height: 40px;
    }

    .store-footer-newsletter-form {
        grid-template-columns: 1fr;
    }

    .store-footer-newsletter-btn {
        width: 100%;
    }

    .mobile-menu-offcanvas {
        width: 100%;
    }

    .mobile-menu-block,
    .mobile-quick-grid,
    .mobile-menu-selectors {
        gap: 0.6rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .desktop-header {
        display: none !important;
    }

    .mobile-header {
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-header-actions {
        gap: 0.35rem;
    }

    .main-header .container.py-3.py-lg-4 {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    .mobile-search-panel {
        display: block;
    }

    .mobile-search-panel .hero-search-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .secondary-nav,
    .category-quick-row {
        display: none !important;
    }

    .fl-home-page .container {
        max-width: 100%;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .fl-home-page .fl-home-hero-shell {
        padding: 2rem 1.75rem;
        min-height: 0;
    }

    .fl-home-page .fl-home-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        align-items: center;
        justify-items: center;
    }

    .fl-home-page .fl-home-copy-col,
    .fl-home-page .fl-home-visual-col {
        width: auto;
    }

    .fl-home-page .fl-home-copy-stack {
        max-width: 560px;
        gap: 0.95rem;
        align-items: center;
        text-align: center;
    }

    .fl-home-page .fl-home-kicker {
        align-self: center;
    }

    .fl-home-page .fl-home-title {
        max-width: 16ch;
        font-size: clamp(34px, 3.8vw, 38px);
        line-height: 1.04;
        margin-left: auto;
        margin-right: auto;
    }

    .fl-home-page .fl-home-copy {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
    }

    .fl-home-page .fl-home-actions {
        width: 100%;
        justify-content: center;
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .fl-home-page .fl-home-actions .btn {
        width: auto;
        min-width: 0;
    }

    .fl-home-page .fl-home-visual-col {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fl-home-page .fl-hero-visual {
        min-height: 0;
        width: min(100%, var(--fl-hero-visual-height, 340px));
        max-width: min(100%, 420px);
        padding-top: 0;
        overflow: visible;
    }

    .fl-home-page .fl-hero-visual-frame,
    .fl-home-page .fl-floating-badge {
        display: none;
    }

    .fl-home-page .fl-mockup-stack {
        width: min(100%, var(--fl-hero-visual-height, 340px));
        min-height: min(var(--fl-hero-visual-height, 340px), 420px);
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .fl-home-page .fl-mockup-card-1 {
        width: 210px;
    }

    .fl-home-page .fl-mockup-card-2,
    .fl-home-page .fl-mockup-card-3 {
        width: 126px;
        top: 4.4rem;
    }

    .fl-home-page .fl-mockup-card-single {
        width: min(100%, var(--fl-hero-visual-height, 340px), 420px);
        top: auto;
        transform: none;
    }

    .fl-home-page .fl-mockup-card-2 {
        left: 0.75rem;
    }

    .fl-home-page .fl-mockup-card-3 {
        right: 0.75rem;
    }

    .fl-home-page .fl-trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .fl-home-page .fl-trust-item {
        min-width: 0;
        width: 100%;
        padding: 0.8rem 0.75rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    }

    .fl-home-page .fl-trust-item strong {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .fl-home-page .fl-trust-item small {
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .fl-home-page .fl-feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .fl-home-page .fl-feature-card {
        min-height: 118px;
        padding: 1rem 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.92);
        border-right: 0;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
    }

    .fl-home-page .fl-feature-card p {
        display: block;
        font-size: 0.72rem;
    }

    .fl-home-page .fl-feature-card .fl-feature-title {
        text-align: left;
        color: #000;
        margin-bottom: 0.18rem;
    }

    .fl-home-page .fl-feature-copy {
        display: block;
    }

    .fl-home-page .fl-home-product-grid,
    .fl-home-page .fl-home-product-grid.fl-mobile-slider {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .fl-home-page .fl-home-showcase-item .product-image-wrap {
        min-height: 240px;
    }

    .fl-home-page .fl-review-slide {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
}

.account-summary-grid {
    margin-top: 0.15rem;
}

.fl-account-profile-page .account-downloads-container {
    max-width: 1224px;
    margin-left: auto;
    margin-right: auto;
}

.account-stat-card {
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 1.45rem;
    padding: 1.45rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.92));
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.account-stat-label {
    color: #667085;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.account-stat-value {
    color: #111827;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1;
}

.account-panel-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94));
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.07);
}

.account-panel-head {
    align-items: flex-start;
}

.account-panel-title {
    color: #111827;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
}

.account-panel-copy {
    max-width: 32rem;
    color: #667085 !important;
    line-height: 1.7;
    font-size: 1rem;
}

.account-meta-chip {
    min-width: 8.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.88));
}

.account-form-grid .form-label {
    color: #111827;
    font-size: 0.98rem;
    margin-bottom: 0.55rem;
}

.account-form-grid .form-control {
    min-height: 3.25rem;
    border-radius: 0.95rem;
    border-color: rgba(203, 213, 225, 0.9);
    padding: 0.8rem 1rem;
    font-size: 1.02rem;
    box-shadow: none;
}

.account-form-grid .form-control:focus {
    border-color: rgba(244, 114, 182, 0.38);
    box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.08);
}

.account-form-actions {
    margin-top: 0.35rem;
}

.account-profile-save-btn {
    min-width: 10.75rem;
    min-height: 3rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.account-password-save-btn {
    min-width: 10.75rem;
    min-height: 3rem;
    font-weight: 700;
}

.account-mini-stat {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;
    padding: 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
    height: 100%;
}

.account-orders-empty-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
    color: #db2777;
    font-size: 1.5rem;
}

.account-order-number {
    color: #111827;
    font-size: 1.18rem;
    font-weight: 800;
}

.account-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    color: #667085;
    font-size: 0.92rem;
    margin-top: 0.45rem;
}

.account-order-meta span {
    position: relative;
}

.account-order-meta span + span::before {
    content: "";
    position: absolute;
    left: -0.55rem;
    top: 50%;
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.75);
    transform: translateY(-50%);
}

.account-order-total {
    color: #111827;
    font-size: 1.3rem;
    font-weight: 800;
}

.account-order-items {
    display: grid;
    gap: 0.85rem;
}

.account-order-item {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.82));
}

.account-order-item-thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7f8 0%, #fff7ed 100%);
    border: 1px solid rgba(244, 114, 182, 0.14);
    color: #db2777;
    text-decoration: none;
}

.account-order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-order-item-thumb span {
    font-size: 1.25rem;
}

.account-order-item-copy {
    min-width: 0;
}

.account-order-item-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.account-order-item-title:hover {
    color: #db2777;
}

.account-order-download-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.account-order-download-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.75rem 0.8rem;
    border: 1px solid rgba(243, 227, 231, 0.9);
    border-radius: 0.9rem;
    background: rgba(255, 250, 248, 0.72);
}

.account-order-download-copy {
    min-width: 0;
}

.account-order-download-file {
    color: #111827;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-order-download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    color: #667085;
    font-size: 0.78rem;
    line-height: 1.35;
    margin-top: 0.25rem;
}

.account-order-download-state {
    color: #667085;
    font-size: 0.82rem;
    font-weight: 700;
}

.account-order-download-actions {
    display: flex;
    justify-content: flex-end;
}

.account-order-action-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
}

.account-order-action-stack .account-downloads-action-btn,
.account-order-action-stack .account-downloads-review-btn,
.account-order-action-stack .account-downloads-review-state {
    width: auto;
    min-width: 9.75rem;
}

.account-order-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}

@media (max-width: 991.98px) {
    .account-panel-title {
        font-size: 1.65rem;
    }

    .account-panel-copy {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .fl-account-orders-page,
    .fl-account-downloads-page {
        padding-top: 1.35rem !important;
        padding-bottom: 1rem !important;
    }

    .account-stat-card {
        padding: 1.2rem 1.15rem;
    }

    .account-stat-value {
        font-size: 2.05rem;
    }

    .account-panel-card {
        border-radius: 1.2rem;
    }

    .account-panel-title {
        font-size: 1.45rem;
    }

    .account-meta-chip {
        width: 100%;
        text-align: left !important;
    }

    .account-form-actions {
        align-items: stretch !important;
    }

    .account-profile-save-btn,
    .account-password-save-btn {
        width: 100%;
    }
}

.account-order-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
    color: #667085;
    font-size: 0.88rem;
    margin-top: 0.45rem;
}

.account-downloads-container {
    max-width: 1680px;
    padding-left: clamp(1rem, 2vw, 1.75rem);
    padding-right: clamp(1rem, 2vw, 1.75rem);
}

.fl-success-section {
    padding: 24px 16px;
    background: #fffaf8;
}

.fl-success-shell {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.fl-success-shell .card-body {
    padding: 0 !important;
}

.success-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
}

.success-container-shell {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ffd6df;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.success-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 22px;
    box-shadow: none;
}

.success-card-left {
    border-right: 1px solid #ffe2e8;
    justify-content: center;
}

.fl-success-hero,
.download-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fl-success-hero {
    justify-content: center;
    align-items: flex-start;
}

.download-card {
    justify-content: space-between;
}

.success-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.22);
}

.success-label,
.section-kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #ea580c;
    font-weight: 700;
    text-transform: uppercase;
}

.success-title,
.fl-success-title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111827;
    max-width: none;
    white-space: nowrap;
}

.success-message,
.fl-success-copy {
    margin: 0 0 16px;
    max-width: 430px;
    font-size: 14px;
    line-height: 1.45;
    color: #64748b;
    text-align: left;
}

.success-card-left .badge-row,
.success-card-left .fl-success-pill-row {
    justify-content: flex-start !important;
}

.badge-row,
.fl-success-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px !important;
}

.fl-success-pill-row .btn {
    min-height: 42px;
    padding-inline: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fl-success-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 36px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(134, 239, 172, 0.92);
    background: #fff;
    color: #344054;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: none;
}

.fl-success-pill i {
    color: #16a34a;
}

.order-summary-box,
.fl-success-order-card {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.7fr;
    gap: 18px;
    width: 100%;
    padding: 14px 16px;
    margin: 0 0 16px !important;
    border: 1px solid #d9e2ee;
    border-radius: 18px;
    background: #fcfdff;
    box-shadow: none;
    align-items: center;
}

.order-summary-label {
    margin-bottom: 5px;
    font-size: 12px;
    color: #64748b;
}

.order-summary-value {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.order-number,
.fl-success-order-number {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    word-break: break-word;
}

.fl-success-order-main {
    min-width: 0;
}

.fl-success-order-stat {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    min-height: auto;
}

.action-row,
.fl-success-action-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.action-row .btn,
.download-actions .btn,
.fl-success-download-form .btn {
    height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.action-row .fl-btn-primary,
.download-actions .fl-btn-primary,
.fl-success-download-form .fl-btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #f06292 0%, #f7a166 100%);
    box-shadow: 0 14px 28px rgba(240, 98, 146, 0.24);
}

.action-row .fl-btn-primary:hover,
.download-actions .fl-btn-primary:hover,
.fl-success-download-form .fl-btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(240, 98, 146, 0.3);
}

.action-row .fl-btn-secondary,
.download-actions .fl-btn-secondary,
.download-invoice-btn {
    border: 1px solid #dbe5f1;
    color: #162033;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.action-row .fl-btn-secondary:hover,
.download-actions .fl-btn-secondary:hover,
.download-invoice-btn:hover {
    color: #162033;
    transform: translateY(-1px);
    border-color: #cbd7e6;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.action-row .btn:focus-visible,
.download-actions .btn:focus-visible,
.fl-success-download-form .btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(240, 98, 146, 0.12);
}

.download-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.download-title {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
}

.download-subtitle {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    max-width: 34rem;
}

.download-item,
.fl-success-download-item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    background: #fcfdff;
    box-shadow: none;
    width: 100%;
}

.download-file-icon,
.fl-success-download-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1f4;
    color: #ef6d8f;
    font-size: 1rem;
}

.fl-success-download-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.download-info,
.fl-success-download-content {
    min-width: 0;
    max-width: 100%;
}

.download-product-title,
.fl-success-download-name {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.download-file-name,
.fl-success-download-file,
.download-meta,
.fl-success-download-meta {
    font-size: 12px;
    color: #64748b;
}

.fl-success-download-file {
    margin-bottom: 4px !important;
    line-height: 1.35;
}

.download-meta,
.fl-success-download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    font-weight: 600;
}

.download-meta span,
.fl-success-download-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.fl-success-download-form {
    margin: 0;
}

.download-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
}

.download-actions,
.fl-success-downloads-footer {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.download-invoice-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdfd 0%, #fff8fb 100%);
}

.download-invoice-box-inline {
    margin-top: 0;
    margin-bottom: 12px;
}

.fl-success-amount-box {
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    background: #fff;
}

.fl-success-amount-row,
.fl-success-amount-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: #344054;
}

.fl-success-amount-row + .fl-success-amount-row {
    margin-top: 8px;
}

.fl-success-amount-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e8edf4;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.fl-success-amount-total strong {
    font-size: 1.1em;
}

.download-invoice-copy {
    min-width: 0;
}

.download-invoice-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.download-invoice-text {
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
}

.download-invoice-btn {
    flex-shrink: 0;
}

.view-download-btn {
    margin-top: 0;
}

.download-header .btn,
.download-actions .btn,
.action-row .btn {
    white-space: nowrap;
}

.download-header .btn,
.download-actions .btn {
    min-height: 44px;
}

.fl-success-guest-alert {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #ffd6df !important;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

@media (max-width: 991.98px) {
    .success-container {
        grid-template-columns: 1fr;
    }

    .success-card-left {
        border-right: 0;
        border-bottom: 1px solid #ffe2e8;
    }

    .success-card,
    .fl-success-guest-alert {
        padding: 18px;
    }

    .success-card-left {
        align-items: flex-start;
    }

    .success-title,
    .fl-success-title {
        font-size: 24px;
        max-width: none;
    }

    .download-title {
        font-size: 20px;
    }

    .order-summary-box,
    .fl-success-order-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .fl-success-section {
        padding: 24px 12px;
    }

    .success-card,
    .fl-success-guest-alert {
        padding: 16px;
        border-radius: 18px;
    }

    .success-message,
    .fl-success-copy {
        text-align: left;
    }

    .success-title,
    .fl-success-title {
        white-space: normal;
    }

    .success-container-shell {
        border-radius: 18px;
    }

    .download-header {
        flex-direction: column;
        align-items: stretch;
    }

    .download-item,
    .fl-success-download-item {
        grid-template-columns: 1fr;
    }

    .download-invoice-box {
        flex-direction: column;
        align-items: stretch;
    }

    .action-row,
    .fl-success-action-row,
    .download-actions,
    .fl-success-downloads-footer {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .action-row .btn,
    .download-header .btn,
    .download-actions .btn,
    .fl-success-download-form .btn {
        width: 100%;
    }
}

.fl-success-section {
    padding-bottom: 12px;
}

.success-page + section {
    padding-top: 0 !important;
    padding-bottom: 18px !important;
}

.success-page + section .d-flex.justify-content-between {
    margin-bottom: 12px !important;
}

.success-page + section .h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

@supports selector(:has(*)) {
    .storefront-main:has(.success-page) {
        min-height: auto;
    }

    .storefront-main:has(.success-page) + .store-footer {
        margin-top: 12px !important;
    }

    .storefront-main:has(.success-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.85rem !important;
    }
}

@media (max-width: 575.98px) {
    .fl-success-section {
        padding-top: 16px;
        padding-bottom: 10px;
    }

    .success-page + section {
        padding-bottom: 12px !important;
    }

    .success-page + section .container-fluid.account-downloads-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.account-downloads-title {
    color: #1f2a44;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.account-downloads-subtitle {
    color: #667085;
    font-size: 1.05rem;
    max-width: 48rem;
}

.fl-account-orders-page,
.fl-account-downloads-page {
    padding-top: 2rem !important;
    padding-bottom: 1.25rem !important;
}

.fl-account-orders-page .account-downloads-container,
.fl-account-downloads-page .account-downloads-container {
    max-width: 1280px;
}

.fl-account-orders-page .account-downloads-title,
.fl-account-downloads-page .account-downloads-title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.account-order-invoice-btn {
    min-height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.account-downloads-shell {
    border-radius: 1.35rem;
    overflow: hidden;
}

.account-downloads-table thead th {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1.05rem 0.95rem;
    vertical-align: middle;
}

.account-downloads-table tbody td {
    padding: 1.15rem 0.95rem;
    border-color: #e9edf4;
    vertical-align: middle;
}

.account-downloads-table tbody tr:hover {
    background: rgba(255, 247, 248, 0.5);
}

.account-downloads-product-cell {
    min-width: 22rem;
    max-width: 26rem;
}

.account-downloads-product-title {
    margin-bottom: 0.35rem;
}

.account-downloads-product-link {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-downloads-product-link:hover {
    color: #db2777;
}

.account-downloads-file-name,
.account-downloads-meta-note {
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.45;
}

.account-downloads-usage,
.account-downloads-activity {
    color: #111827;
    font-weight: 600;
}

.account-downloads-action-cell {
    min-width: 15.5rem;
}

.account-downloads-action-btn {
    width: 100%;
    min-height: 2.9rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.account-downloads-action-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
    max-width: 13.75rem;
    margin-left: auto;
}

.account-downloads-review-btn {
    width: 100%;
    min-height: 2.55rem;
    font-weight: 700;
    border-radius: 999px;
    border-color: #d1d5db;
    color: #1f2937;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.account-downloads-review-btn:hover,
.account-downloads-review-btn:focus {
    border-color: rgba(244, 114, 182, 0.35);
    background: #fff7f8;
    color: #be185d;
}

.account-downloads-review-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), rgba(240, 253, 250, 0.98));
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.account-downloads-review-state i {
    font-size: 0.95rem;
}

.secure-download-modal-content {
    border-radius: 1.6rem !important;
    overflow: hidden;
}

.secure-download-modal-header,
.secure-download-modal-body,
.secure-download-modal-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.secure-download-modal-product {
    color: #1f2a44;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.7rem;
}

.secure-download-modal-message {
    color: #667085;
    font-size: 1.02rem;
    line-height: 1.65;
}

.download-review-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
}

.download-review-star-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.download-review-star-label {
    color: #d6d9df;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.18s ease, color 0.18s ease;
}

.download-review-star-label:hover,
.download-review-star-label:hover ~ .download-review-star-label,
.download-review-star-input:checked ~ .download-review-star-label {
    color: #f59e0b;
}

.download-review-star-label:hover {
    transform: translateY(-1px) scale(1.04);
}

.download-review-stars-caption {
    color: #667085;
    font-size: 0.88rem;
    margin-top: 0.45rem;
}

.secure-download-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.secure-download-modal-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 0.7rem;
}

.secure-download-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.secure-download-action-form {
    margin: 0;
}

.secure-download-primary-btn,
.secure-download-request-btn,
.secure-download-secondary-btn {
    min-height: 2.85rem;
    font-weight: 700;
}

.secure-download-primary-btn {
    min-width: 16rem;
}

.secure-download-request-btn {
    min-width: 14.5rem;
}

.fl-pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.fl-pagination-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--fluffimi-muted);
    text-align: center;
}

.fl-pagination-meta span {
    color: var(--fluffimi-ink);
    font-weight: 800;
}

.fl-pagination .page-link {
    min-width: 3rem;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(238, 111, 143, 0.14) !important;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fluffimi-ink);
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.18s ease;
}

.fl-pagination .page-link:hover,
.fl-pagination .page-link:focus {
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: rgba(238, 111, 143, 0.26) !important;
    color: var(--fluffimi-rose-strong);
    transform: translateY(-1px);
}

.fl-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--fluffimi-rose) 0%, var(--fluffimi-peach) 100%);
    border-color: transparent !important;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(238, 111, 143, 0.24) !important;
}

.fl-pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.72);
    color: #b0b8c6;
    border-color: rgba(148, 163, 184, 0.16) !important;
    box-shadow: none !important;
    transform: none;
}

@media (max-width: 991.98px) {
    .account-order-item {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .account-downloads-table thead {
        display: none;
    }

    .account-downloads-table,
    .account-downloads-table tbody,
    .account-downloads-table tr,
    .account-downloads-table td {
        display: block;
        width: 100%;
    }

    .account-downloads-table tbody tr {
        padding: 1rem;
        border-bottom: 1px solid #e9edf4;
    }

    .account-downloads-table tbody td {
        padding: 0.3rem 0;
        border: 0;
        text-align: left !important;
    }

    .account-downloads-action-cell {
        margin-top: 0.65rem;
    }

    .account-downloads-action-btn {
        width: 100%;
    }

    .account-downloads-action-stack {
        max-width: 100%;
        align-items: stretch;
        margin-left: 0;
    }

    .fl-pagination .page-link {
        min-width: 2.7rem;
        min-height: 2.7rem;
        padding: 0.65rem 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .fl-account-profile-page {
        padding-top: 1.15rem !important;
        padding-bottom: 1rem !important;
    }

    .fl-account-profile-page .account-downloads-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .fl-account-profile-page .account-downloads-title {
        font-size: 1.75rem;
        line-height: 1.05;
        margin-bottom: 0.35rem !important;
    }

    .fl-account-profile-page .account-downloads-subtitle {
        max-width: 18rem;
        font-size: 0.88rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fl-account-profile-page .account-summary-grid {
        --bs-gutter-x: 0.6rem;
        --bs-gutter-y: 0.6rem;
        margin-bottom: 1rem !important;
    }

    .fl-account-profile-page .account-summary-grid > [class*="col-"] {
        width: 50%;
        flex: 0 0 auto;
    }

    .fl-account-profile-page .account-summary-grid > [class*="col-"]:last-child {
        width: 100%;
    }

    .fl-account-profile-page .account-stat-card {
        min-height: 82px;
        border-radius: 16px;
        padding: 0.9rem 0.95rem;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
    }

    .fl-account-profile-page .account-stat-label {
        font-size: 0.62rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .fl-account-profile-page .account-stat-value {
        font-size: 1.55rem;
    }

    .fl-account-profile-page .row.g-4 {
        --bs-gutter-y: 0.85rem;
    }

    .fl-account-profile-page .account-panel-card {
        border-radius: 18px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
    }

    .fl-account-profile-page .account-panel-card .card-body {
        padding: 16px !important;
    }

    .fl-account-profile-page .account-panel-head {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .fl-account-profile-page .account-panel-head-stack {
        display: block !important;
    }

    .fl-account-profile-page .account-panel-title {
        font-size: 1.25rem;
        line-height: 1.15;
        margin-bottom: 0.35rem !important;
    }

    .fl-account-profile-page .account-panel-copy {
        max-width: 100%;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .fl-account-profile-page .account-meta-chip {
        min-width: 92px;
        padding: 0.65rem 0.7rem;
        border-radius: 14px;
    }

    .fl-account-profile-page .account-inline-meta-label {
        font-size: 0.58rem;
        line-height: 1.2;
    }

    .fl-account-profile-page .account-inline-meta-value {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .fl-account-profile-page .account-form-grid {
        --bs-gutter-y: 0.75rem;
    }

    .fl-account-profile-page .account-form-grid .form-label {
        font-size: 0.78rem;
        margin-bottom: 0.35rem;
    }

    .fl-account-profile-page .account-form-grid .form-control {
        min-height: 42px;
        border-radius: 12px;
        padding: 0.65rem 0.8rem;
        font-size: 0.86rem;
    }

    .fl-account-profile-page .account-form-actions {
        align-items: stretch !important;
        flex-direction: column;
        gap: 0.65rem !important;
    }

    .fl-account-profile-page .account-inline-hint {
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .fl-account-profile-page .account-profile-save-btn,
    .fl-account-profile-page .account-password-save-btn {
        width: 100%;
        min-height: 44px;
        min-width: 0;
    }

    .fl-account-profile-page .account-mini-stat {
        border-radius: 14px;
        padding: 0.85rem;
    }

    .fl-account-orders-page {
        padding-top: 1.1rem !important;
    }

    .fl-account-orders-page .account-downloads-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .account-downloads-title {
        font-size: 1.7rem;
        line-height: 1.05;
        margin-bottom: 0.45rem !important;
    }

    .account-downloads-subtitle {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .account-order-card {
        border-radius: 18px;
    }

    .account-order-card > .card-body {
        padding: 16px !important;
    }

    .account-order-number {
        font-size: 1rem;
        line-height: 1.25;
    }

    .account-order-total {
        font-size: 1.05rem;
    }

    .account-order-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        text-align: left !important;
    }

    .account-order-summary .d-flex {
        margin-top: 0 !important;
        justify-content: flex-end;
    }

    .account-order-items {
        gap: 0.75rem;
    }

    .account-order-item {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 0.75rem;
        padding: 10px;
        border-radius: 16px;
        text-align: left;
        background: #fff;
    }

    .account-order-item-thumb {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        margin-inline: 0;
    }

    .account-order-item-title {
        font-size: 0.86rem;
        line-height: 1.25;
        -webkit-line-clamp: 3;
    }

    .account-order-item-meta,
    .account-order-meta,
    .account-order-download-meta {
        justify-content: flex-start;
    }

    .account-order-meta {
        gap: 0.25rem 0.6rem;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .account-order-meta span + span::before {
        left: -0.36rem;
    }

    .account-order-item-meta {
        gap: 0.25rem 0.55rem;
        font-size: 0.74rem;
        margin-top: 0.35rem;
    }

    .account-order-download-list {
        margin-top: 0.55rem;
    }

    .account-order-download-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .account-order-download-file {
        font-size: 0.78rem;
        line-height: 1.25;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .account-order-download-meta {
        gap: 0.2rem 0.55rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .account-order-download-actions,
    .account-order-footer-actions {
        justify-content: stretch;
    }

    .account-order-action-stack {
        width: 100%;
        justify-content: stretch;
        gap: 0.45rem;
    }

    .account-order-download-actions .btn,
    .account-order-action-stack .btn,
    .account-order-footer-actions .btn {
        width: 100%;
    }

    .account-order-action-stack .account-downloads-action-btn,
    .account-order-action-stack .account-downloads-review-btn,
    .account-order-action-stack .account-downloads-review-state {
        width: 100%;
        min-width: 0;
    }

    .account-downloads-action-btn,
    .account-downloads-review-btn,
    .account-downloads-review-state {
        min-height: 38px;
        font-size: 0.75rem;
    }

    .account-downloads-review-state {
        padding: 0.45rem 0.75rem;
    }

    .account-order-footer-actions {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
    }

    .secure-download-modal-header,
    .secure-download-modal-body,
    .secure-download-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .secure-download-primary-btn,
    .secure-download-request-btn,
    .secure-download-secondary-btn {
        width: 100%;
    }

    .secure-download-modal-footer {
        justify-content: stretch;
    }
}

.fl-home-page .product-section {
    container-type: inline-size;
}

@container (max-width: 575px) {
    .fl-home-page .product-scroll-grid,
    .fl-home-page .product-scroll-grid.fl-mobile-slider {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 16px 14px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-item,
    .fl-home-page .product-scroll-grid > *:not(.product-scroll-empty) {
        flex: 0 0 74% !important;
        width: auto !important;
        max-width: 74% !important;
        min-width: 0 !important;
        scroll-snap-align: start;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-empty {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .fl-home-page .product-scroll-grid .product-card {
        width: 100% !important;
        min-width: 0 !important;
        border-radius: 18px;
    }

    .fl-home-page .product-scroll-grid .product-image-wrap,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-image-wrap {
        aspect-ratio: 1 / 1.18;
        min-height: 0 !important;
        max-height: none;
    }

    .fl-home-page .product-scroll-grid .product-card-image,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-card-image {
        object-fit: cover;
        object-position: center center;
    }

    .fl-home-page .product-scroll-grid .product-card-body,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-card-body {
        padding: 12px !important;
        min-height: 132px;
    }

    .fl-home-page .product-scroll-grid .product-title,
    .fl-home-page .product-scroll-grid .product-title a {
        font-size: 14px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .fl-home-page .product-scroll-grid .product-rating,
    .fl-home-page .product-scroll-grid .product-rating-copy,
    .fl-home-page .product-scroll-grid .product-sales-copy,
    .fl-home-page .product-scroll-grid .product-discount-copy {
        font-size: 11px;
    }

    .fl-home-page .product-scroll-grid .product-price-main,
    .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-price-main {
        font-size: 16px;
    }

    .fl-home-page .section-header {
        align-items: center;
        flex-direction: row;
        gap: 8px;
        margin-bottom: 14px !important;
    }

    .fl-home-page .section-header .fl-section-title {
        font-size: 20px;
        margin: 0;
    }

    .fl-home-page .section-header .fl-section-link {
        font-size: 11px;
        white-space: nowrap;
    }

    .fl-home-page .product-scroll-grid::-webkit-scrollbar {
        display: none;
    }
}

@container (max-width: 390px) {
    .fl-home-page .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .fl-home-page .product-scroll-grid > .product-scroll-item,
    .fl-home-page .product-scroll-grid > *:not(.product-scroll-empty) {
        flex-basis: 80% !important;
        max-width: 80% !important;
    }
}

@container (max-width: 340px) {
    .fl-home-page .product-scroll-grid > .product-scroll-item,
    .fl-home-page .product-scroll-grid > *:not(.product-scroll-empty) {
        flex-basis: 88% !important;
        max-width: 88% !important;
    }
}

.products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.products-page .products-grid > * {
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0;
}

.products-page .products-grid > .product-grid-empty {
    grid-column: 1 / -1;
}

.products-page .product-card {
    width: 100%;
    min-width: 0;
}

.products-page .product-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .products-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .products-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .products-page .container,
    .products-page .products-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .products-page .browse-toolbar {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .products-page .catalog-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .products-page .catalog-heading-title {
        font-size: 1.8rem;
    }

    .products-page .catalog-heading-copy {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .products-page .browse-toolbar-actions,
    .products-page .browse-sort-dropdown,
    .products-page .browse-sort-trigger,
    .products-page .browse-filter-toggle {
        width: 100%;
    }

    .products-page .browse-sort-trigger,
    .products-page .browse-filter-toggle {
        min-height: 38px;
        justify-content: center;
        font-size: 12px;
    }

    .products-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .products-page .product-card {
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    }

    .products-page .product-image-wrap {
        aspect-ratio: 1 / 1;
        min-height: 0;
        padding: 6px;
        border-radius: 14px 14px 0 0;
    }

    .products-page .product-card-image {
        border-radius: 10px;
    }

    .products-page .product-card-body {
        gap: 4px;
        min-height: 112px;
        padding: 8px;
    }

    .products-page .product-title,
    .products-page .product-title a {
        display: -webkit-box;
        margin-bottom: 4px;
        overflow: hidden;
        font-size: 11.5px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .products-page .product-rating {
        gap: 2px;
        font-size: 9.5px;
        line-height: 1.2;
    }

    .products-page .product-rating-group {
        gap: 3px;
        min-width: 0;
    }

    .products-page .product-rating-stars {
        font-size: 10px;
        letter-spacing: 0;
    }

    .products-page .product-rating-copy,
    .products-page .product-sales-copy,
    .products-page .product-discount-copy {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .products-page .product-sales-copy {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .products-page .product-price {
        margin-top: 4px;
        font-size: 13px;
    }

    .products-page .product-price-values {
        gap: 4px;
        align-items: flex-start;
    }

    .products-page .product-price-main {
        font-size: 13px;
        line-height: 1.1;
    }

    .products-page .product-price-old {
        font-size: 10px;
    }

    .products-page .product-badge,
    .products-page .product-category-pill,
    .products-page .product-digital-pill {
        min-height: 0;
        padding: 4px 6px;
        font-size: 8px;
        line-height: 1;
    }

    .products-page .product-badge-group-top-start {
        top: 6px;
        left: 6px;
    }

    .products-page .product-actions {
        display: none;
    }
}

@media (max-width: 340px) {
    .products-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .products-page .product-card-body {
        padding: 7px;
    }

    .products-page .product-title,
    .products-page .product-title a {
        font-size: 11px;
    }

    .products-page .product-rating-copy {
        display: none;
    }
}

.products-page {
    padding-bottom: 1rem !important;
}

@media (max-width: 767.98px) {
    .page-hero .container.py-5 {
        padding-top: 1.6rem !important;
        padding-bottom: 1.35rem !important;
    }

    .page-hero .display-6 {
        font-size: 1.7rem;
        margin-bottom: 0.45rem !important;
    }

    .page-hero .lead {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .products-page {
        padding-top: 1rem !important;
        padding-bottom: 0.25rem !important;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.products-page) {
        min-height: auto;
    }

    .storefront-main:has(.products-page) + .store-footer {
        margin-top: 0 !important;
    }

    .storefront-main:has(.products-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.5rem !important;
    }
}

@media (max-width: 767.98px) {
    @supports selector(:has(*)) {
        .storefront-main:has(.products-page) + .store-footer .container-fluid.py-5 {
            padding-top: 0.25rem !important;
        }
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer,
    .storefront-main:has(.products-page) + .store-footer,
    .storefront-main:has(.cart-page) + .store-footer {
        margin-top: 14px !important;
    }

    .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5,
    .storefront-main:has(.products-page) + .store-footer .container-fluid.py-5,
    .storefront-main:has(.cart-page) + .store-footer .container-fluid.py-5 {
        padding-top: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer,
        .storefront-main:has(.products-page) + .store-footer,
        .storefront-main:has(.cart-page) + .store-footer {
            margin-top: 10px !important;
        }

        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5,
        .storefront-main:has(.products-page) + .store-footer .container-fluid.py-5,
        .storefront-main:has(.cart-page) + .store-footer .container-fluid.py-5 {
            padding-top: 0.85rem !important;
        }
    }
}

.fl-home-page .fl-home-newsletter-section {
    padding-bottom: 14px !important;
}

@media (max-width: 575.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-bottom: 12px !important;
    }
}

.fl-home-page .fl-home-newsletter-section {
    padding-bottom: 24px !important;
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer {
        margin-top: 16px !important;
    }
}

@media (max-width: 575.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-bottom: 18px !important;
    }

    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer {
            margin-top: 12px !important;
        }
    }
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 9999;
    width: min(88vw, 360px);
    height: 100dvh;
    padding: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fffaf8;
    border-left: 1px solid rgba(243, 227, 231, 0.92);
    border-radius: 22px 0 0 22px;
    box-shadow: -28px 0 60px rgba(15, 23, 42, 0.22);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(243, 227, 231, 0.75);
}

.mobile-drawer-brand {
    min-width: 0;
}

.mobile-drawer-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.mobile-drawer-logo {
    width: auto;
    height: 34px;
    max-width: 118px;
    object-fit: contain;
}

.mobile-drawer-title {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mobile-menu-subtitle {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.3;
}

.mobile-drawer-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border: 1px solid rgba(243, 227, 231, 0.9);
    border-radius: 999px;
    background: #fff;
    color: #111827;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:focus {
    background: #fff1f4;
    color: #f43f5e;
    transform: translateY(-1px);
}

.mobile-drawer-body {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 91px);
    padding: 14px 0 0;
}

.mobile-menu-search {
    margin: 0;
}

.mobile-drawer .hero-search-shell-mobile {
    grid-template-columns: minmax(0, 1fr) 40px;
    min-height: 44px;
    padding: 3px;
    border: 1px solid rgba(243, 227, 231, 0.95);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.mobile-drawer .hero-search-input {
    min-height: 38px;
    padding-left: 12px;
    font-size: 13px;
}

.mobile-drawer .hero-search-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 999px;
}

.mobile-menu-section {
    margin-top: 18px;
}

.mobile-menu-label {
    margin: 0 0 9px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.mobile-menu-list {
    display: grid;
    gap: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #f3e3e7;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mobile-menu-link > i:first-child {
    width: 20px;
    flex: 0 0 20px;
    color: #f43f5e;
    text-align: center;
    font-size: 14px;
}

.mobile-menu-link span {
    min-width: 0;
    flex: 1;
}

.mobile-menu-logout-form {
    margin: 0;
}

.mobile-menu-button {
    width: 100%;
    appearance: none;
    text-align: left;
    font-family: inherit;
}

.mobile-menu-chevron {
    flex: 0 0 auto;
    color: #cbd5e1 !important;
    font-size: 11px !important;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    border-color: #ffd4dd;
    background: #fff1f4;
    color: #f43f5e;
    transform: translateX(2px);
}

.mobile-menu-count {
    min-width: 24px !important;
    flex: 0 0 auto !important;
    padding: 3px 7px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 18px;
}

.mobile-menu-selectors {
    display: grid;
    gap: 8px;
}

.mobile-menu-select {
    min-height: 42px;
    border: 1px solid #f3e3e7;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.mobile-menu-select:hover,
.mobile-menu-select:focus {
    border-color: #ffd4dd;
    background: #fff1f4;
    color: #111827;
}

.mobile-menu-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    color: #f43f5e;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-menu-copyright {
    padding-bottom: 4px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 360px) {
    .mobile-drawer {
        width: 100vw;
        padding: 16px;
        border-radius: 0;
    }

    .mobile-menu-link {
        min-height: 42px;
        padding: 9px 11px;
        font-size: 13px;
    }

    .mobile-drawer-body {
        min-height: calc(100dvh - 87px);
    }
}

@media (max-width: 390px) {
    .pdp-sticky-buybar {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 8px;
        padding: 9px;
        border-radius: 16px;
    }

    .pdp-sticky-price {
        font-size: 0.98rem;
    }

    .pdp-sticky-actions {
        gap: 6px;
    }

    .pdp-sticky-actions .pdp-primary-btn {
        min-height: 40px;
        padding: 0.62rem 0.65rem;
        font-size: 0.76rem;
    }
}

@media (min-width: 768px) {
    .store-footer-shell > .container {
        display: grid;
        grid-template-columns: minmax(360px, 0.95fr) minmax(0, 2fr);
        gap: clamp(3rem, 6vw, 6rem);
        align-items: start;
    }

    .store-footer-top {
        display: block !important;
        grid-template-columns: none !important;
        width: 100%;
    }

    .store-footer-brand-card {
        width: 100%;
        max-width: 380px;
    }

    .store-footer-copy {
        max-width: 360px;
    }

    .store-footer-social {
        flex-wrap: nowrap;
    }
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.pdp-related-grid > * {
    min-width: 0;
}

.pdp-related-empty {
    grid-column: 1 / -1;
}

@media (max-width: 1199px) {
    .pdp-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pdp-related-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 10px 12px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .pdp-related-grid::-webkit-scrollbar {
        display: none;
    }

    .pdp-related-grid > .pdp-related-item {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        scroll-snap-align: start;
    }

    .pdp-related-grid > .pdp-related-empty {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pdp-related-grid .product-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .pdp-related-grid .product-image-wrap {
        aspect-ratio: 4 / 5;
        min-height: 210px;
        padding: 0;
        border-radius: 14px 14px 0 0;
    }

    .pdp-related-grid .product-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 0;
    }

    .pdp-related-grid .product-card-body {
        gap: 4px;
        padding: 8px;
    }

    .pdp-related-grid .product-title,
    .pdp-related-grid .product-title a {
        font-size: 11.5px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .pdp-related-grid .product-rating,
    .pdp-related-grid .product-rating-copy,
    .pdp-related-grid .product-sales-copy,
    .pdp-related-grid .product-discount-copy {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .pdp-related-grid .product-rating-stars {
        font-size: 10px;
        letter-spacing: 0;
    }

    .pdp-related-grid .product-price-main {
        font-size: 13px;
        line-height: 1.1;
    }

    .pdp-related-grid .product-price-old {
        font-size: 10px;
    }

    .pdp-related-grid .product-badge {
        min-height: 0;
        padding: 4px 6px;
        font-size: 8px;
    }
}

@media (max-width: 767.98px) {
    .pdp-info-stack {
        gap: 10px;
    }

    .pdp-title {
        font-size: 17px;
        line-height: 1.28;
        -webkit-line-clamp: 2;
    }

    .pdp-rating-row {
        gap: 0.4rem 0.55rem;
    }

    .pdp-rating-text {
        font-size: 0.82rem;
    }

    .pdp-price-block {
        gap: 6px;
    }

    .pdp-price-row {
        gap: 10px;
    }

    .pdp-price-main {
        font-size: 1.55rem;
    }

    .pdp-benefit-line {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .pdp-cta-stack .pdp-action-form {
        display: none;
    }

    .pdp-gallery-reviews {
        grid-column: auto;
        margin-top: 4px;
    }
}

.store-footer .storefront-brand-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
}

.store-footer .storefront-brand-footer .storefront-brand-media,
.store-footer .storefront-brand-footer .storefront-brand-copy {
    display: flex !important;
    width: 100% !important;
}

.store-footer .storefront-brand-footer .storefront-brand-copy {
    align-items: flex-start !important;
}

.store-footer .storefront-brand-footer .brand-tagline {
    display: block !important;
    margin: 0 !important;
}

@media (max-width: 575px) {
    .store-footer .storefront-brand-footer {
        align-items: center !important;
    }

    .store-footer .storefront-brand-footer .storefront-brand-media,
    .store-footer .storefront-brand-footer .storefront-brand-copy {
        justify-content: center !important;
    }

    .store-footer .storefront-brand-footer .storefront-brand-copy {
        align-items: center !important;
    }
}

.main-header .storefront-brand {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 5px !important;
    text-align: center;
}

.main-header .storefront-brand .storefront-brand-media,
.main-header .storefront-brand .storefront-brand-copy {
    display: flex !important;
    justify-content: center;
    width: 100%;
}

.main-header .storefront-brand .storefront-brand-copy {
    align-items: center !important;
}

.main-header .storefront-brand .brand-tagline {
    display: block !important;
    margin: 0 !important;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.main-header .storefront-brand .storefront-brand-logo {
    object-position: center;
}

@media (min-width: 992px) {
    .header-brand-wrap {
        display: flex;
        justify-content: center;
        min-width: 180px;
    }
}

@media (max-width: 575px) {
    .main-header .storefront-brand .brand-tagline {
        font-size: 0.58rem;
        letter-spacing: 0.07em;
    }

    .main-header .storefront-brand-mobile .storefront-brand-logo {
        height: 2.15rem;
        max-width: 8rem;
    }
}

@media (max-width: 575.98px) {
    .cart-page {
        padding-top: 1.5rem !important;
        padding-bottom: 6.5rem !important;
    }

    .cart-page .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cart-page h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .cart-page .table-responsive {
        overflow: visible;
    }

    .cart-page table,
    .cart-page tbody,
    .cart-page tr,
    .cart-page td {
        display: block;
        width: 100%;
    }

    .cart-page thead {
        display: none;
    }

    .cart-page tbody {
        display: grid;
        gap: 12px;
        padding: 0;
        background: transparent;
    }

    .cart-page tbody tr {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(243, 227, 231, 0.95);
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
    }

    .cart-page tbody td {
        padding: 0 !important;
        border: 0 !important;
    }

    .cart-page .cart-product-cell,
    .cart-page .cart-remove-cell {
        grid-column: 1 / -1;
    }

    .cart-page .cart-product-cell > .d-flex {
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .cart-page .cart-thumb {
        width: 82px;
        height: 82px;
        border-radius: 16px !important;
        box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.75);
    }

    .cart-page .cart-product-title,
    .cart-page .cart-product-title a {
        font-size: 13px;
        line-height: 1.28;
        -webkit-line-clamp: 2;
    }

    .cart-page .cart-product-copy .small {
        font-size: 11px;
        line-height: 1.3;
    }

    .cart-page .cart-price-cell,
    .cart-page .cart-qty-cell,
    .cart-page .cart-total-cell {
        display: grid;
        gap: 6px;
        align-content: center;
        min-height: 74px;
        padding: 10px 8px !important;
        border: 1px solid rgba(226, 232, 240, 0.95) !important;
        border-radius: 15px;
        background: #fff;
        color: #111827;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.03);
    }

    .cart-page .cart-price-cell::before,
    .cart-page .cart-qty-cell::before,
    .cart-page .cart-total-cell::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1;
        text-transform: uppercase;
    }

    .cart-page .cart-qty-input {
        width: 34px;
        height: 32px;
        min-height: 32px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 14px;
        font-weight: 800;
        box-shadow: none;
        appearance: textfield;
        -moz-appearance: textfield;
    }

    .cart-page .cart-qty-input::-webkit-outer-spin-button,
    .cart-page .cart-qty-input::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: none;
    }

    .cart-page .cart-qty-stepper {
        display: grid;
        grid-template-columns: 28px minmax(28px, 1fr) 28px;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 36px;
        border: 1px solid #dbe5f1;
        border-radius: 999px;
        background: #f8fafc;
        overflow: hidden;
    }

    .cart-page .cart-qty-btn {
        width: 28px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #64748b;
        font-size: 16px;
        font-weight: 900;
        line-height: 1;
    }

    .cart-page .cart-qty-btn:hover,
    .cart-page .cart-qty-btn:focus {
        background: #fff1f4;
        color: #f43f5e;
    }

    .cart-page .cart-remove-cell {
        text-align: left !important;
    }

    .cart-page .cart-remove-cell .btn {
        width: 100%;
        min-height: 40px;
        border-radius: 999px;
        font-weight: 800;
        background: #fff;
    }

    .cart-page .cart-coupon-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        flex-wrap: nowrap;
    }

    .cart-page .cart-coupon-group .input-group-text {
        display: none;
    }

    .cart-page .cart-coupon-input,
    .cart-page .cart-coupon-group .btn {
        min-height: 42px;
        border-radius: 14px !important;
    }

    .cart-page .cart-coupon-input {
        width: 100%;
        min-width: 0;
        flex: initial;
        padding-inline: 12px;
    }

    .cart-page .cart-coupon-group .btn {
        min-width: 64px;
        width: auto;
        flex: 0 0 auto;
        padding-inline: 14px;
    }

    .cart-page .spec-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .cart-page .cart-checkout-btn {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1050;
        width: auto !important;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px !important;
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
    }
}

.cart-more-products {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(243, 227, 231, 0.9);
    border-radius: 22px;
    background: rgba(255, 250, 248, 0.92);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.cart-more-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-more-products-kicker {
    margin: 0 0 2px;
    color: #f43f5e;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-more-products-header h2 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.15;
}

.cart-more-products-header a {
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.cart-more-products-scroll {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 2px 16px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.cart-more-products-scroll::-webkit-scrollbar {
    display: none;
}

.cart-more-product-item {
    flex: 0 0 78%;
    max-width: 78%;
    min-width: 0;
    scroll-snap-align: start;
}

.cart-more-products .product-card {
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.cart-more-products .product-image-wrap {
    aspect-ratio: 1 / 1;
}

.cart-more-products .product-card-body {
    padding: 10px;
}

.cart-more-products .product-title {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 7px;
    -webkit-line-clamp: 2;
}

.cart-more-products .product-rating {
    gap: 4px;
    font-size: 10px;
}

.cart-more-products .product-price-main {
    font-size: 15px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .cart-more-product-item {
        flex-basis: 34%;
        max-width: 34%;
    }
}

@media (min-width: 992px) {
    .cart-more-product-item {
        flex-basis: 82%;
        max-width: 82%;
    }
}

@media (max-width: 575.98px) {
    .cart-more-products {
        margin-top: 14px;
        padding: 14px;
        border-radius: 20px;
    }

    .cart-more-products-header {
        align-items: center;
        margin-bottom: 10px;
    }

    .cart-more-products-header h2 {
        font-size: 18px;
    }

    .cart-more-products-header a {
        font-size: 11px;
    }

    .cart-more-products-scroll {
        gap: 12px;
        margin-inline: -14px;
        padding: 2px 14px 10px;
    }

    .cart-more-product-item {
        flex-basis: 48%;
        max-width: 48%;
    }

    .cart-more-products .product-card {
        border-radius: 14px;
    }

    .cart-more-products .product-card-body {
        padding: 8px;
    }

    .cart-more-products .product-title {
        font-size: 11.5px;
        line-height: 1.25;
    }

    .cart-more-products .product-rating,
    .cart-more-products .product-rating-copy,
    .cart-more-products .product-sales-copy {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .cart-more-products .product-price-main {
        font-size: 13px;
    }
}

@media (max-width: 340px) {
    .cart-more-product-item {
        flex-basis: 56%;
        max-width: 56%;
    }
}

.cart-page .cart-more-products {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.cart-page .cart-more-products-scroll {
    margin-inline: 0;
    padding: 2px 0 8px;
}

@media (max-width: 575.98px) {
    .cart-page {
        padding-bottom: 4.75rem !important;
    }

    .cart-page .cart-more-products {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .cart-page .cart-more-products-scroll {
        margin-inline: 0;
        padding: 2px 0 6px;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.cart-page) {
        min-height: auto;
    }
}

.cart-page {
    padding-bottom: 1.25rem !important;
}

.cart-page .cart-more-products {
    padding-bottom: 0;
}

@media (max-width: 575.98px) {
    .cart-page {
        padding-bottom: 3.25rem !important;
    }

    .cart-page .row.g-4 {
        --bs-gutter-y: 1rem;
    }

    .cart-page .cart-more-products-scroll {
        padding-bottom: 0;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.cart-page) + .store-footer {
        margin-top: 0 !important;
    }
}

.cart-page .cart-more-products-header {
    margin-bottom: 8px;
}

.cart-page .cart-more-products-kicker {
    margin-bottom: 0;
}

.cart-page .cart-more-products-scroll {
    align-items: stretch;
}

.cart-page .cart-more-product-item {
    display: flex;
}

.cart-page .cart-more-product-item .product-card {
    width: 100%;
}

.cart-page .cart-more-products-full .product-card {
    box-shadow: none !important;
}

@media (max-width: 575.98px) {
    .cart-page {
        padding-bottom: 0.75rem !important;
    }

    .cart-page .cart-more-products {
        margin-top: 10px;
    }

    .cart-page .cart-more-products-header {
        margin-bottom: 6px;
    }

    .cart-page .cart-more-products-scroll {
        padding-bottom: 2px;
    }

    .cart-page .cart-checkout-btn {
        bottom: max(8px, env(safe-area-inset-bottom));
    }
}

.cart-page .cart-qty-stepper {
    display: inline-grid;
    grid-template-columns: 34px minmax(42px, 54px) 34px;
    align-items: center;
    min-height: 38px;
    border: 1px solid #dbe5f1;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.cart-page .cart-qty-btn {
    width: 34px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #f8fafc;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    transition: background 0.18s ease, color 0.18s ease;
}

.cart-page .cart-qty-btn:hover,
.cart-page .cart-qty-btn:focus {
    background: #fff1f4;
    color: #f43f5e;
}

.cart-page .cart-qty-input {
    width: 54px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 0;
    border-left: 1px solid #e5edf6;
    border-right: 1px solid #e5edf6;
    border-radius: 0;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    box-shadow: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-page .cart-qty-input:focus {
    box-shadow: inset 0 0 0 2px rgba(244, 63, 94, 0.12);
}

.cart-page .cart-qty-input::-webkit-outer-spin-button,
.cart-page .cart-qty-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

@media (max-width: 575.98px) {
    .cart-page .cart-qty-stepper {
        grid-template-columns: 28px minmax(28px, 1fr) 28px;
        width: 100%;
        min-height: 36px;
        box-shadow: none;
    }

    .cart-page .cart-qty-btn {
        width: 28px;
        height: 34px;
    }

    .cart-page .cart-qty-input {
        width: 34px;
        height: 32px;
        min-height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .pdp-gallery .pdp-stage {
        order: 1;
    }

    .pdp-gallery .pdp-thumbs {
        order: 2;
        margin-top: 10px;
        padding-top: 2px;
        padding-bottom: 6px;
    }
}

.fl-home-page .fl-home-reviews-section {
    padding-top: clamp(1.25rem, 3vw, 2rem) !important;
    padding-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.fl-home-page .fl-home-seo-section {
    padding: 0.4rem 0 clamp(1rem, 2.4vw, 1.5rem);
}

.fl-home-page .fl-home-seo-content {
    padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.6vw, 1.75rem);
    border: 1px solid rgba(244, 203, 210, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    color: #344054;
    font-size: 0.98rem;
    line-height: 1.65;
}

.fl-home-page .fl-home-seo-content h2,
.fl-home-page .fl-home-seo-content h3,
.fl-home-page .fl-home-seo-content h4 {
    margin: 0 0 0.65rem;
    color: #142033;
    font-weight: 800;
    line-height: 1.25;
}

.fl-home-page .fl-home-seo-content h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.fl-home-page .fl-home-seo-content h3 {
    font-size: 1.12rem;
}

.fl-home-page .fl-home-seo-content p,
.fl-home-page .fl-home-seo-content ul,
.fl-home-page .fl-home-seo-content ol {
    margin: 0 0 0.85rem;
}

.fl-home-page .fl-home-seo-content > :last-child {
    margin-bottom: 0;
}

.fl-home-page .fl-home-reviews-head {
    margin-bottom: 1rem !important;
}

.fl-home-page .fl-home-reviews-subtitle {
    margin-top: 0.35rem;
    max-width: 38rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .fl-home-page .fl-home-reviews-section {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    .fl-home-page .fl-home-seo-content {
        border-radius: 18px;
        padding: 1rem;
    }

    .fl-home-page .fl-home-reviews-section {
        padding-top: 0.75rem !important;
    }

    .fl-home-page .fl-home-reviews-head {
        margin-bottom: 0.85rem !important;
    }
}

.fl-home-page .fl-home-newsletter-section {
    padding-top: clamp(1rem, 2.4vw, 1.75rem) !important;
    padding-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.fl-home-page .fl-home-newsletter-section .fl-home-cta {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

@media (max-width: 991.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-top: 0.75rem !important;
    }
}

@media (max-width: 575.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-top: 0.5rem !important;
        padding-bottom: 1.75rem !important;
    }

    .fl-home-page .fl-home-newsletter-section .fl-home-cta {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer {
        margin-top: 0 !important;
    }

    .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
        padding-top: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 1.25rem !important;
        }
    }
}

.fl-home-page .fl-home-newsletter-section {
    padding-bottom: 0.85rem !important;
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.85rem !important;
    }
}

@media (max-width: 991.98px) {
    .fl-home-page .fl-home-newsletter-section {
        padding-bottom: 0.65rem !important;
    }

    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 0.75rem !important;
        }
    }
}

.fl-home-page .fl-home-newsletter-section {
    padding-bottom: 0 !important;
}

@supports selector(:has(*)) {
    .storefront-main:has(.fl-home-page) + .store-footer {
        margin-top: 0 !important;
    }

    .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
        padding-top: 0.5rem !important;
    }
}

@media (max-width: 991.98px) {
    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 0.35rem !important;
        }
    }
}

@media (max-width: 575.98px) {
    @supports selector(:has(*)) {
        .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 0.25rem !important;
        }
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .store-footer {
        text-align: left;
    }

    .store-footer .container-fluid.py-5 {
        padding-top: 2.2rem !important;
        padding-bottom: 2rem !important;
    }

    .store-footer-shell > .container {
        display: block !important;
        padding-inline: clamp(1.5rem, 4vw, 2.5rem) !important;
    }

    .store-footer-top {
        display: block !important;
        width: 100%;
        margin-bottom: 1.75rem;
    }

    .store-footer-brand-card {
        max-width: 520px !important;
        gap: 0.85rem;
    }

    .store-footer-copy {
        max-width: 520px !important;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .store-footer-links-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(1.25rem, 5vw, 3rem);
        width: 100%;
        margin-top: 0;
    }

    .store-footer-column {
        min-width: 0;
        gap: 0.65rem;
    }

    .store-footer-accordion-panel {
        max-height: none !important;
        overflow: visible;
    }

    .store-footer-accordion-panel .list-unstyled {
        gap: 0.45rem !important;
    }

    .store-footer-heading-toggle {
        pointer-events: none;
    }

    .footer-link {
        display: inline-block;
        font-size: 0.9rem;
        line-height: 1.35;
        overflow-wrap: normal;
        word-break: normal;
    }

    .footer-meta-row {
        margin-top: 1.5rem;
    }
}

.cart-page .cart-more-products-full {
    width: 100%;
    margin-top: 18px;
}

.cart-page .cart-more-products-full .cart-more-products-scroll {
    gap: 16px;
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.cart-page .cart-more-products-full .cart-more-product-item {
    flex: 0 0 clamp(220px, 24%, 300px);
    max-width: clamp(220px, 24%, 300px);
}

@media (max-width: 991.98px) {
    .cart-page .cart-more-products-full .cart-more-product-item {
        flex-basis: 32%;
        max-width: 32%;
    }
}

@media (max-width: 575.98px) {
    .cart-page .cart-more-products-full {
        margin-top: 14px;
    }

    .cart-page .cart-more-products-full .cart-more-products-scroll {
        gap: 12px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .cart-page .cart-more-products-full .cart-more-product-item {
        flex-basis: 48%;
        max-width: 48%;
    }
}

@media (max-width: 340px) {
    .cart-page .cart-more-products-full .cart-more-product-item {
        flex-basis: 56%;
        max-width: 56%;
    }
}

/* Global storefront page-end spacing. Keeps short pages from creating large blank
   bands before the footer while preserving a small visual pause. */
.storefront-main {
    min-height: auto !important;
}

.store-footer.mt-5 {
    margin-top: 34px !important;
}

.store-footer .container-fluid.py-5 {
    padding-top: 1.35rem !important;
}

.storefront-main > section:last-child:not(.pdp-page):not(.fl-home-newsletter-section):not(.success-page) {
    padding-bottom: 1.25rem !important;
}

.storefront-main > .page-hero + section:last-child {
    padding-top: 1.5rem !important;
    padding-bottom: 1.25rem !important;
}

@media (max-width: 767.98px) {
    .store-footer.mt-5 {
        margin-top: 22px !important;
    }

    .store-footer .container-fluid.py-5 {
        padding-top: 1.15rem !important;
    }

    .storefront-main > section:last-child:not(.pdp-page):not(.fl-home-newsletter-section):not(.success-page) {
        padding-bottom: 1rem !important;
    }

    .storefront-main > .page-hero + section:last-child {
        padding-top: 1.15rem !important;
        padding-bottom: 1rem !important;
    }
}

/* Final homepage newsletter/footer separation. Keep this at the end so it wins
   over older homepage spacing overrides above. */
.storefront-main .fl-home-page .fl-home-newsletter-section {
    padding-bottom: 44px !important;
}

.storefront-main .fl-home-page .fl-home-newsletter-section .fl-home-cta {
    margin-bottom: 0 !important;
}

@supports selector(:has(*)) {
    body .storefront-main:has(.fl-home-page) + .store-footer.mt-5 {
        margin-top: 0 !important;
    }

    body .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
        padding-top: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .storefront-main .fl-home-page .fl-home-newsletter-section {
        padding-bottom: 28px !important;
    }

    @supports selector(:has(*)) {
        body .storefront-main:has(.fl-home-page) + .store-footer .container-fluid.py-5 {
            padding-top: 1.35rem !important;
        }
    }
}

/* Final mobile product carousel image sizing. Keeps product art large and
   edge-to-edge like the requested mobile reference. */
@media (max-width: 575.98px) {
    body .fl-home-page .product-scroll-grid .product-card {
        overflow: hidden !important;
    }

    body .fl-home-page .product-scroll-grid .product-image-wrap,
    body .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-image-wrap {
        aspect-ratio: 4 / 5 !important;
        min-height: 230px !important;
        padding: 0 !important;
        border-radius: 18px 18px 0 0 !important;
    }

    body .fl-home-page .product-scroll-grid .product-card-image,
    body .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 390px) {
    body .fl-home-page .product-scroll-grid .product-image-wrap,
    body .fl-home-page .product-scroll-grid .fl-home-showcase-item .product-image-wrap {
        min-height: 220px !important;
    }
}

/* Final recommendation-carousel image consistency across cart and product pages. */
@media (max-width: 575.98px) {
    body .cart-more-products .product-card,
    body .pdp-related-grid .product-card {
        overflow: hidden !important;
        border-radius: 14px !important;
    }

    body .cart-more-products .product-image-wrap,
    body .pdp-related-grid .product-image-wrap {
        aspect-ratio: 4 / 5 !important;
        min-height: 210px !important;
        padding: 0 !important;
        border-radius: 14px 14px 0 0 !important;
    }

    body .cart-more-products .product-card-image,
    body .pdp-related-grid .product-card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 390px) {
    body .cart-more-products .product-image-wrap,
    body .pdp-related-grid .product-image-wrap {
        min-height: 200px !important;
    }
}

/* Keep the offer announcement visible on responsive headers. */
@media (max-width: 991.98px) {
    body .announcement-bar {
        display: block !important;
        position: relative;
        z-index: 30;
        border-bottom: 1px solid rgba(251, 113, 133, 0.16) !important;
    }

    body .announcement-bar .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    body .announcement-bar-inner {
        min-height: auto !important;
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px 8px;
        padding: 7px 0;
    }

    body .announcement-offer {
        flex: 1 1 100%;
        justify-content: center;
        gap: 5px;
        font-size: 10px;
        line-height: 1.25;
        text-align: center;
    }

    body .announcement-copy-code {
        min-height: 26px;
        padding: 4px 7px 4px 9px;
        font-size: 10px;
    }

    body .announcement-copy-code small {
        min-height: 18px;
        padding: 0 6px;
        font-size: 8px;
    }

    body .announcement-timer {
        gap: 3px;
        padding: 3px 5px;
        font-size: 9px;
        box-shadow: none;
    }

    body .announcement-time-chip {
        min-width: 24px;
        padding: 2px 4px;
    }

    body .announcement-time-chip strong {
        font-size: 10px;
    }

    body .announcement-time-chip em {
        font-size: 8px;
    }
}

@media (max-width: 360px) {
    body .announcement-offer {
        font-size: 9.5px;
    }

    body .announcement-timer {
        width: 100%;
        justify-content: center;
    }
}

/* Final tablet hero composition: keep the admin square image balanced beside the copy. */
@media (min-width: 768px) and (max-width: 1199.98px) {
    body .fl-home-page .fl-home-hero-shell {
        padding: 1.55rem 1.75rem !important;
        border-radius: 24px;
    }

    body .fl-home-page .fl-home-hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(230px, 300px) !important;
        gap: 22px !important;
        align-items: center !important;
        justify-items: stretch !important;
    }

    body .fl-home-page .fl-home-copy-col,
    body .fl-home-page .fl-home-visual-col {
        width: auto !important;
        min-width: 0;
    }

    body .fl-home-page .fl-home-copy-stack {
        max-width: 430px !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.75rem !important;
    }

    body .fl-home-page .fl-home-kicker {
        align-self: flex-start !important;
        font-size: 0.58rem !important;
    }

    body .fl-home-page .fl-home-title {
        max-width: 13ch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: clamp(28px, 3.25vw, 34px) !important;
        line-height: 1.04 !important;
    }

    body .fl-home-page .fl-home-copy {
        max-width: 380px !important;
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }

    body .fl-home-page .fl-home-actions {
        width: auto !important;
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    body .fl-home-page .fl-home-actions .btn {
        min-height: 38px !important;
        padding: 0.72rem 1rem !important;
        font-size: 0.72rem !important;
    }

    body .fl-home-page .fl-trust-row {
        width: 100%;
        max-width: 390px;
        gap: 10px !important;
    }

    body .fl-home-page .fl-trust-item {
        min-height: 58px;
        padding: 0.65rem 0.65rem !important;
    }

    body .fl-home-page .fl-home-visual-col {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    body .fl-home-page .fl-hero-visual {
        width: min(100%, 300px) !important;
        max-width: 300px !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    body .fl-home-page .fl-mockup-stack,
    body .fl-home-page .fl-mockup-stack-single {
        width: min(100%, 300px) !important;
        min-height: 0 !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto !important;
    }

    body .fl-home-page .fl-mockup-card-single {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 22px !important;
    }
}

@media (min-width: 768px) and (max-width: 860px) {
    body .fl-home-page .fl-home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 250px) !important;
        gap: 18px !important;
    }

    body .fl-home-page .fl-hero-visual,
    body .fl-home-page .fl-mockup-stack,
    body .fl-home-page .fl-mockup-stack-single {
        width: min(100%, 250px) !important;
        max-width: 250px !important;
    }
}

.fl-404-page {
    padding: 42px 0 56px;
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 228, 235, 0.9), transparent 34%),
        radial-gradient(circle at 84% 4%, rgba(255, 241, 224, 0.8), transparent 32%),
        linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}

.fl-404-container {
    max-width: 1180px;
}

.fl-404-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 28px;
}

.fl-404-copy,
.fl-404-panel {
    border: 1px solid rgba(244, 190, 198, 0.6);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.fl-404-copy {
    padding: clamp(26px, 4vw, 46px);
}

.fl-404-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #fff1f4;
    color: #e11d48;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.fl-404-copy h1 {
    max-width: 10ch;
    margin: 0 0 12px;
    color: #121a2e;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: 0;
}

.fl-404-copy p {
    max-width: 660px;
    margin: 0 0 24px;
    color: #526174;
    font-size: 1.05rem;
    line-height: 1.7;
}

.fl-404-search {
    display: flex;
    align-items: center;
    width: min(100%, 680px);
    min-height: 58px;
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, 0.98);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.fl-404-search i {
    flex: 0 0 auto;
    padding-left: 22px;
    color: #f43f5e;
    font-size: 1.1rem;
}

.fl-404-search input {
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: #111827;
    font-size: 1rem;
}

.fl-404-search button {
    align-self: stretch;
    border: 0;
    background: #20252c;
    color: #fff;
    padding: 0 30px;
    font-weight: 900;
}

.fl-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fl-404-primary,
.fl-404-secondary,
.fl-404-products-head a,
.fl-404-panel-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    font-weight: 850;
    text-decoration: none;
}

.fl-404-primary {
    background: linear-gradient(135deg, #fb7185 0%, #ff936f 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(251, 113, 133, 0.24);
}

.fl-404-secondary,
.fl-404-products-head a,
.fl-404-panel-head a {
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    color: #172033;
}

.fl-404-panel {
    padding: 26px;
}

.fl-404-panel-head,
.fl-404-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.fl-404-panel-head span,
.fl-404-products-head span {
    color: #e11d48;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-404-panel-head a,
.fl-404-products-head a {
    min-height: 34px;
    padding: 0.45rem 0.85rem;
    font-size: 0.86rem;
}

.fl-404-panel h2,
.fl-404-products-head h2 {
    margin: 8px 0 0;
    color: #151d2f;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.15;
}

.fl-404-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
}

.fl-404-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #fffaf8);
    color: #172033;
    padding: 0.85rem 1rem;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fl-404-category-link:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 113, 133, 0.34);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
    color: #172033;
}

.fl-404-category-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 850;
}

.fl-404-category-link small {
    flex: 0 0 auto;
    min-width: 30px;
    border-radius: 999px;
    background: #fff1f4;
    color: #be123c;
    padding: 0.2rem 0.5rem;
    text-align: center;
    font-weight: 900;
}

.fl-404-products-head {
    margin: 12px 0 16px;
}

.fl-404-products.products-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.fl-404-products .product-card {
    border-radius: 18px;
}

.fl-404-products .product-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 18px 18px 0 0;
}

.fl-404-products .product-card-body {
    gap: 5px;
    min-height: 112px;
    padding: 10px 12px 12px;
}

.fl-404-products .product-title,
.fl-404-products .product-title a {
    font-size: 13px;
    line-height: 1.25;
    -webkit-line-clamp: 2;
}

.fl-404-products .product-price-main {
    font-size: 15px;
}

.fl-404-products .product-rating-copy,
.fl-404-products .product-sales-copy,
.fl-404-products .product-discount-copy {
    font-size: 10.5px;
}

.fl-404-products .product-badge {
    min-height: 24px;
    padding: 0.3rem 0.55rem;
    font-size: 10px;
}

@media (max-width: 1199px) {
    .fl-404-products.products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .fl-404-page {
        padding: 28px 0 40px;
    }

    .fl-404-hero {
        grid-template-columns: 1fr;
    }

    .fl-404-copy h1 {
        max-width: 100%;
    }

    .fl-404-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .fl-404-page {
        padding: 18px 0 28px;
    }

    .fl-404-copy,
    .fl-404-panel {
        border-radius: 20px;
        padding: 18px;
    }

    .fl-404-copy h1 {
        font-size: 34px;
    }

    .fl-404-copy p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .fl-404-search {
        min-height: 52px;
        border-radius: 18px;
    }

    .fl-404-search i {
        padding-left: 16px;
    }

    .fl-404-search input {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .fl-404-search button {
        padding: 0 16px;
    }

    .fl-404-actions > * {
        flex: 1 1 160px;
    }

    .fl-404-category-grid {
        grid-template-columns: 1fr;
    }

    .fl-404-products-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .fl-404-products.products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .fl-404-products .product-card {
        border-radius: 14px;
    }

    .fl-404-products .product-image-wrap {
        aspect-ratio: 1 / 1;
        border-radius: 14px 14px 0 0;
    }

    .fl-404-products .product-card-body {
        min-height: 112px;
        padding: 8px;
    }

    .fl-404-products .product-title,
    .fl-404-products .product-title a {
        font-size: 11.5px;
        line-height: 1.25;
    }

    .fl-404-products .product-rating-stars {
        font-size: 10px;
        letter-spacing: 0;
    }

    .fl-404-products .product-rating-copy,
    .fl-404-products .product-sales-copy,
    .fl-404-products .product-discount-copy {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .fl-404-products .product-price-main {
        font-size: 13px;
        line-height: 1.1;
    }
}

/* Footer link grid polish. Kept last to normalize older footer rules. */
.store-footer .store-footer-links-grid {
    align-self: start;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1.15rem, 2.4vw, 2rem);
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.store-footer .store-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 0;
}

.store-footer .store-footer-heading {
    display: block;
    min-height: 1.45rem;
    margin: 0;
    color: #111827;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
}

.store-footer .store-footer-heading-toggle {
    width: auto;
    min-height: 1.45rem;
}

.store-footer .store-footer-accordion-panel {
    width: 100%;
}

.store-footer .store-footer-accordion-panel .list-unstyled {
    display: grid !important;
    gap: 0.55rem !important;
}

.store-footer .footer-link {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    color: #4b5563;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
}

.store-footer .footer-link:hover {
    color: #111827;
    transform: translateX(2px);
}

@media (max-width: 1199.98px) {
    .store-footer .store-footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .store-footer .store-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .store-footer .store-footer-column {
        gap: 0;
    }

    .store-footer .store-footer-heading-toggle {
        width: 100%;
        min-height: 1.45rem;
    }
}

@media (max-width: 767.98px) {
    .store-footer .store-footer-social {
        margin-bottom: 1.25rem;
    }

    .store-footer .container-fluid.py-5 {
        padding-bottom: 2rem !important;
    }

    .store-footer-shell {
        padding-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .store-footer-shell > .container {
        column-gap: 3rem;
        row-gap: 0.85rem;
    }

    .store-footer .footer-meta-row {
        margin-top: 0.35rem;
        padding-top: 0.85rem;
    }

    .store-footer .store-footer-meta {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .store-footer .footer-payment-brands {
        order: 1;
        margin-left: auto;
        justify-content: flex-end;
    }

    .store-footer .footer-preference-row {
        order: 1;
        justify-content: flex-end;
    }

    .store-footer .container-fluid.py-5 {
        padding-bottom: 1.35rem !important;
    }

    .store-footer-shell {
        padding-bottom: 0;
    }
}

/* 404 page: single-panel layout with prominent error code. */
.fl-404-page .fl-404-hero {
    display: block;
}

.fl-404-page .fl-404-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 48px);
    text-align: center;
}

.fl-404-page .fl-404-code {
    display: block;
    width: auto;
    height: auto;
    min-width: 0;
    margin: 0 0 12px;
    border-radius: 0;
    background: transparent;
    color: rgba(225, 29, 72, 0.16);
    font-size: clamp(88px, 15vw, 176px);
    font-weight: 950;
    line-height: 0.8;
    letter-spacing: 0;
}

.fl-404-page .fl-404-copy h1 {
    max-width: none;
    font-size: clamp(42px, 6vw, 76px);
}

.fl-404-page .fl-404-copy p {
    margin-left: auto;
    margin-right: auto;
}

.fl-404-page .fl-404-search {
    margin-left: auto;
    margin-right: auto;
}

.fl-404-page .fl-404-actions {
    justify-content: center;
}

.fl-404-page .fl-404-inline-categories {
    margin-top: clamp(24px, 4vw, 36px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.fl-404-page .fl-404-inline-categories h2 {
    margin: 8px 0 0;
    color: #151d2f;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.15;
}

.fl-404-page .fl-404-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991.98px) {
    .fl-404-page .fl-404-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .fl-404-page .fl-404-code {
        font-size: clamp(72px, 25vw, 110px);
    }

    .fl-404-page .fl-404-category-grid {
        grid-template-columns: 1fr;
    }
}
