:root {
    --cream: #f7f4ef;
    --cream-2: #faf8f4;
    --ink: #1a2438;
    --ink-soft: #334155;
    --muted: #64748b;
    --navy: #1a2438;
    --navy-header: #0b0b1a;
    --nav-purple: #8b5cf6;
    --nav-purple-glow: rgba(139, 92, 246, 0.55);
    --nav-pill-bg: rgba(88, 56, 168, 0.42);
    --border: rgba(26, 36, 56, .10);
    --shadow: 0 14px 40px rgba(26, 36, 56, .10);
    --shadow-sm: 0 8px 22px rgba(26, 36, 56, .08);
    --orange: #ff6b00;
    --orange-dark: #e85f00;
    --orange-glow: 0 12px 28px rgba(255, 107, 0, .35);
    --whatsapp: #25d366;
    --badge-red: #ef4444;
}

html {
    scroll-behavior: smooth;
}

/* Top scroll progress line */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1040;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.scroll-progress.is-active {
    opacity: 1;
}

.scroll-progress__track {
    position: relative;
    height: 100%;
    background: rgba(139, 92, 246, 0.12);
    overflow: hidden;
}

.scroll-progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8c42 45%, var(--nav-purple) 100%);
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.55), 0 0 22px var(--nav-purple-glow);
    transition: transform 0.12s ease-out;
    will-change: transform;
}

.scroll-progress__bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.scroll-progress.is-active .scroll-progress__bar::after {
    opacity: 1;
    animation: scroll-progress-shine 1.4s ease-in-out infinite;
}

.scroll-progress.is-complete .scroll-progress__bar {
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.65);
}

@keyframes scroll-progress-shine {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    40% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(80%);
        opacity: 0;
    }
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header — dark bar, sliding purple pill, icon actions */
.site-header {
    background: linear-gradient(180deg, #0f0f22 0%, var(--navy-header) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    padding: 0;
    z-index: 1030;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(11, 11, 26, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(139, 92, 246, 0.08);
}

.site-header__container {
    max-width: 1280px;
}

.site-header__nav {
    min-height: 84px;
    align-items: center;
}

.site-header__brand,
.navbar-brand.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff !important;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .01em;
    margin-right: 0;
    padding: 0;
}

.site-header__brand:hover {
    color: #fff !important;
    opacity: .92;
}

.site-header__brand-text {
    white-space: nowrap;
}

.brand-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    padding: 5px;
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo-fallback {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b00, #ff8a3d);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

.site-header__collapse {
    align-items: center;
}

.site-nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.site-nav-menu__indicator {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 44px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--nav-pill-bg);
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.25),
        0 0 28px var(--nav-purple-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition:
        left 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
        width 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
        opacity 0.25s ease;
}

.site-nav-menu.is-ready .site-nav-menu__indicator {
    opacity: 1;
}

.site-header__links {
    gap: 4px;
    position: relative;
    z-index: 1;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    font-size: 1.02rem;
    padding: 11px 18px !important;
    border-radius: 999px;
    margin: 0;
    background: transparent !important;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    opacity: 1;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
    opacity: 1;
}

.navbar-nav .nav-link.active:hover {
    color: #fff !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.header-search__input {
    width: 200px;
    height: 44px;
    padding: 0 42px 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: width .2s ease, border-color .2s ease, background .2s ease;
}

.header-search__input::placeholder {
    color: rgba(226, 232, 240, 0.6);
}

.header-search__input:focus {
    width: 240px;
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(139, 92, 246, 0.12);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}

.header-search__btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search__btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

.header-search__btn svg {
    width: 18px;
    height: 18px;
}

.header-icon-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.header-icon-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(167, 139, 250, 0.45);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.header-icon-btn.is-active {
    background: rgba(255, 107, 0, .2);
    border-color: rgba(255, 107, 0, .5);
}

.header-icon-btn svg {
    width: 22px;
    height: 22px;
}

.header-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b0b1a;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

.header-badge--pulse {
    animation: headerBadgePulse 2s ease-in-out infinite;
}

@keyframes headerBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.45);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 4px 14px rgba(239, 68, 68, 0.75);
    }
}

.header-badge--bump {
    animation: headerBadgeBump 0.45s ease;
}

@keyframes headerBadgeBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.site-header__toggler,
.navbar-dark .navbar-toggler {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 10px;
    padding: 8px 10px;
}

.navbar-dark .navbar-toggler-icon {
    width: 1.35em;
    height: 1.35em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main */
.site-main {
    padding: 28px 0 40px;
}

.page-products .site-main,
.page-home .site-main,
.page-about .site-main,
.page-contact .site-main,
.page-offers .site-main,
.page-product .site-main {
    padding-top: 12px;
}

.page-home .site-main {
    padding-bottom: 24px;
}

.page-products .page-header,
.page-products .products-page-head,
.page-products .products-page-footer,
.page-products .shop-pagination,
.page-products .product-card-v2,
.page-about .section-heading,
.page-about .section-lead,
.page-about .about-section,
.page-contact .section-heading,
.page-contact .section-lead,
.page-offers .page-header,
.page-offers .product-card-v2,
.page-product .product-page,
.page-product .product-detail-card {
    opacity: 1;
    transform: none;
}

/* Hero */
.hero-banner {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 24px 60px rgba(11, 11, 26, 0.18), 0 0 0 1px rgba(139, 92, 246, 0.08);
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) brightness(0.95);
    transform: scale(1.05);
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11, 11, 26, 0.88) 0%,
        rgba(11, 11, 26, 0.62) 42%,
        rgba(11, 11, 26, 0.28) 100%
    );
}

.hero-banner__shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        125deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
    0%, 100% { opacity: 0; transform: translateX(-30%); }
    50% { opacity: 1; transform: translateX(30%); }
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    padding: 52px 44px;
    width: 100%;
}

.hero-banner__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(139, 92, 246, 0.35);
    border: 1px solid rgba(167, 139, 250, 0.4);
}

.hero-banner h1 {
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 14px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-banner .lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.12rem;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.55;
}

.hero-banner__btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hero-anim {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(120ms + var(--hero-i, 0) * 110ms);
}

.hero-banner--ready .hero-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Home page scroll reveals */
.scroll-reveal {
    opacity: 0;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--scroll-delay, 0) * 90ms);
}

.scroll-reveal[data-scroll="fade-up"] {
    transform: translateY(36px);
}

.scroll-reveal[data-scroll="fade-left"] {
    transform: translateX(-36px);
}

.scroll-reveal[data-scroll="fade-right"] {
    transform: translateX(36px);
}

.scroll-reveal[data-scroll="scale-in"] {
    transform: scale(0.92);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.section-heading.scroll-reveal::after {
    width: 0;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.section-heading.scroll-reveal.is-visible.section-heading--line-drawn::after,
.section-heading.scroll-reveal.is-visible::after {
    width: 42px;
}

/* Home trust strip — premium feature cards */
.home-trust-strip {
    position: relative;
    margin-bottom: 2rem;
    padding: 4px 0;
}

.home-trust-strip::before {
    content: "";
    position: absolute;
    inset: -8px 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.06) 25%,
        rgba(255, 107, 0, 0.05) 50%,
        rgba(139, 92, 246, 0.06) 75%,
        transparent 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.home-trust-strip__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-trust-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid rgba(26, 36, 56, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 32px rgba(26, 36, 56, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}

.home-trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(255, 107, 0, 0.2), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(26, 36, 56, 0.12),
        0 0 0 1px rgba(139, 92, 246, 0.08);
}

.home-trust-card:hover::after {
    opacity: 1;
}

.home-trust-card__shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-trust-card:hover .home-trust-card__shine {
    left: 140%;
}

.home-trust-card__icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-trust-card:hover .home-trust-card__icon-wrap {
    transform: scale(1.08) translateY(-2px);
}

.home-trust-card__icon-wrap svg {
    width: 26px;
    height: 26px;
}

.home-trust-card__icon-wrap--delivery {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8a3d 100%);
    box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
}

.home-trust-card__icon-wrap--secure {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}

.home-trust-card__icon-wrap--quality {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.home-trust-card__icon-wrap--support {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.32);
}

.home-trust-card__body {
    position: relative;
    z-index: 1;
}

.home-trust-card__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-trust-card__desc {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.45;
}

.home-trust-card.scroll-reveal.is-visible .home-trust-card__icon-wrap {
    animation: trustIconPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(var(--scroll-delay, 0) * 90ms + 0.15s);
}

@keyframes trustIconPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    70% {
        transform: scale(1.06);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Home sections */

.home-section {
    margin-bottom: 2rem;
}

.home-section__header {
    margin-bottom: 1.25rem;
}

.home-section__header--split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.section-lead--compact {
    margin-top: 0.35rem;
}

.home-section__cta {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.home-cta-btn {
    border-radius: 999px;
    padding: 12px 36px;
    font-weight: 700;
    border-width: 2px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 36, 56, 0.12);
}

.home-section--offers {
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, transparent 80px);
    border-radius: 16px;
    padding-left: 8px;
    padding-right: 8px;
}

.home-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 16px;
    color: var(--muted);
}

.page-home .product-card-v2 {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.page-home .scroll-reveal.is-visible .product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 36, 56, 0.14);
}

.page-home .home-products-grid > .col-lg-3,
.page-home .home-products-grid > .col-xl-3 {
    display: flex;
}

.page-home .home-products-grid .product-card-v2 {
    width: 100%;
}

/* Offers sections: always show 4 cards per row on tablets and larger. */
@media (min-width: 768px) {
    .home-bundle-offers-grid > [class*="col-"],
    .home-offers-grid > [class*="col-"],
    .offers-page__grid > [class*="col-"],
    .bundle-section__grid > [class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Buttons */
.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-accent {
    background: var(--orange);
    color: #fff;
    border: 0;
    padding: 12px 28px;
    box-shadow: var(--orange-glow);
}

.btn-accent:hover {
    background: var(--orange-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(255, 107, 0, .4);
}

.btn-accent.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    box-shadow: 0 8px 18px rgba(255, 107, 0, .28);
}

.btn-accent.btn-sm:hover {
    box-shadow: 0 10px 22px rgba(255, 107, 0, .34);
}

.shop-flash-alert {
    border-radius: 12px;
    border: 0;
    margin-bottom: 1.25rem;
}

.offers-section__head--split {
    gap: 12px;
    margin-bottom: 1.25rem;
}

.offers-section__head--split .btn {
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.shop-panel-footer .btn-accent {
    padding: 0.65rem 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, .28);
}

.shop-panel-footer .btn-accent:hover {
    transform: none;
}

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

.btn-primary:hover {
    background: #243352;
    border: none;
}

.btn-outline-primary {
    border-color: var(--navy);
    color: var(--navy);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background: var(--navy);
    color: #fff;
}

/* Section headings */
.section-heading {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--ink);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 4px;
    border-radius: 99px;
    background: var(--orange);
}

.section-lead {
    color: var(--muted);
    font-size: 1rem;
    margin: -0.5rem 0 1.5rem;
    max-width: 560px;
}

.section-heading--sub {
    margin-bottom: 0;
}

/* Page headers (offers, products, etc.) */
.page-header {
    margin-bottom: 2rem;
}

.page-header__title {
    display: block;
    width: fit-content;
    margin: 0 0 0.75rem;
    padding-bottom: 12px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.page-header__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 3.5rem;
    height: 4px;
    border-radius: 99px;
    background: var(--orange);
}

.page-header__lead {
    margin: 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted);
}

/* Products listing — search & pagination */
.products-page-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 20px;
    margin-bottom: 1.5rem;
}

.products-page-head__intro {
    flex: 1 1 260px;
    margin-bottom: 0;
}

.products-page-head__intro .page-header__lead {
    margin-top: 0.35rem;
}

.products-toolbar {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
    max-width: 100%;
    width: 100%;
}

.products-toolbar__actions {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

.products-toolbar__btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.4rem 1rem !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
    transform: none !important;
}

.products-toolbar__btn.btn-accent:hover {
    transform: none !important;
    box-shadow: 0 8px 18px rgba(255, 107, 0, 0.28) !important;
}

/* Products page — integrated search bar */
.shop-search {
    flex: 1 1 320px;
    min-width: 0;
    max-width: min(480px, 58vw);
}

.shop-search__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.35rem 0.35rem 0.4rem;
    min-height: 48px;
    border: 1px solid rgba(26, 36, 56, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    box-shadow: 0 4px 18px rgba(26, 36, 56, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    box-sizing: border-box;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.shop-search__bar:focus-within {
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1), 0 0 0 3px rgba(255, 107, 0, 0.08);
}

.shop-search__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--nav-purple) 0%, #a78bfa 52%, var(--orange) 100%);
    box-shadow: 0 6px 14px rgba(139, 92, 246, 0.25);
}

.shop-search__input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 38px;
    margin: 0;
    padding: 0 0.25rem;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
}

.shop-search__input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.shop-search__input:focus {
    outline: 0;
    box-shadow: none;
}

.shop-search__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(26, 36, 56, 0.06);
    color: var(--muted);
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease;
}

.shop-search__clear:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.shop-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0 1rem;
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
    color: #fff;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.32);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.shop-search__submit:hover {
    filter: brightness(1.04);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.38);
}

.shop-search__submit:active {
    transform: scale(0.98);
}

.shop-search__submit:focus {
    outline: none;
}

.shop-search__submit:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.35), 0 6px 16px rgba(255, 107, 0, 0.32);
}

.shop-search__submit-icon {
    display: inline-flex;
    line-height: 0;
}

.shop-search__reset {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    background: rgba(26, 36, 56, 0.04);
    border: 1px solid rgba(26, 36, 56, 0.08);
    transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.shop-search__reset:hover {
    color: var(--ink);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    text-decoration: none;
}

/* Products page — custom sort filter */
/* Category filter (hover-to-open) on the products page toolbar. */
.cat-filter {
    flex: 0 0 auto;
    position: relative;
    z-index: 31;
}

.cat-filter__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0.45rem 0.85rem 0.45rem 0.5rem;
    min-height: 48px;
    min-width: 190px;
    border: 1px solid rgba(26, 36, 56, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    box-shadow: 0 4px 18px rgba(26, 36, 56, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.cat-filter:hover .cat-filter__trigger,
.cat-filter:focus-within .cat-filter__trigger {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.12);
}

.cat-filter__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
    flex-shrink: 0;
}

.cat-filter__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.cat-filter__caption {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    font-weight: 700;
}

.cat-filter__value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.cat-filter__chevron {
    margin-left: auto;
    color: #94a3b8;
    display: inline-flex;
    transition: transform 0.2s ease;
}

.cat-filter:hover .cat-filter__chevron {
    transform: rotate(180deg);
}

.cat-filter__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    max-height: 360px;
    overflow-y: auto;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(26, 36, 56, 0.1);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

/* Show on hover (and keyboard focus) – "move the mouse to see all categories". */
.cat-filter:hover .cat-filter__menu,
.cat-filter:focus-within .cat-filter__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cat-filter__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.cat-filter__option:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
    text-decoration: none;
}

.cat-filter__option.is-active {
    background: rgba(139, 92, 246, 0.16);
    color: #6d28d9;
}

.cat-filter__option-count {
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
}

.cat-filter__option.is-active .cat-filter__option-count {
    background: rgba(139, 92, 246, 0.25);
    color: #6d28d9;
}

.sort-filter {
    flex: 0 0 auto;
    margin-right: auto;
    position: relative;
    z-index: 30;
}

.sort-filter__control {
    position: relative;
}

.sort-filter__native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sort-filter__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0.45rem 0.85rem 0.45rem 0.5rem;
    min-height: 48px;
    min-width: 200px;
    border: 1px solid rgba(26, 36, 56, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    box-shadow: 0 4px 18px rgba(26, 36, 56, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}

.sort-filter__trigger:hover {
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.sort-filter__trigger:focus {
    outline: none;
}

.sort-filter__trigger:focus-visible {
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.14), 0 8px 24px rgba(26, 36, 56, 0.08);
}

.sort-filter.is-open .sort-filter__trigger {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.12);
}

.sort-filter__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 48%, var(--nav-purple) 100%);
    box-shadow: 0 6px 14px rgba(255, 107, 0, 0.28);
}

.sort-filter__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    min-width: 0;
    flex: 1 1 auto;
}

.sort-filter__caption {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    line-height: 1.2;
}

.sort-filter__value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(42vw, 11rem);
}

.sort-filter__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: var(--ink-soft);
    background: rgba(26, 36, 56, 0.05);
    transition: transform 0.22s ease, background 0.2s ease, color 0.2s ease;
}

.sort-filter.is-open .sort-filter__chevron {
    transform: rotate(180deg);
    background: rgba(139, 92, 246, 0.12);
    color: var(--nav-purple);
}

.sort-filter__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    min-width: 100%;
    width: max(100%, 260px);
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    border: 1px solid rgba(26, 36, 56, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(26, 36, 56, 0.14), 0 4px 12px rgba(26, 36, 56, 0.06);
    animation: sort-filter-menu-in 0.22s ease;
}

.sort-filter__menu[hidden] {
    display: none !important;
}

@keyframes sort-filter-menu-in {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sort-filter__menu li {
    margin: 0;
    padding: 0;
}

.sort-filter__option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin: 0;
    padding: 0.6rem 0.65rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-align: left;
    transition: background 0.16s ease, color 0.16s ease;
}

.sort-filter__option:hover {
    background: rgba(139, 92, 246, 0.08);
    color: var(--ink);
}

.sort-filter__option.is-active {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    color: var(--ink);
    font-weight: 600;
}

.sort-filter__option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(26, 36, 56, 0.06);
    color: var(--ink-soft);
}

.sort-filter__option.is-active .sort-filter__option-icon {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(139, 92, 246, 0.16));
    color: var(--orange-dark);
}

.sort-filter__option-icon--spark::before { content: "✦"; }
.sort-filter__option-icon--clock::before { content: "◷"; font-size: 1rem; }
.sort-filter__option-icon--price-up::before { content: "↑"; }
.sort-filter__option-icon--price-down::before { content: "↓"; }
.sort-filter__option-icon--alpha::before { content: "A"; font-size: 0.8rem; }
.sort-filter__option-icon--alpha-rev::before { content: "Z"; font-size: 0.8rem; }

.sort-filter__option-label {
    flex: 1 1 auto;
    min-width: 0;
}

.sort-filter__option-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--orange);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.sort-filter__option.is-active .sort-filter__option-check {
    opacity: 1;
    transform: scale(1);
}

.products-toolbar__actions .shop-search {
    flex: 1 1 300px;
    width: auto;
    max-width: min(480px, 58vw);
}


.products-grid {
    margin-bottom: 0.25rem;
}

.page-products .products-grid > .col-lg-3,
.page-products .products-grid > .col-xl-3 {
    display: flex;
}

.page-products .products-grid .product-card-v2 {
    width: 100%;
}

.products-page-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.products-results-meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    flex: 0 0 auto;
}

.shop-pagination {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    margin: 0;
}

.shop-pagination__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-pagination__list > li,
.shop-pagination__item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

a.shop-pagination__link:hover {
    border-color: var(--orange);
    color: var(--orange);
    text-decoration: none;
}

.shop-pagination__item.is-active .shop-pagination__link {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.shop-pagination__item.is-disabled .shop-pagination__link {
    opacity: 0.45;
    cursor: default;
}

.shop-pagination__ellipsis {
    border-color: transparent;
    background: transparent;
    min-width: auto;
    padding: 0 4px;
}

@media (max-width: 767.98px) {
    .products-page-head {
        flex-direction: column;
        align-items: stretch;
    }

    .products-toolbar {
        flex-wrap: wrap;
        margin-left: 0;
        justify-content: stretch;
        width: 100%;
    }

    .sort-filter {
        flex: 1 1 100%;
        width: 100%;
        margin-right: 0;
    }

    .sort-filter__trigger {
        width: 100%;
        min-width: 0;
    }

    .sort-filter__value {
        max-width: none;
    }

    .sort-filter__menu {
        width: 100%;
    }

    .products-toolbar__actions {
        flex: 1 1 100%;
        width: 100%;
        flex-wrap: wrap;
    }

    .products-toolbar__actions .shop-search {
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
    }

    .shop-search__bar {
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .shop-search__input {
        flex: 1 1 100%;
        order: 2;
        padding: 0 0.35rem;
    }

    .shop-search__badge {
        order: 1;
    }

    .shop-search__clear {
        order: 3;
    }

    .shop-search__submit {
        order: 4;
        flex: 1 1 auto;
        width: 100%;
        min-height: 42px;
    }

    .shop-search__reset {
        width: 100%;
        justify-content: center;
    }

    .products-page-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-pagination {
        justify-content: center;
    }

    .shop-pagination__list {
        justify-content: center;
    }

    .products-results-meta {
        text-align: center;
    }
}

/* Trust strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
}

.trust-strip__icon {
    font-size: 1.15rem;
    line-height: 1;
}

/* Offers section */
.offers-section {
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
}

.offers-section__head {
    margin-bottom: 1.25rem;
}

.home-offers-preview {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.offers-page__grid {
    margin-top: 0;
}

.offers-page__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.offers-page__empty-title {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.product-card-v2__sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.product-card-v2__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 6px;
}

.product-card-v2__price-original {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1.3;
}

.product-card-v2__price-offer {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
}

/* Product cards */
.card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

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

.product-card {
    border-radius: 16px;
}

/* Product card v2 — ref storefront design */
.product-card-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.product-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.product-card-v2__media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 48%, #2563eb 100%);
    min-height: 200px;
}

.product-card-v2__img-link {
    display: block;
    position: relative;
    min-height: 200px;
}

.product-card-v2__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.product-card-v2__img.is-hidden {
    display: none;
}

.product-card-v2:hover .product-card-v2__img:not(.is-hidden) {
    transform: scale(1.04);
}

.product-card-v2__placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 48%, #2563eb 100%);
}

.product-card-v2__placeholder.is-visible {
    display: flex;
}

.product-card-v2__initial {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-card-v2__media .product-wishlist-overlay {
    top: 10px;
    right: 10px;
}

.product-card-v2__media .product-wishlist-btn {
    width: 36px;
    height: 36px;
    background: rgba(219, 234, 254, 0.95);
    color: #1e40af;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

.product-card-v2__media .product-wishlist-btn.is-active {
    background: var(--orange);
    color: #fff;
}

.product-card-v2__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 18px;
}

.product-card-v2__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
    text-decoration: none;
    transition: color .2s ease;
}

.product-card-v2__title:hover {
    color: var(--orange);
    text-decoration: none;
}

.product-card-v2__stock {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: #94a3b8;
}

.product-card-v2__desc {
    margin: 0 0 10px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-v2__free {
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px dashed rgba(34, 197, 94, 0.45);
}

.product-card-v2__free-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.product-card-v2__free-item {
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
}

.product-card-v2__free-item img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(34, 197, 94, 0.3);
    flex-shrink: 0;
}

.product-card-v2__free-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #14532d;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-v2__cart-form {
    margin-top: auto;
    margin-bottom: 0;
}

.product-card-v2__cta {
    --cta-accent: #4f46e5;
    --cta-accent-dark: #4338ca;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    isolation: isolate;
}

.product-card-v2__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--cta-accent);
    background: linear-gradient(135deg, #6366f1 0%, var(--cta-accent) 100%);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.32);
    transition: background .35s cubic-bezier(.4, 0, .2, 1), border-color .35s ease, transform .2s ease, box-shadow .35s ease;
    z-index: 0;
}

.product-card-v2__cta-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.55) 48%, transparent 100%);
    transform: skewX(-18deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.product-card-v2__cta:hover:not(:disabled):not(.is-loading):not(.is-success)::before {
    background: linear-gradient(135deg, var(--cta-accent-dark) 0%, #3730a3 100%);
    border-color: var(--cta-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(79, 70, 229, 0.42);
}

.product-card-v2__cta:hover:not(:disabled):not(.is-loading):not(.is-success) .product-card-v2__cta-shine {
    animation: cta-shine-sweep 0.75s ease;
}

.product-card-v2__cta:active:not(:disabled):not(.is-loading)::before {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
}

.product-card-v2__cta-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    opacity: 0;
}

.product-card-v2__cta-ripple.is-active {
    animation: cta-ripple 0.55s ease-out forwards;
}

.product-card-v2__cta-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
    color: #fff;
    transition: color .3s ease;
}

.product-card-v2__cta:hover:not(:disabled):not(.is-loading):not(.is-success) .product-card-v2__cta-inner {
    color: #fff;
}

.product-card-v2__cta-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .25s ease, transform .25s ease;
}

.product-card-v2__cta-state--success {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    color: #15803d;
}

.product-card-v2__cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.product-card-v2__cta-spinner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity .2s ease, transform .2s ease;
}

.product-card-v2__cta.is-loading::before {
    background: linear-gradient(135deg, #818cf8 0%, var(--cta-accent) 100%);
    border-color: var(--cta-accent-dark);
}

.product-card-v2__cta.is-loading .product-card-v2__cta-state--default {
    opacity: 0;
    transform: scale(0.9);
}

.product-card-v2__cta.is-loading .product-card-v2__cta-spinner {
    opacity: 1;
    transform: scale(1);
    animation: cta-spin 0.7s linear infinite;
}

.product-card-v2__cta.is-success::before {
    background: #ecfdf5;
    border-color: #22c55e;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.product-card-v2__cta.is-success .product-card-v2__cta-inner {
    color: #15803d;
}

.product-card-v2__cta.is-success .product-card-v2__cta-state--default {
    opacity: 0;
    transform: scale(0.85);
}

.product-card-v2__cta.is-success .product-card-v2__cta-state--success {
    opacity: 1;
    transform: scale(1);
    animation: cta-success-pop 0.45s cubic-bezier(.34, 1.56, .64, 1);
}

.product-card-v2__cta.is-error::before {
    animation: cta-shake 0.45s ease;
    border-color: #ef4444;
}

.product-card-v2__cta.is-disabled,
.product-card-v2__cta:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-card-v2__cta.is-disabled::before,
.product-card-v2__cta:disabled::before {
    transform: none;
    box-shadow: none;
}

@keyframes cta-shine-sweep {
    0% {
        left: -120%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 140%;
        opacity: 0;
    }
}

@keyframes cta-ripple {
    0% {
        transform: scale(0);
        opacity: 0.45;
    }

    100% {
        transform: scale(14);
        opacity: 0;
    }
}

@keyframes cta-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cta-success-pop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes cta-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .product-card-v2__cta-shine,
    .product-card-v2__cta-ripple.is-active,
    .product-card-v2__cta.is-loading .product-card-v2__cta-spinner,
    .product-card-v2__cta.is-success .product-card-v2__cta-state--success {
        animation: none !important;
    }

    .product-card-v2__cta,
    .product-card-v2__cta::before,
    .product-card-v2__cta-inner,
    .product-card-v2__cta-state {
        transition: none;
    }
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    background: #f1f5f9;
}

.product-image {
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.card:hover .product-image {
    transform: scale(1.04);
}

.product-wishlist-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    margin: 0;
}

.product-wishlist-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(26, 36, 56, 0.14);
    transition: background .2s ease, color .2s ease, transform .15s ease;
}

.product-wishlist-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.product-wishlist-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: scale(1.06);
}

.product-wishlist-btn.is-active {
    background: rgba(255, 107, 0, 0.88);
    color: #fff;
}

.product-wishlist-btn.is-active:hover {
    background: var(--orange);
    color: #fff;
}

.form-control {
    border-radius: 12px;
    border-color: var(--border);
}

.form-control:focus {
    border-color: rgba(255, 107, 0, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 107, 0, .12);
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 32px;
    background: linear-gradient(180deg, #121528 0%, #0b0b1a 55%, #080812 100%);
    color: rgba(255, 255, 255, 0.78);
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    overflow: hidden;
}

.site-footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
    pointer-events: none;
}

.site-footer__container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    padding-top: 0;
    padding-bottom: 16px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff !important;
    text-decoration: none !important;
}

.footer-brand:hover {
    opacity: 0.92;
}

.footer-brand__logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-brand__name {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-footer__social-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

.footer-connect {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.4;
}

.site-footer__grid {
    padding: 20px 0 16px;
}

.site-footer__grid.row {
    --bs-gutter-y: 1.25rem;
}

.site-footer__grid > [class*="col-"] {
    margin-bottom: 0 !important;
}

.footer-col {
    height: 100%;
}

.footer-title,
.footer-col-title {
    color: #fff;
    font-weight: 700;
    margin: 0 0 12px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after,
.footer-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nav-purple), transparent);
}

.footer-text {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0 0 8px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    padding-left: 0;
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-purple);
    transform: translateY(-50%);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.footer-links a:hover {
    padding-left: 14px;
    color: #fff;
}

.footer-links a:hover::before {
    width: 8px;
}

.site-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    margin: 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.06);
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    color: #fff;
}

.social-icon.is-pressed {
    transform: scale(0.92);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.contact-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.contact-line__icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.contact-line__icon svg {
    width: 16px;
    height: 16px;
}

.contact-line a {
    color: rgba(255, 255, 255, 0.78);
}

.contact-line a:hover {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0 0;
}

.site-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.site-footer__credit {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__credit:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.footer-bottom-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--nav-purple);
    transition: width 0.25s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

/* Footer scroll reveal */
.footer-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.footer-col.footer-reveal {
    transition-delay: calc(var(--footer-delay, 0) * 80ms);
}

@media (min-width: 768px) {
    .site-footer__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__social-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        text-align: right;
        gap: 16px 14px;
    }

    .footer-connect {
        max-width: none;
        margin: 0;
        text-align: right;
        flex: 0 1 auto;
    }

    .site-footer__social-wrap .social-icons {
        flex: 0 0 auto;
    }
}

@media (min-width: 992px) {
    .site-footer__top {
        padding: 20px 0 22px;
    }

    .site-footer__grid {
        padding: 24px 0 18px;
    }
}

@media (max-width: 767px) {
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .social-icon:hover {
        transform: none;
    }
}

/* Floating actions */
body:has(.site-footer) .floating-actions {
    bottom: 28px;
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
}

.floating-actions.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.floating-action {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-action:hover {
    transform: translateY(-4px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.floating-action svg {
    width: 26px;
    height: 26px;
}

.floating-cart {
    background: var(--orange);
}

.floating-whatsapp {
    background: var(--whatsapp);
}

.floating-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--badge-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .55s ease, transform .55s ease;
}

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

@media (min-width: 992px) {
    #shopNav {
        display: flex !important;
        align-items: center;
        flex: 1;
        margin-left: 20px;
    }

    .site-header__collapse {
        flex: 1;
        justify-content: space-between;
    }

    .site-nav-menu {
        flex: 1;
        justify-content: center;
    }

    .site-header__links {
        justify-content: center;
        margin: 0 auto;
    }

    .header-actions {
        margin-left: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 991px) {
    .site-header__nav {
        min-height: auto;
        padding: 14px 0;
    }

    .site-nav-menu {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav-menu__indicator {
        display: none;
    }

    .site-header__links {
        padding: 14px 0 10px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 14px !important;
        font-size: 1rem;
    }

    .navbar-nav .nav-link.active {
        background: var(--nav-pill-bg) !important;
        box-shadow: 0 0 20px var(--nav-purple-glow);
    }

    .header-actions {
        margin-left: 0;
        margin-top: 8px;
        padding-bottom: 8px;
        flex-wrap: wrap;
    }

    .header-search {
        flex: 1 1 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .header-search__input,
    .header-search__input:focus {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav-menu__indicator,
    .navbar-nav .nav-link,
    .header-icon-btn,
    .header-badge--pulse {
        transition: none !important;
        animation: none !important;
    }
}

/* Slide-out cart & wishlist panels */
body.shop-panel-open {
    overflow: hidden;
}

.shop-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 56, 0.5);
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.shop-panel-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.shop-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100%;
    max-height: 100dvh;
    background: #fff;
    z-index: 2110;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(26, 36, 56, 0.18);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.shop-panel.is-open {
    transform: translateX(0);
}

.shop-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.shop-panel__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
}

.shop-panel__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--cream-2);
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}

.shop-panel__close:hover {
    background: var(--cream);
}

.shop-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
}

.shop-panel-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--muted);
}

.shop-panel-items {
    flex: 1;
}

.shop-panel-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.shop-panel-item__img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #f8fafc;
}

.shop-panel-item__title {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
    display: block;
    margin-bottom: 4px;
    text-decoration: none;
}

.shop-panel-item__title:hover {
    color: var(--orange);
    text-decoration: none;
}

.shop-panel-item__price {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

.shop-panel-item__qty-form input {
    width: 64px;
}

.shop-panel-item__subtotal {
    font-weight: 800;
    color: var(--orange);
    font-size: 14px;
    white-space: nowrap;
}

.shop-panel-item__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.shop-panel-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.shop-panel-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.shop-panel-total strong {
    font-size: 1.25rem;
    color: var(--orange);
}

.shop-panel-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.shop-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 2200;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    max-width: min(90vw, 420px);
    text-align: center;
}

.shop-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.shop-toast--error {
    background: var(--badge-red);
}

.shop-bill-preview {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.shop-bill-preview pre {
    white-space: pre-wrap;
    font-size: 13px;
    color: var(--ink-soft);
    font-family: inherit;
}

.header-icon-btn,
.floating-action.floating-cart {
    border: none;
    font: inherit;
    cursor: pointer;
}

.header-icon-btn {
    background: transparent;
}

@media (max-width: 991px) {
    .home-trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 320px;
        border-radius: 16px;
    }

    .hero-banner__content {
        padding: 32px 24px;
    }

    .home-trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .home-trust-card {
        flex-direction: row;
        align-items: center;
        padding: 18px 16px;
    }

    .floating-actions {
        right: 14px;
        bottom: 16px;
    }

    .floating-action {
        width: 50px;
        height: 50px;
    }

    .brand-logo-wrap {
        width: 44px;
        height: 44px;
    }

    .navbar-brand {
        font-size: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .card,
    .reveal,
    .scroll-reveal,
    .hero-anim,
    .hero-banner__bg,
    .hero-banner__shine,
    .home-trust-card__shine,
    .floating-actions,
    .floating-action {
        transition: none !important;
        animation: none !important;
    }

    .home-trust-card:hover .home-trust-card__shine {
        left: -120%;
    }

    .scroll-reveal,
    .hero-anim {
        opacity: 1;
        transform: none;
    }

    .card:hover,
    .page-home .scroll-reveal.is-visible .product-card-v2:hover {
        transform: none;
    }

    .scroll-progress__bar,
    .scroll-progress__bar::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Product detail page */
.product-page {
    padding-bottom: 48px;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.product-breadcrumb a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .2s ease;
}

.product-breadcrumb a:hover {
    color: var(--orange);
    text-decoration: none;
}

.product-breadcrumb__sep {
    color: rgba(100, 116, 139, .55);
    user-select: none;
}

.product-breadcrumb__current {
    color: var(--ink);
    font-weight: 600;
    max-width: min(420px, 55vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin-bottom: 32px;
}

.product-gallery {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    display: block;
}

/* Prev / next image arrows on the main gallery. */
.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    cursor: pointer;
    z-index: 12;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.product-gallery__nav:hover {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}

.product-gallery__nav--prev {
    left: 12px;
}

.product-gallery__nav--next {
    right: 12px;
}

.product-gallery__nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.product-gallery__nav svg {
    width: 20px;
    height: 20px;
}

/* Hover-to-zoom: the hovered region magnifies in place inside the frame. */
.product-gallery#productZoom {
    cursor: zoom-in;
}

/* Lens is only a faint hint of the area being magnified. */
.product-zoom__lens {
    display: none;
}

.product-zoom__result {
    position: absolute;
    display: none;
    inset: 0;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: 16px;
    z-index: 8;
    pointer-events: none;
}

.product-zoom__result.is-active {
    display: block;
}

@media (max-width: 991.98px) {
    /* Hover zoom isn't useful on touch / stacked layouts. */
    .product-zoom__result {
        display: none !important;
    }

    .product-gallery#productZoom {
        cursor: default;
    }
}

.shop-free-tag {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-transform: uppercase;
    vertical-align: middle;
}

.product-free-gift {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px dashed rgba(34, 197, 94, 0.5);
    color: #15803d;
    font-size: 14px;
    font-weight: 600;
}

.product-free-gift__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-free-gift__lead {
    font-weight: 600;
}

.product-free-gift__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-free-gift__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 6px 6px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(34, 197, 94, 0.35);
    text-decoration: none;
    color: #14532d;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.product-free-gift__item:hover {
    text-decoration: none;
    border-color: rgba(34, 197, 94, 0.75);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.18);
}

.product-free-gift__img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    background: #f1f5f9;
}

.product-free-gift__name {
    font-size: 13px;
    font-weight: 700;
    color: #14532d;
}

.product-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.product-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumb:hover {
    border-color: var(--accent, #f97316);
}

.product-thumb.is-active {
    border-color: var(--accent, #f97316);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}

.product-gallery__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.product-badge--sale {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--orange-glow);
}

.product-badge--stock {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border);
}

.product-badge--out {
    background: var(--badge-red);
    color: #fff;
}

.product-info {
    padding-top: 4px;
}

@media (min-width: 992px) {
    .product-info {
        padding-left: 12px;
    }
}

.product-brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--cream-2);
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.product-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
}

.product-price--compare {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
}

.product-price-note {
    width: 100%;
    font-size: 13px;
    color: var(--muted);
    margin-top: -6px;
}

.product-purchase-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border);
}

.product-purchase-block .product-actions {
    margin-bottom: 0;
}

.product-meta-table {
    width: 100%;
    margin-bottom: 24px;
    border-top: 1px dashed var(--border);
}

.product-meta-table tr+tr {
    border-top: 1px dashed var(--border);
}

.product-meta-table th,
.product-meta-table td {
    padding: 12px 0;
    font-size: 14px;
    vertical-align: top;
}

.product-meta-table th {
    width: 42%;
    color: var(--ink);
    font-weight: 600;
}

.product-meta-table td {
    color: var(--muted);
    text-align: right;
}

.product-qty-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-qty-label {
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    margin: 0;
}

.product-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-qty-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--cream-2);
    color: var(--navy);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.product-qty-btn:hover:not(:disabled) {
    background: var(--navy);
    color: #fff;
}

.product-qty-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.product-qty-input {
    width: 56px;
    height: 42px;
    border: 0;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    -moz-appearance: textfield;
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-purchase-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-icon-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

.product-icon-btn svg {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.product-icon-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 0, .55);
}

.product-icon-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.product-icon-btn.is-active {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 0, .12);
}

.product-icon-btn--cart:hover:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.shop-list-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
}

.shop-list-card__img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f8fafc;
}

.shop-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 16px;
    color: var(--muted);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.product-actions .btn {
    min-width: 160px;
    padding: 13px 24px;
    font-size: 15px;
}

.btn-buy-soft {
    background: rgba(255, 107, 0, .12);
    color: var(--orange-dark);
    border: 1px solid rgba(255, 107, 0, .28);
}

.btn-buy-soft:hover {
    background: rgba(255, 107, 0, .18);
    color: var(--orange-dark);
    border-color: rgba(255, 107, 0, .4);
}

.product-extra-meta {
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.product-extra-meta strong {
    color: var(--ink-soft);
    font-weight: 600;
}

.product-description {
    margin: 22px 0 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.product-description__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}

.product-description__body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.product-description__empty {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

.product-description-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 36px;
}

.product-description-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.product-description-card p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

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

.product-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.product-card-title {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
    transition: color .2s ease;
}

.product-card-link:hover .product-card-title {
    color: var(--orange);
}

@media (max-width: 991px) {
    .product-detail-card {
        padding: 18px;
    }

    .product-gallery {
        margin-bottom: 20px;
        aspect-ratio: 4 / 3;
    }

    .product-actions .btn {
        flex: 1 1 100%;
        min-width: 0;
    }
}

/* Checkout page */
.checkout-page {
    max-width: 100%;
}

.checkout-page__grid {
    align-items: flex-start;
}

.checkout-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.checkout-card--summary {
    position: sticky;
    top: 88px;
}

.checkout-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.checkout-card__head--summary {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 36, 56, 0.08);
    color: var(--navy);
}

.checkout-card__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.checkout-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.25;
}

.checkout-items-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 600;
}

.checkout-field {
    margin-bottom: 18px;
}

.checkout-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.checkout-required {
    color: var(--orange);
}

.checkout-optional {
    font-weight: 500;
    color: var(--muted);
    font-size: 13px;
}

.checkout-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-input-wrap--textarea {
    align-items: flex-start;
}

.checkout-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted);
    pointer-events: none;
    z-index: 1;
}

.checkout-input-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.checkout-input-icon--top {
    top: 14px;
    transform: none;
}

.checkout-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px 12px 44px;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream-2);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.checkout-input:focus {
    outline: none;
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
    background: #fff;
}

.checkout-input--textarea {
    min-height: 96px;
    resize: vertical;
    padding-top: 12px;
}

.checkout-line-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 18px;
}

.checkout-line-item__main {
    display: flex;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.checkout-line-item__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream-2);
    border: 1px solid var(--border);
}

.checkout-line-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.checkout-line-item__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.35;
}

.checkout-line-item__meta,
.checkout-line-item__qty-label {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 8px;
}

.checkout-line-item__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

.checkout-line-item__price-original {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted, #94a3b8);
    text-decoration: line-through;
}

.checkout-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.checkout-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: var(--cream-2);
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease;
}

.checkout-qty-btn:hover {
    background: rgba(26, 36, 56, 0.08);
}

.checkout-qty-input {
    width: 44px;
    height: 34px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    -moz-appearance: textfield;
}

.checkout-qty-input::-webkit-outer-spin-button,
.checkout-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.checkout-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0 16px;
}

.checkout-totals {
    margin: 0 0 16px;
}

.checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.checkout-totals__row dt {
    margin: 0;
    font-weight: 500;
    color: var(--muted);
}

.checkout-totals__row dd {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}

.checkout-totals__free {
    color: #16a34a !important;
    font-weight: 700 !important;
}

.checkout-grand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0 20px;
    border-top: 1px solid var(--border);
    margin-bottom: 4px;
}

.checkout-grand__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.checkout-grand__note {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.checkout-grand__amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
}

.checkout-submit-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: var(--orange-glow);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
}

.checkout-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(255, 107, 0, 0.4);
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.checkout-secure svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #16a34a;
}

@media (max-width: 991px) {
    .checkout-card--summary {
        position: static;
    }

    .checkout-card__title {
        font-size: 1.2rem;
    }

    .checkout-line-item {
        flex-direction: column;
    }

    .checkout-line-item__price {
        align-self: flex-end;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }
}

/* About page */
.about-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 4px 0 18px;
}

.about-section {
    margin-bottom: 36px;
}

.about-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, .12);
    background:
        linear-gradient(0deg, rgba(9, 15, 34, .68), rgba(9, 15, 34, .68)),
        url('/assets/img/storefront-hero-appliances.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
    padding: 40px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.12;
}

.about-hero p {
    margin: 0 auto;
    color: rgba(255, 255, 255, .92);
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.65;
}

.about-kicker {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-heading {
    color: var(--ink);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-copy {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.about-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.about-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    flex: 0 0 auto;
}

.about-image-main {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.why-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, .12);
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.why-text {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.gallery-main,
.gallery-side {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.gallery-main {
    height: 300px;
}

.gallery-side {
    height: 145px;
}

.about-cta {
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-header), var(--navy));
    box-shadow: var(--shadow);
}

.about-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 20px;
}

.about-cta .btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 10px 22px;
}

.about-cta .about-contact-line {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.about-cta .about-contact-line a {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, .45);
    padding-bottom: 1px;
    white-space: nowrap;
}

.about-cta .about-contact-line a:hover {
    border-bottom-color: #fff;
}

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
    color: var(--navy);
    background: var(--cream-2);
}

/* Flash messages (bottom of page content) */
.site-flash-messages {
    margin-top: 2rem;
    margin-bottom: 0.25rem;
}

.site-flash-messages .alert {
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
}

.page-contact .site-flash-messages {
    margin-top: 1.75rem;
}

.page-contact .site-flash-messages .alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.page-contact .site-flash-messages .alert-danger {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Contact page */
.contact-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}

.contact-info-card,
.contact-form-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.contact-info-card {
    background:
        radial-gradient(520px 220px at 20% 0%, rgba(255, 107, 0, .18), transparent 60%),
        linear-gradient(180deg, var(--navy-header) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, .88);
    padding: 32px 28px;
}

.contact-info-card h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-card__intro p {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.contact-info-card__details {
    margin-top: 8px;
}

.contact-line-item {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    align-items: flex-start;
}

.contact-line-item > div:last-child {
    flex: 1;
    min-width: 0;
}

.contact-line-text {
    word-break: break-word;
}

@media (min-width: 992px) {
    .page-contact .contact-page__grid {
        align-items: stretch;
    }

    .page-contact .contact-page__info-col,
    .page-contact .contact-page__form-col {
        display: flex;
    }

    .page-contact .contact-info-card,
    .page-contact .contact-form-card {
        width: 100%;
    }

    .page-contact .contact-info-card {
        display: flex;
        flex-direction: column;
        padding: 36px 32px 32px;
    }

    .page-contact .contact-info-card__intro {
        flex: 0 0 auto;
    }

    .page-contact .contact-info-card__intro p {
        max-width: none;
    }

    .page-contact .contact-info-card__details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 28px;
        padding-top: 4px;
        min-height: 0;
    }

    .page-contact .contact-line-item {
        margin-top: 0;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .page-contact .contact-line-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .page-contact .contact-page .contact-icon {
        width: 44px;
        height: 44px;
    }

    .page-contact .contact-page .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .page-contact .contact-line-title {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .page-contact .contact-line-text {
        font-size: 15px;
        line-height: 1.5;
    }
}

.contact-page .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    flex: 0 0 auto;
}

.contact-page .contact-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, .95);
}

.contact-line-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.contact-line-text {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    margin: 0;
    line-height: 1.45;
}

.contact-form-card {
    background: #fff;
    padding: 28px;
}

.contact-form-card h3 {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--ink-soft);
    font-size: 13px;
}

.contact-form-control {
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 44px;
    font-size: 14px;
    color: var(--ink);
    padding: 10px 12px;
    box-shadow: none !important;
}

textarea.contact-form-control {
    height: auto;
    min-height: 104px;
    resize: vertical;
}

.contact-form-control:focus {
    border-color: rgba(255, 107, 0, .5);
}

.captcha-mock {
    margin-top: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    background: #f3f4f6;
}

.captcha-mock__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.captcha-mock__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.captcha-mock__box {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 2px solid #94a3b8;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, background-color .2s ease;
}

.captcha-mock__box::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    margin-top: -2px;
    transition: transform .15s ease;
}

.captcha-mock__input:checked + .captcha-mock__box,
.captcha-mock.is-verified .captcha-mock__box {
    border-color: #2563eb;
    background: #2563eb;
}

.captcha-mock__input:checked + .captcha-mock__box::after,
.captcha-mock.is-verified .captcha-mock__box::after {
    transform: rotate(45deg) scale(1);
}

.captcha-mock.is-verifying .captcha-mock__box {
    border-color: #2563eb;
    background: #dbeafe;
}

.captcha-mock.is-verifying .captcha-mock__box::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #2563eb;
    border-top-color: transparent;
    border-radius: 50%;
    border-width: 2px;
    transform: none;
    margin-top: 0;
    animation: captcha-spin .7s linear infinite;
}

.captcha-mock__text {
    font-size: 15px;
    font-weight: 500;
    color: #1e3a5f;
    line-height: 1.3;
}

.captcha-mock__label:focus-within .captcha-mock__box {
    outline: 2px solid rgba(37, 99, 235, .35);
    outline-offset: 2px;
}

.captcha-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.4;
}

.captcha-note.is-pending {
    color: #2563eb;
}

.captcha-note.is-error {
    color: #dc2626;
}

.captcha-note.is-success {
    color: #16a34a;
}

@keyframes captcha-spin {
    to {
        transform: rotate(360deg);
    }
}

.captcha-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.btn-contact-submit {
    margin-top: 14px;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--orange-glow);
}

.btn-contact-submit:hover {
    filter: brightness(1.04);
    color: #fff;
}

.btn-contact-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.contact-verify-modal .modal-content {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .22);
    overflow: hidden;
}

.contact-verify-modal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    background: #fff;
}

.contact-verify-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.contact-verify-modal .modal-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.contact-verify-modal.is-success .modal-body p {
    color: #16a34a;
    font-weight: 500;
}

.contact-verify-modal.is-error .modal-body p {
    color: #dc2626;
    font-weight: 500;
}

.contact-verify-modal .modal-footer {
    border-top: 1px solid var(--border);
    padding: 12px 20px 16px;
    justify-content: center;
}

.btn-contact-verify-ok {
    min-width: 120px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 700;
}

.btn-contact-verify-ok:hover {
    filter: brightness(1.04);
    color: #fff;
}
