/**
 * Krish Florist — homepage-only premium styles (loaded from index.php).
 * Scoped with body.home-premium where needed to avoid leaking to other pages.
 */

:root {
    --hp-rose: #f9e8ec;
    --hp-blush: #fdf2f4;
    --hp-sage: #e8f2ec;
    --hp-cream: #fffbf7;
    --hp-ink: #1c2b24;
    --hp-muted: #5c6d66;
    --hp-line: rgba(28, 43, 36, 0.08);
    --hp-radius: 20px;
    --hp-radius-sm: 14px;
    --hp-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --hp-font-ui: "DM Sans", system-ui, -apple-system, sans-serif;
}

body.home-premium {
    font-family: var(--hp-font-ui);
    color: var(--hp-ink);
    background: var(--hp-cream);
    overflow-x: hidden;
}

body.home-premium img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.home-premium a {
    color: inherit;
}

.hp-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hp-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-muted);
    margin-bottom: 0.65rem;
}

.hp-h2 {
    font-family: var(--hp-font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: var(--hp-ink);
}

.hp-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--hp-muted);
    max-width: 52ch;
    margin: 0 auto;
}

.hp-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* —— Hero (carousel) —— */
.hp-hero {
    position: relative;
    min-height: min(88vh, 720px);
    padding: 3rem 0 5.75rem;
    margin-top: 0;
    overflow: hidden;
}

.hp-hero-slides {
    position: absolute;
    inset: 0;
}

.hp-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hp-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 9s ease-out;
}

.hp-hero-slide.is-active .hp-hero-bg {
    transform: scale(1);
}

.hp-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 60% at 82% 32%, rgba(200, 140, 90, 0.14) 0%, transparent 58%),
        radial-gradient(circle at 10% 18%, rgba(255, 228, 200, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(90, 40, 55, 0.14) 0%, transparent 48%),
        linear-gradient(
            108deg,
            rgba(6, 6, 9, 0.94) 0%,
            rgba(18, 14, 20, 0.88) 35%,
            rgba(36, 26, 28, 0.62) 68%,
            rgba(48, 38, 34, 0.38) 100%
        );
}

.hp-hero-petals {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hp-petal {
    position: absolute;
    width: 14px;
    height: 22px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: rgba(255, 255, 255, 0.38);
    animation: hp-float 8s ease-in-out infinite;
    opacity: 0.88;
}

.hp-petal--sm {
    width: 9px;
    height: 14px;
    opacity: 0.55;
}

.hp-petal:nth-child(1) {
    left: 8%;
    top: 22%;
    animation-delay: 0s;
}
.hp-petal:nth-child(2) {
    left: 18%;
    top: 68%;
    animation-delay: 1.2s;
    transform: rotate(25deg);
}
.hp-petal:nth-child(3) {
    right: 12%;
    top: 30%;
    animation-delay: 2s;
}
.hp-petal:nth-child(4) {
    right: 22%;
    top: 72%;
    animation-delay: 0.5s;
    transform: rotate(-18deg);
}
.hp-petal:nth-child(5) {
    left: 42%;
    top: 12%;
    animation-delay: 1.8s;
}
.hp-petal:nth-child(6) {
    left: 62%;
    top: 55%;
    animation-delay: 0.9s;
}
.hp-petal:nth-child(7) {
    right: 6%;
    top: 48%;
    animation-delay: 2.2s;
}
.hp-petal:nth-child(8) {
    left: 28%;
    top: 38%;
    animation-delay: 1.4s;
}

@keyframes hp-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(6deg);
    }
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: clamp(0.75rem, 3vw, 1.75rem) 1.25rem 0;
}

.hp-hero-eyebrow {
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    animation: hp-fade-up 0.85s ease both;
}

.hp-hero .hp-hero-title,
.hp-hero h1.hp-hero-title {
    font-family: var(--hp-font-display);
    font-size: clamp(2.2rem, 5.6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 0.85rem;
    text-shadow: 0 6px 42px rgba(0, 0, 0, 0.48);
    letter-spacing: -0.02em;
    animation: hp-fade-up 0.85s ease 0.08s both;
}

.hp-hero-title--display {
    margin: 0 0 0.85rem;
}

.hp-hero-kicker {
    font-family: var(--hp-font-display);
    font-size: clamp(1.12rem, 3vw, 1.65rem);
    font-weight: 600;
    font-style: italic;
    color: #e8c96b;
    margin: -0.2rem 0 0.95rem;
    line-height: 1.25;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    animation: hp-fade-up 0.85s ease 0.1s both;
}

.hp-hero .hp-sub {
    font-size: clamp(1rem, 2.4vw, 1.12rem);
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 1.65rem;
    max-width: 38ch;
    animation: hp-fade-up 0.85s ease 0.14s both;
}

.hp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.65rem;
    animation: hp-fade-up 0.85s ease 0.2s both;
}

.hp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: hp-fade-up 0.85s ease 0.26s both;
}

.hp-cta-row--hero {
    gap: 0.65rem;
}

.hp-btn-hero-gold {
    background: linear-gradient(168deg, #fff8e4 0%, #e8cf78 42%, #b8923a 100%);
    color: #1a1208 !important;
    border: 1px solid rgba(255, 245, 220, 0.55);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
    padding: 0.88rem 1.45rem;
    min-width: 8.5rem;
    justify-content: center;
}

.hp-btn-hero-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(201, 162, 55, 0.38);
}

.hp-btn-hero-gold-outline {
    background: rgba(0, 0, 0, 0.12);
    color: #fdf6e3 !important;
    border: 2px solid rgba(232, 201, 107, 0.88);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 0.88rem 1.45rem;
    min-width: 8.5rem;
    justify-content: center;
}

.hp-btn-hero-gold-outline:hover {
    background: rgba(232, 201, 107, 0.14);
    border-color: #f5e6b8;
    transform: translateY(-2px);
}

.hp-hero-sameday-link {
    margin: 1.1rem 0 0;
    font-size: 0.88rem;
    animation: hp-fade-up 0.85s ease 0.32s both;
}

.hp-hero-sameday-link a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hp-hero-sameday-link a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.hp-hero-controls {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0 1rem;
    pointer-events: none;
}

.hp-hero-controls > * {
    pointer-events: auto;
}

.hp-hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    backdrop-filter: blur(8px);
}

.hp-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.06);
}

.hp-hero-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    min-height: 28px;
}

.hp-hero-dots button {
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    padding: 0;
    transition: width 0.35s ease, background 0.35s ease, opacity 0.25s ease;
    width: 7px;
}

.hp-hero-dots button.is-active {
    width: 28px;
    background: #fff;
}

.hp-hero-dots button:hover:not(.is-active) {
    opacity: 0.85;
}

@keyframes hp-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    font-family: var(--hp-font-ui);
}

.hp-btn-primary {
    background: #fff;
    color: var(--hp-ink);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.hp-btn-hero-primary {
    background: linear-gradient(135deg, #fffdf8 0%, #f3e7c8 38%, #d4b45c 100%);
    color: #16160f !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hp-btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(201, 162, 55, 0.35);
}

.hp-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.52);
}

.hp-btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
}

.hp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* —— Category shell (premium frame) —— */
.hp-cat-shell {
    background: #fff;
    border-radius: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(201, 175, 120, 0.28);
    box-shadow: 0 20px 60px rgba(28, 43, 36, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: clamp(1rem, 2.5vw, 1.75rem);
}

/* —— Compact product rails —— */
.hp-rail-section {
    overflow: hidden;
    padding: clamp(2.1rem, 4vw, 3.25rem) 0;
}

.hp-rail-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.hp-rail-head .hp-section-head,
.hp-rail-head > div {
    text-align: left;
}

.hp-rail-head .hp-eyebrow {
    margin-bottom: 0.35rem;
}

.hp-rail-title {
    margin: 0;
    text-align: left;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.hp-rail-shop-all {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hp-ink);
    text-decoration: none;
    border-bottom: 2px solid rgba(47, 111, 78, 0.35);
    padding-bottom: 2px;
    align-self: center;
    transition: border-color 0.2s, color 0.2s;
}

.hp-rail-shop-all:hover {
    border-color: var(--hp-ink);
}

.hp-rail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.45rem;
}

.hp-rail-view {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.2rem 0 0.35rem;
}

.hp-rail-view::-webkit-scrollbar {
    display: none;
}

.hp-rail-track {
    display: flex;
    gap: 0.85rem;
    padding: 2px 2px 10px;
}

.hp-rail-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--hp-line);
    background: #fff;
    color: var(--hp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(28, 43, 36, 0.06);
}

.hp-rail-arrow:hover {
    background: var(--hp-blush);
    transform: scale(1.05);
}

.hp-rail-card {
    flex: 0 0 min(188px, 72vw);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--hp-line);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 22px rgba(28, 43, 36, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

@media (min-width: 480px) {
    .hp-rail-card {
        flex-basis: 200px;
    }
}

@media (min-width: 720px) {
    .hp-rail-card {
        flex-basis: 216px;
    }
}

.hp-rail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(28, 43, 36, 0.1);
}

.hp-rail-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #dc2626;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.22rem 0.45rem;
    border-radius: 6px;
}

.hp-rail-img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--hp-blush);
}

.hp-rail-img-wrap a {
    display: block;
    height: 100%;
}

.hp-rail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-rail-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.hp-rail-wish:hover {
    transform: scale(1.06);
}

.hp-rail-body {
    padding: 0.7rem 0.8rem 0.85rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.hp-rail-body form {
    margin-top: auto;
}

.hp-rail-name {
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    line-height: 1.35;
    font-family: var(--hp-font-ui);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-rail-name a {
    text-decoration: none;
    color: var(--hp-ink);
}

.hp-rail-name a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-rail-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: var(--hp-muted);
    margin-bottom: 0.2rem;
}

.hp-rail-stars {
    color: #f59e0b;
    letter-spacing: 0.5px;
}

.hp-rail-price-row {
    display: flex;
    gap: 0.35rem;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.hp-rail-old {
    font-size: 0.68rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.hp-rail-price {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--hp-ink);
}

.hp-rail-add {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 10px;
    background: var(--hp-ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.74rem;
    cursor: pointer;
    transition: filter 0.2s;
}

.hp-rail-add:hover:not(:disabled) {
    filter: brightness(1.08);
}

.hp-rail-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.hp-rail-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0;
    padding-bottom: 0.15rem;
}

.hp-rail-dots button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.2s, width 0.25s, background 0.25s;
}

.hp-rail-dots button.is-active {
    background: var(--hp-ink);
    width: 20px;
    border-radius: 99px;
}

@media (max-width: 520px) {
    .hp-rail-arrow {
        display: none;
    }
    .hp-rail {
        grid-template-columns: 1fr;
    }
    .hp-rail-view {
        width: 100%;
        min-width: 0;
    }
}

/* —— Sections —— */
.hp-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.hp-section.hp-alt {
    background: linear-gradient(180deg, var(--hp-blush) 0%, #fff 100%);
}

.hp-section.hp-sage {
    background: linear-gradient(180deg, var(--hp-sage) 0%, #fff 100%);
}

/* —— Category grid —— */
.hp-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

@media (min-width: 720px) {
    .hp-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.15rem;
    }
}

.hp-cat-card {
    position: relative;
    border-radius: var(--hp-radius);
    overflow: hidden;
    min-height: 280px;
    background: #e8ece9;
    box-shadow: 0 10px 34px rgba(28, 43, 36, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hp-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(28, 43, 36, 0.12);
}

.hp-cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.hp-cat-card:hover img {
    transform: scale(1.06);
}

.hp-cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 43, 36, 0.82), transparent 55%);
    z-index: 1;
}

.hp-cat-body .hp-btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--hp-ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hp-cat-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem;
    color: #fff;
}

.hp-cat-body h3 {
    font-family: var(--hp-font-display);
    font-size: 1.45rem;
    margin: 0 0 0.75rem;
}

/* —— Products —— */
.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.hp-product {
    background: #fff;
    border-radius: var(--hp-radius);
    overflow: hidden;
    border: 1px solid var(--hp-line);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.hp-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(28, 43, 36, 0.1);
}

.hp-product-visual {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--hp-blush);
}

.hp-product-visual a {
    display: block;
    height: 100%;
}

.hp-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.45s ease, transform 0.5s ease;
}

.hp-product-visual img.hp-img-alt {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.hp-product:hover .hp-product-visual img.hp-img-main {
    opacity: 0;
}

.hp-product:hover .hp-product-visual img.hp-img-alt {
    opacity: 1;
    transform: scale(1.04);
}

.hp-product-actions {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 3;
}

.hp-icon-round {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--hp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hp-icon-round:hover {
    background: #fff;
    transform: scale(1.06);
}

.hp-icon-round.is-saved {
    color: #e11d48;
}

.hp-discount {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    z-index: 2;
}

.hp-stock-pill {
    position: absolute;
    bottom: 0.65rem;
    left: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--hp-ink);
    z-index: 2;
}

.hp-product-body {
    padding: 1.1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.hp-product-body h3 {
    font-family: var(--hp-font-display);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-product-body form {
    margin-top: auto;
}

.hp-product-body h3 a {
    text-decoration: none;
    color: var(--hp-ink);
}

.hp-product-body h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hp-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.8rem;
    color: var(--hp-muted);
}

.hp-stars,
.hp-rail-stars,
.hp-testi-stars {
    color: #f59e0b;
}

.hp-stars-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.hp-stars-icons i {
    font-size: 0.72em;
}

.hp-rail-meta .hp-stars-icons i {
    font-size: 0.65rem;
}

.hp-testi-stars.hp-stars-icons i {
    font-size: 0.85rem;
}

.hp-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.hp-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hp-ink);
}

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

.hp-delivery-note {
    font-size: 0.78rem;
    color: var(--hp-muted);
    margin-top: 0.15rem;
}

.hp-product .hp-btn-block {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 0.75rem;
    background: var(--hp-ink);
    color: #fff;
    font-size: 0.85rem;
}

.hp-product .hp-btn-block:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.hp-product .hp-btn-block:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: none;
}

/* —— Same-day band —— */
.hp-delivery-band {
    border-radius: var(--hp-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(135deg, var(--hp-ink) 0%, #2d4a3e 100%);
    color: #fff;
}

@media (min-width: 900px) {
    .hp-delivery-band {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hp-delivery-copy {
    padding: clamp(2rem, 4vw, 3rem);
}

.hp-delivery-copy h2 {
    font-family: var(--hp-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0 0 0.75rem;
}

.hp-delivery-copy p {
    opacity: 0.9;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 46ch;
}

.hp-delivery-meta {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.hp-delivery-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.92;
}

.hp-delivery-art {
    min-height: 220px;
    background: center/cover no-repeat;
    position: relative;
}

.hp-delivery-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hp-ink) 0%, transparent 55%);
}

/* —— Trust icons —— */
.hp-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hp-trust-card {
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius-sm);
    padding: 1.35rem 1rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hp-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28, 43, 36, 0.08);
}

.hp-trust-card i {
    font-size: 1.5rem;
    color: #2f6f4e;
    margin-bottom: 0.65rem;
}

.hp-trust-card h3 {
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
    font-family: var(--hp-font-ui);
}

.hp-trust-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--hp-muted);
    line-height: 1.45;
}

/* —— Testimonials —— */
.hp-testi {
    position: relative;
}

.hp-testi-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0 -0.5rem;
    padding: 0.25rem 0.5rem 0.75rem;
    scrollbar-width: none;
}

.hp-testi-viewport::-webkit-scrollbar {
    display: none;
}

.hp-testi-track {
    display: flex;
    gap: 1rem;
}

.hp-testi-card {
    flex: 0 0 min(100%, 380px);
    scroll-snap-align: start;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .hp-testi-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (min-width: 1100px) {
    .hp-testi-card {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

.hp-testi-inner {
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 28px rgba(28, 43, 36, 0.05);
}

.hp-testi-stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.hp-testi-quote {
    font-style: italic;
    line-height: 1.6;
    color: var(--hp-muted);
    margin: 0 0 1rem;
}

.hp-testi-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.hp-testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.hp-testi-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, background 0.2s;
}

.hp-testi-dots button.active {
    background: var(--hp-ink);
    transform: scale(1.25);
}

/* —— Instagram grid —— */
.hp-ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .hp-ig-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hp-ig-cell {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.hp-ig-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-ig-cell:hover img {
    transform: scale(1.08);
}

.hp-ig-cell::after {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    background: rgba(28, 43, 36, 0.45);
    opacity: 0;
    transition: opacity 0.3s;
}

.hp-ig-cell:hover::after {
    opacity: 1;
}

/* —— Corporate —— */
.hp-corp-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hp-corp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hp-corp-card {
    border-radius: var(--hp-radius);
    padding: 2rem 1.5rem;
    color: #fff;
    text-decoration: none;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease;
}

.hp-corp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
}

.hp-corp-card:hover {
    transform: translateY(-4px);
}

.hp-corp-card h3,
.hp-corp-card p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.hp-corp-card h3 {
    font-family: var(--hp-font-display);
    font-size: 1.65rem;
    margin-bottom: 0.35rem;
}

.hp-corp-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* —— Newsletter —— */
.hp-newsletter {
    border-radius: var(--hp-radius);
    background: linear-gradient(120deg, var(--hp-rose), #fff 55%, var(--hp-sage));
    border: 1px solid var(--hp-line);
    padding: clamp(2rem, 5vw, 3rem);
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 800px) {
    .hp-newsletter {
        grid-template-columns: 1fr 1fr;
    }
}

.hp-newsletter h2 {
    font-family: var(--hp-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 0.5rem;
}

.hp-newsletter .hp-coupon {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: #fff;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border: 1px dashed rgba(28, 43, 36, 0.25);
}

.hp-news-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hp-news-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--hp-line);
    font-size: 1rem;
    font-family: var(--hp-font-ui);
}

.hp-news-form button {
    padding: 0.9rem 1.35rem;
    border-radius: 14px;
    border: none;
    background: var(--hp-ink);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--hp-font-ui);
    transition: filter 0.2s;
}

.hp-news-form button:hover {
    filter: brightness(1.08);
}

/* —— Booking / lead —— */
.hp-booking {
    background: #fff;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-line);
    overflow: hidden;
    display: grid;
}

@media (min-width: 900px) {
    .hp-booking {
        grid-template-columns: 1fr 1fr;
    }
}

.hp-booking-aside {
    background: linear-gradient(160deg, #1c2b24, #2f6f4e);
    color: #fff;
    padding: 2rem 1.75rem;
}

.hp-booking-form {
    padding: 2rem 1.75rem;
}

.hp-booking-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--hp-muted);
}

.hp-booking-form input,
.hp-booking-form select,
.hp-booking-form textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    border: 1px solid var(--hp-line);
    margin-bottom: 0.85rem;
    font-family: var(--hp-font-ui);
    font-size: 1rem;
}

.hp-booking-form button[type="submit"] {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 12px;
    background: var(--hp-ink);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--hp-font-ui);
}

/* —— Blog strip —— */
.hp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.hp-blog-card {
    background: #fff;
    border-radius: var(--hp-radius-sm);
    overflow: hidden;
    border: 1px solid var(--hp-line);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(28, 43, 36, 0.08);
}

.hp-blog-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.hp-blog-card .hp-b-inner {
    padding: 1.1rem;
}

.hp-blog-card h3 {
    font-family: var(--hp-font-display);
    font-size: 1.15rem;
    margin: 0;
    color: var(--hp-ink);
}

/* —— Map —— */
.hp-map-frame {
    border-radius: var(--hp-radius);
    overflow: hidden;
    border: 1px solid var(--hp-line);
    box-shadow: 0 12px 40px rgba(28, 43, 36, 0.08);
}

/* —— Order alert —— */
.hp-alert-success {
    background: #ecfdf5;
    color: #065f46;
    padding: 1.25rem;
    text-align: center;
    margin: 1rem auto 0;
    max-width: 720px;
    border-radius: 14px;
    border: 1px solid #a7f3d0;
}

/* —— Quick view modal —— */
.hp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 11000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hp-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hp-modal {
    background: #fff;
    border-radius: var(--hp-radius);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.hp-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    z-index: 2;
}

.hp-modal-body {
    padding: 1.5rem;
}

/* —— Scroll reveal (always visible; class used for optional future motion) —— */
.hp-reveal {
    opacity: 1;
    transform: none;
}

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

/* —— Footer overrides (paired with footer.php) —— */
body.home-premium .site-footer-modern {
    background: linear-gradient(180deg, #fff 0%, var(--hp-cream) 100%);
    border-top: 1px solid var(--hp-line);
    margin-top: 0;
    padding-top: 4rem;
}

body.home-premium .footer-main-grid {
    gap: 2.5rem;
}

.hp-modal .hp-btn-block {
    margin-top: 0;
}

@media (max-width: 639px) {
    .hp-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hp-section {
        padding: clamp(2rem, 5vw, 3.25rem) 0;
    }

    .hp-section-head {
        margin-bottom: 1.65rem;
    }

    .hp-h2 {
        font-size: clamp(1.5rem, 5.5vw, 2.05rem);
    }

    .hp-lead {
        font-size: 0.95rem;
    }

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

    .hp-product-body {
        padding: 0.85rem 0.75rem 1rem;
        gap: 0.4rem;
    }

    .hp-product-body h3 {
        font-size: 1rem;
    }

    .hp-price {
        font-size: 1.05rem;
    }

    .hp-delivery-note {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .hp-rail-head {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hp-hero {
        min-height: min(70vh, 540px);
        padding: 1.5rem 0 3.75rem;
    }

    .hp-hero-inner {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding-top: 0.35rem;
    }

    .hp-hero .hp-hero-title,
    .hp-hero h1.hp-hero-title {
        font-size: clamp(1.65rem, 6.8vw, 2.35rem);
    }

    .hp-hero-title--display {
        font-size: clamp(1.65rem, 6.8vw, 2.35rem);
    }

    .hp-hero-kicker {
        font-size: clamp(0.98rem, 3.8vw, 1.28rem);
    }

    .hp-hero .hp-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 36ch;
        font-size: 0.93rem;
        line-height: 1.55;
    }

    .hp-hero-badges {
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .hp-chip {
        font-size: 0.7rem;
        padding: 0.28rem 0.62rem;
    }

    .hp-cta-row--hero {
        justify-content: center;
    }

    .hp-btn-hero-gold,
    .hp-btn-hero-gold-outline {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
        max-width: 11.5rem;
        padding: 0.76rem 1rem;
        font-size: 0.82rem;
    }

    .hp-hero-arrow {
        display: none;
    }

    .hp-hero-controls {
        bottom: 0.5rem;
        gap: 0.5rem;
    }

    .hp-cat-card {
        min-height: 220px;
    }

    .hp-testi-inner {
        padding: 1.1rem;
    }

    .hp-testi-quote {
        font-size: 0.9rem;
    }
}

body.home-premium #faq-section.section {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: transparent;
}

body.home-premium #faq-section .section-title {
    font-family: var(--hp-font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    color: var(--hp-ink);
}

body.home-premium #faq-section .section-subtitle {
    color: var(--hp-muted);
}

/* —— Category-focused hero open (replaces legacy banner) —— */
.hp-hero-open {
    background: linear-gradient(180deg, #fffdf9 0%, var(--hp-cream) 42%, #fff 100%);
    padding: clamp(1.25rem, 3vw, 2rem) 0 0;
    border-bottom: 1px solid rgba(28, 43, 36, 0.06);
}

.hp-hero-open-inner {
    padding-bottom: 0.35rem;
}

.hp-hero-open-head {
    text-align: center;
    margin-bottom: 1.35rem;
}

.hp-hero-open-eyebrow {
    color: var(--hp-muted);
    margin-bottom: 0.5rem;
}

.hp-hero-open-title {
    font-family: var(--hp-font-display);
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--hp-ink);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.hp-hero-open-sub {
    margin: 0 auto;
    max-width: 40ch;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--hp-muted);
}

.hp-cat-scroller {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 0.15rem 0 1.1rem;
    margin: 0 -0.25rem;
    scrollbar-width: none;
    cursor: grab;
}

.hp-cat-scroller:active {
    cursor: grabbing;
}

.hp-cat-scroller::-webkit-scrollbar {
    display: none;
}

.hp-cat-chip-card {
    flex: 0 0 5.75rem;
    scroll-snap-align: start;
    text-decoration: none;
    color: var(--hp-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.28s ease;
}

.hp-cat-chip-card:hover {
    transform: translateY(-4px);
}

.hp-cat-chip-visual {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 120, 0.45);
    box-shadow: 0 8px 22px rgba(28, 43, 36, 0.08);
    background: #fff;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.hp-cat-chip-card:hover .hp-cat-chip-visual {
    border-color: rgba(201, 162, 55, 0.75);
    box-shadow: 0 12px 28px rgba(201, 162, 55, 0.22);
}

.hp-cat-chip-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-cat-chip-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    max-width: 5.5rem;
}

.hp-marquee-section {
    padding: 0.85rem 0 clamp(1.35rem, 3vw, 2rem);
    background: linear-gradient(180deg, rgba(253, 242, 244, 0.55) 0%, transparent 100%);
}

.hp-marquee-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.hp-marquee-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hp-muted);
}

.hp-marquee-label i {
    color: #c9a237;
    margin-right: 0.35rem;
}

.hp-marquee-view-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hp-ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 43, 36, 0.25);
}

.hp-marquee-view-all:hover {
    color: #9a7b2a;
}

.hp-marquee-outer {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hp-marquee-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    animation: hp-marquee-scroll var(--hp-marquee-duration, 48s) linear infinite;
    will-change: transform;
}

.hp-marquee-track.is-paused {
    animation-play-state: paused;
}

@keyframes hp-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.hp-marquee-card {
    flex: 0 0 auto;
    width: min(11.5rem, 42vw);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--hp-ink);
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(28, 43, 36, 0.07);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 43, 36, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-marquee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(28, 43, 36, 0.1);
}

.hp-marquee-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--hp-blush);
}

.hp-marquee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-marquee-body {
    padding: 0.55rem 0.65rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hp-marquee-name {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-marquee-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: #9a7b2a;
}

@media (min-width: 640px) {
    .hp-cat-chip-card {
        flex: 0 0 6.5rem;
    }

    .hp-cat-chip-visual {
        width: 5.25rem;
        height: 5.25rem;
    }

    .hp-cat-chip-label {
        font-size: 0.72rem;
        max-width: 6.25rem;
    }

    .hp-marquee-card {
        width: 12.5rem;
    }
}

@media (max-width: 639px) {
    .hp-hero-open-title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    /* Fixed 5-per-row grid (2 rows for 10 categories) — IGP-style mobile */
    .hp-cat-scroller {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.65rem 0.3rem;
        overflow: visible;
        scroll-snap-type: none;
        padding: 0 0 0.9rem;
        margin: 0;
        cursor: default;
        -webkit-overflow-scrolling: auto;
    }

    .hp-cat-scroller:active {
        cursor: default;
    }

    .hp-cat-chip-card {
        flex: none;
        width: 100%;
        min-width: 0;
        scroll-snap-align: unset;
        gap: 0.28rem;
    }

    .hp-cat-chip-card:hover {
        transform: translateY(-2px);
    }

    .hp-cat-chip-visual {
        width: 100%;
        max-width: 3.25rem;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
        border-width: 1.5px;
    }

    .hp-cat-chip-label {
        font-size: clamp(0.48rem, 2.35vw, 0.6rem);
        max-width: 100%;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp-marquee-track {
        animation: none;
    }

    .hp-marquee-outer {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .hp-marquee-track {
        width: auto;
        flex-wrap: nowrap;
    }
}

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