:root {
    --hs-red: #df2f16;
    --hs-red-dark: #9f1d0e;
    --hs-orange: #ff8a1c;
    --hs-yellow: #ffd166;
    --hs-blue: #083b68;
    --hs-blue-soft: #0c5a92;
    --hs-cream: #fff8e8;
    --hs-white: #ffffff;
    --hs-bg: #fff7ef;
    --hs-text: #182033;
    --hs-muted: #657084;
    --hs-border: rgba(15, 23, 42, 0.10);
    --hs-shadow: 0 24px 70px rgba(24, 32, 51, 0.16);
    --hs-shadow-soft: 0 14px 40px rgba(24, 32, 51, 0.10);
    --hs-radius-xl: 32px;
    --hs-radius-lg: 24px;
    --hs-radius-md: 18px;
    --hs-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: var(--hs-bg);
    color: var(--hs-text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.hs-container {
    width: min(var(--hs-container), calc(100% - 36px));
    margin: 0 auto;
}

.hs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 232, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.hs-navbar {
    width: min(var(--hs-container), calc(100% - 36px));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hs-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hs-brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(223, 47, 22, 0.25);
}

.hs-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.hs-brand small {
    display: block;
    color: var(--hs-muted);
    font-size: 0.76rem;
    margin-top: 2px;
}

.hs-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.94rem;
    font-weight: 700;
}

.hs-nav-links a {
    color: rgba(24, 32, 51, 0.78);
    transition: 0.25s ease;
}

.hs-nav-links a:hover {
    color: var(--hs-red);
}

.hs-nav-cta {
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--hs-white) !important;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    box-shadow: 0 12px 28px rgba(223, 47, 22, 0.28);
}

.hs-menu-btn {
    display: none;
    border: 0;
    background: var(--hs-white);
    color: var(--hs-blue);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.4rem;
    box-shadow: var(--hs-shadow-soft);
}

.hs-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.hs-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 209, 102, 0.55), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(8, 59, 104, 0.28), transparent 30%),
        linear-gradient(135deg, #fff8e8 0%, #fff1dd 42%, #ffe3d1 100%);
}

.hs-hero-bg::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -260px;
    bottom: -260px;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    opacity: 0.16;
    border-radius: 50%;
}

.hs-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hs-pill,
.hs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red-dark);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hs-hero h1 {
    margin: 24px 0 18px;
    max-width: 720px;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    color: #141b2d;
}

.hs-hero h1 span {
    color: var(--hs-red);
}

.hs-hero p {
    margin: 0;
    max-width: 620px;
    color: var(--hs-muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.hs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.25s ease;
}

.hs-btn:hover {
    transform: translateY(-3px);
}

.hs-btn-primary {
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    color: var(--hs-white);
    box-shadow: 0 18px 38px rgba(223, 47, 22, 0.30);
}

.hs-btn-light {
    background: rgba(255, 255, 255, 0.86);
    color: var(--hs-blue);
    border: 1px solid rgba(8, 59, 104, 0.10);
    box-shadow: var(--hs-shadow-soft);
}

.hs-hero-stats {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hs-hero-stats div {
    min-width: 126px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--hs-shadow-soft);
}

.hs-hero-stats strong {
    display: block;
    color: var(--hs-blue);
    font-size: 1.1rem;
}

.hs-hero-stats span {
    display: block;
    color: var(--hs-muted);
    font-size: 0.86rem;
    margin-top: 4px;
}

.hs-hero-visual {
    position: relative;
    min-height: 620px;
}

.hs-logo-card {
    position: absolute;
    inset: 30px 20px auto auto;
    width: min(480px, 100%);
    padding: 18px;
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--hs-shadow);
    transform: rotate(2deg);
}

.hs-logo-card img {
    border-radius: 32px;
}

.hs-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--hs-shadow-soft);
    animation: hsFloat 4s ease-in-out infinite;
}

.hs-floating-card span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 209, 102, 0.35);
    font-size: 1.35rem;
}

.hs-floating-card strong,
.hs-floating-card small {
    display: block;
}

.hs-floating-card strong {
    color: var(--hs-blue);
}

.hs-floating-card small {
    color: var(--hs-muted);
    margin-top: 2px;
}

.hs-card-one {
    left: 0;
    top: 90px;
}

.hs-card-two {
    right: 0;
    bottom: 120px;
    animation-delay: 0.8s;
}

.hs-card-three {
    left: 20px;
    bottom: 46px;
    animation-delay: 1.4s;
}

@keyframes hsFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.hs-section {
    padding: 96px 0;
}

.hs-section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.50), rgba(255,248,232,0.92));
}

.hs-section-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.hs-section-head h2,
.hs-services-grid h2,
.hs-custom-card h2,
.hs-contact-card h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hs-section-head p,
.hs-services-grid p,
.hs-custom-card p,
.hs-contact-card p {
    color: var(--hs-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.hs-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.hs-category-card {
    min-height: 230px;
    padding: 24px;
    border-radius: var(--hs-radius-lg);
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    transition: 0.25s ease;
}

.hs-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hs-shadow);
}

.hs-category-card span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(223,47,22,0.12), rgba(255,209,102,0.28));
    font-size: 1.8rem;
}

.hs-category-card h3 {
    margin: 18px 0 10px;
    color: var(--hs-blue);
}

.hs-category-card p {
    margin: 0;
    color: var(--hs-muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.hs-services-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.hs-service-list {
    display: grid;
    gap: 16px;
}

.hs-service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--hs-radius-lg);
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
}

.hs-service-item span {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--hs-blue);
    color: white;
    font-size: 1.5rem;
}

.hs-service-item h3 {
    margin: 0 0 6px;
}

.hs-service-item p {
    margin: 0;
    font-size: 0.96rem;
}

.hs-custom-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: stretch;
}

.hs-custom-card {
    padding: 38px;
    border-radius: var(--hs-radius-xl);
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255,209,102,0.35), transparent 35%),
        linear-gradient(135deg, var(--hs-blue), #041d34);
    box-shadow: var(--hs-shadow);
}

.hs-custom-card span {
    font-size: 3.2rem;
}

.hs-custom-card p {
    color: rgba(255,255,255,0.76);
}

.hs-custom-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hs-custom-options div {
    min-height: 84px;
    display: flex;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    font-weight: 900;
    color: var(--hs-blue);
}

.hs-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hs-product-card {
    overflow: hidden;
    border-radius: var(--hs-radius-lg);
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
}

.hs-product-img {
    height: 220px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(255,209,102,0.45), transparent 35%),
        linear-gradient(135deg, rgba(223,47,22,0.14), rgba(8,59,104,0.12));
    font-size: 5rem;
}

.hs-product-info {
    padding: 24px;
}

.hs-product-info span {
    color: var(--hs-red);
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.hs-product-info h3 {
    margin: 8px 0 8px;
    color: var(--hs-blue);
}

.hs-product-info p {
    margin: 0 0 18px;
    color: var(--hs-muted);
    line-height: 1.65;
}

.hs-product-info button {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--hs-blue);
    color: var(--hs-white);
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.hs-product-info button:hover {
    background: var(--hs-red);
}

.hs-contact-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
}

.hs-contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 40px;
    border-radius: var(--hs-radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--hs-shadow);
}

.hs-contact-card h2 {
    color: var(--hs-blue);
}

.hs-footer {
    background: #071d33;
    color: white;
    padding: 46px 0;
}

.hs-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 30px;
}

.hs-footer strong {
    font-size: 1.2rem;
}

.hs-footer p,
.hs-footer a {
    color: rgba(255, 255, 255, 0.68);
}

.hs-footer span {
    display: block;
    font-weight: 900;
    margin-bottom: 12px;
}

.hs-footer a {
    display: block;
    margin: 8px 0;
}

.hs-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #18c267;
    color: white;
    font-size: 1.55rem;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(24, 194, 103, 0.35);
    transition: 0.25s ease;
}

.hs-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);
}

@media (max-width: 1100px) {
    .hs-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hs-hero-grid,
    .hs-services-grid,
    .hs-custom-grid {
        grid-template-columns: 1fr;
    }

    .hs-hero-visual {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .hs-menu-btn {
        display: inline-grid;
        place-items: center;
    }

    .hs-nav-links {
        position: fixed;
        top: 82px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--hs-shadow);
    }

    .hs-nav-links.is-open {
        display: flex;
    }

    .hs-nav-links a {
        padding: 12px;
    }

    .hs-hero {
        min-height: auto;
        padding: 46px 0 76px;
    }

    .hs-hero-visual {
        min-height: auto;
    }

    .hs-logo-card {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }

    .hs-floating-card {
        position: relative;
        inset: auto;
        margin-top: 14px;
        max-width: none;
    }

    .hs-card-one,
    .hs-card-two,
    .hs-card-three {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .hs-category-grid,
    .hs-product-grid,
    .hs-footer-grid {
        grid-template-columns: 1fr;
    }

    .hs-custom-options {
        grid-template-columns: 1fr;
    }

    .hs-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .hs-navbar {
        height: 74px;
    }

    .hs-brand img {
        width: 46px;
        height: 46px;
    }

    .hs-brand small {
        display: none;
    }

    .hs-nav-links {
        top: 74px;
    }

    .hs-hero h1 {
        font-size: 3.2rem;
    }

    .hs-hero-actions,
    .hs-hero-actions .hs-btn {
        width: 100%;
    }

    .hs-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hs-section {
        padding: 70px 0;
    }
}

.hs-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.65s ease;
}

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

.hs-catalog-toolbar {
    max-width: 820px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.hs-search-box {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 34px rgba(24, 32, 51, 0.09);
}

.hs-search-box span {
    font-size: 1.15rem;
}

.hs-search-box input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--hs-text);
    font-size: 1rem;
    font-weight: 700;
}

.hs-search-box input::placeholder {
    color: rgba(101, 112, 132, 0.82);
}

.hs-catalog-status {
    margin: 0 auto 26px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 59, 104, 0.08);
    color: var(--hs-blue);
    font-weight: 900;
    font-size: 0.9rem;
}

.hs-catalog-status.is-error {
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red-dark);
}

.hs-product-card-dynamic .hs-product-img {
    position: relative;
    overflow: hidden;
}

.hs-product-card-dynamic .hs-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 5rem;
    background:
        radial-gradient(circle at top, rgba(255,209,102,0.45), transparent 35%),
        linear-gradient(135deg, rgba(223,47,22,0.14), rgba(8,59,104,0.12));
}

.hs-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--hs-blue);
    font-size: 0.74rem;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(24, 32, 51, 0.14);
}

.hs-product-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0;
}

.hs-product-meta strong {
    color: var(--hs-red);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.hs-product-meta small {
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.76rem;
    white-space: nowrap;
}

.hs-product-meta small.is-available {
    background: rgba(24, 194, 103, 0.12);
    color: #0f7a41;
}

.hs-product-meta small.is-warning {
    background: rgba(255, 209, 102, 0.22);
    color: #9f6700;
}

.hs-product-action {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--hs-blue);
    color: var(--hs-white);
    font-weight: 900;
    transition: 0.25s ease;
}

.hs-product-action:hover {
    background: var(--hs-red);
    transform: translateY(-2px);
}

.hs-catalog-more {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.hs-catalog-empty,
.hs-catalog-error {
    grid-column: 1 / -1;
    padding: 44px 28px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    text-align: center;
}

.hs-catalog-empty span,
.hs-catalog-error span {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
}

.hs-catalog-empty h3,
.hs-catalog-error h3 {
    margin: 0 0 8px;
    color: var(--hs-blue);
}

.hs-catalog-empty p,
.hs-catalog-error p {
    margin: 0;
    color: var(--hs-muted);
}

@media (max-width: 720px) {
    .hs-catalog-toolbar {
        grid-template-columns: 1fr;
    }

    .hs-catalog-toolbar .hs-btn {
        width: 100%;
    }

    .hs-product-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hs-catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 209, 102, 0.42), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(8, 59, 104, 0.23), transparent 32%),
        linear-gradient(135deg, #fff8e8 0%, #fff0df 45%, #ffe1cf 100%);
}

.hs-catalog-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hs-catalog-hero h1 {
    margin: 22px 0 16px;
    max-width: 820px;
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    color: #141b2d;
}

.hs-catalog-hero p {
    max-width: 660px;
    color: var(--hs-muted);
    line-height: 1.8;
    font-size: 1.08rem;
}

.hs-catalog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hs-catalog-summary-card {
    padding: 34px;
    border-radius: var(--hs-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 40%),
        linear-gradient(135deg, var(--hs-blue), #041d34);
    color: white;
    box-shadow: var(--hs-shadow);
}

.hs-catalog-summary-card > span {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.hs-catalog-summary-card h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.hs-catalog-summary-card p {
    color: rgba(255,255,255,0.76);
}

.hs-catalog-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.hs-catalog-mini-stats div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}

.hs-catalog-mini-stats strong,
.hs-catalog-mini-stats small {
    display: block;
}

.hs-catalog-mini-stats strong {
    font-size: 1.25rem;
}

.hs-catalog-mini-stats small {
    margin-top: 3px;
    color: rgba(255,255,255,0.68);
}

.hs-catalog-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 26px;
    align-items: start;
}

.hs-catalog-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.hs-filter-card {
    padding: 24px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
}

.hs-filter-card h2,
.hs-filter-card h3 {
    margin: 0 0 8px;
    color: var(--hs-blue);
    letter-spacing: -0.03em;
}

.hs-filter-card p {
    margin: 0 0 20px;
    color: var(--hs-muted);
    line-height: 1.65;
}

.hs-filter-label {
    display: block;
    margin: 16px 0 8px;
    color: var(--hs-blue);
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hs-search-box-compact {
    height: 50px;
    box-shadow: none;
    background: rgba(248,250,252,0.96);
}

.hs-filter-control {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    outline: none;
    border-radius: 16px;
    background: rgba(248,250,252,0.96);
    color: var(--hs-text);
    padding: 0 14px;
    font-weight: 800;
}

.hs-filter-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.hs-filter-actions .hs-btn {
    width: 100%;
}

.hs-help-card {
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 36%),
        linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    color: white;
}

.hs-help-card span {
    font-size: 2rem;
}

.hs-help-card h3 {
    color: white;
}

.hs-help-card p {
    color: rgba(255,255,255,0.82);
}

.hs-help-card a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    background: white;
    color: var(--hs-red);
    font-weight: 950;
}

.hs-catalog-content {
    min-width: 0;
}

.hs-catalog-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 22px;
    padding: 24px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.86);
    box-shadow: var(--hs-shadow-soft);
}

.hs-catalog-topbar h2 {
    margin: 14px 0 6px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hs-catalog-topbar p {
    margin: 0;
    color: var(--hs-muted);
    font-weight: 800;
}

.hs-catalog-view-tools {
    min-width: 180px;
}

.hs-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-catalog-product {
    min-width: 0;
}

.hs-product-code {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(8, 59, 104, 0.06);
    margin-top: 14px;
}

.hs-product-code small {
    color: var(--hs-muted);
    font-weight: 900;
}

.hs-product-code strong {
    color: var(--hs-blue);
    font-size: 0.82rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hs-catalog-product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.hs-product-secondary {
    min-width: 98px;
    border: 0;
    border-radius: 999px;
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red);
    font-weight: 950;
    cursor: pointer;
    transition: 0.25s ease;
}

.hs-product-secondary:hover {
    background: var(--hs-red);
    color: white;
    transform: translateY(-2px);
}

.hs-pagination {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hs-pagination button,
.hs-pagination span {
    min-width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.hs-pagination button {
    background: white;
    color: var(--hs-blue);
    box-shadow: var(--hs-shadow-soft);
    cursor: pointer;
    transition: 0.25s ease;
}

.hs-pagination button:hover:not(:disabled),
.hs-pagination button.is-active {
    background: var(--hs-red);
    color: white;
    transform: translateY(-2px);
}

.hs-pagination button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.hs-pagination span {
    color: var(--hs-muted);
}

.hs-skeleton-card {
    overflow: hidden;
}

.hs-skeleton-img,
.hs-skeleton-line {
    background: linear-gradient(90deg, rgba(15,23,42,0.06), rgba(15,23,42,0.12), rgba(15,23,42,0.06));
    background-size: 220% 100%;
    animation: hsSkeleton 1.1s ease-in-out infinite;
}

.hs-skeleton-img {
    height: 220px;
}

.hs-skeleton-line {
    height: 14px;
    border-radius: 999px;
    margin: 12px 0;
}

.hs-skeleton-line.short {
    width: 42%;
}

.hs-skeleton-line.mini {
    width: 68%;
}

@keyframes hsSkeleton {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: -220% 0;
    }
}

@media (max-width: 1180px) {
    .hs-catalog-layout {
        grid-template-columns: 1fr;
    }

    .hs-catalog-sidebar {
        position: relative;
        top: auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .hs-catalog-hero-grid {
        grid-template-columns: 1fr;
    }

    .hs-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hs-catalog-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .hs-catalog-view-tools {
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .hs-catalog-sidebar {
        grid-template-columns: 1fr;
    }

    .hs-catalog-grid {
        grid-template-columns: 1fr;
    }

    .hs-catalog-product-actions {
        grid-template-columns: 1fr;
    }

    .hs-product-secondary {
        min-height: 46px;
    }

    .hs-catalog-hero {
        padding: 58px 0;
    }
}

.hs-checkout-hero,
.hs-terms-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 209, 102, 0.42), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(8, 59, 104, 0.23), transparent 32%),
        linear-gradient(135deg, #fff8e8 0%, #fff0df 45%, #ffe1cf 100%);
}

.hs-checkout-hero-grid,
.hs-terms-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hs-checkout-hero h1,
.hs-terms-hero h1 {
    margin: 22px 0 16px;
    max-width: 820px;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    color: #141b2d;
}

.hs-checkout-hero p,
.hs-terms-hero p {
    max-width: 680px;
    color: var(--hs-muted);
    line-height: 1.8;
    font-size: 1.08rem;
}

.hs-terms-hero small {
    display: inline-flex;
    margin-top: 12px;
    color: var(--hs-blue);
    font-weight: 950;
}

.hs-checkout-trust-card,
.hs-terms-notice {
    padding: 34px;
    border-radius: var(--hs-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 40%),
        linear-gradient(135deg, var(--hs-blue), #041d34);
    color: white;
    box-shadow: var(--hs-shadow);
}

.hs-checkout-trust-card > span,
.hs-terms-notice > span {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.hs-checkout-trust-card h2,
.hs-terms-notice h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.hs-checkout-trust-card p,
.hs-terms-notice p {
    color: rgba(255,255,255,0.76);
}

.hs-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 26px;
    align-items: start;
}

.hs-checkout-panel,
.hs-summary-card,
.hs-checkout-form {
    padding: 26px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
}

.hs-checkout-head h2,
.hs-summary-card h2,
.hs-checkout-form h2 {
    margin: 14px 0 8px;
    color: var(--hs-blue);
    letter-spacing: -0.04em;
}

.hs-checkout-head p {
    margin: 0 0 22px;
    color: var(--hs-muted);
}

.hs-checkout-items {
    display: grid;
    gap: 14px;
}

.hs-checkout-item {
    display: grid;
    grid-template-columns: 64px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(248,250,252,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.hs-checkout-item-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255,209,102,0.45), transparent 35%),
        linear-gradient(135deg, rgba(223,47,22,0.14), rgba(8,59,104,0.12));
    font-size: 2rem;
}

.hs-checkout-item-info span {
    color: var(--hs-red);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hs-checkout-item-info h3 {
    margin: 6px 0 4px;
    color: var(--hs-blue);
}

.hs-checkout-item-info p {
    margin: 0;
    color: var(--hs-muted);
    font-size: 0.9rem;
}

.hs-checkout-item-price {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.hs-checkout-item-price strong {
    color: var(--hs-red);
    font-size: 1.1rem;
}

.hs-checkout-item-price small {
    color: var(--hs-muted);
    font-weight: 900;
}

.hs-checkout-qty {
    display: grid;
    grid-template-columns: 38px 58px 38px;
    gap: 6px;
    align-items: center;
}

.hs-checkout-qty button,
.hs-checkout-qty input,
.hs-checkout-remove {
    height: 40px;
    border: 0;
    border-radius: 14px;
    font-weight: 950;
}

.hs-checkout-qty button {
    background: var(--hs-blue);
    color: white;
    cursor: pointer;
}

.hs-checkout-qty input {
    width: 58px;
    text-align: center;
    background: white;
    color: var(--hs-text);
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.hs-checkout-remove {
    padding: 0 14px;
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red);
    cursor: pointer;
}

.hs-checkout-empty {
    text-align: center;
    padding: 50px 20px;
}

.hs-checkout-empty span {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
}

.hs-checkout-empty h3 {
    color: var(--hs-blue);
    margin: 0 0 8px;
}

.hs-checkout-empty p {
    color: var(--hs-muted);
}

.hs-checkout-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.hs-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15,23,42,0.08);
}

.hs-summary-line span {
    color: var(--hs-muted);
    font-weight: 850;
}

.hs-summary-line strong {
    color: var(--hs-blue);
}

.hs-summary-note {
    margin: 18px 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 209, 102, 0.18);
    color: #8a5b00;
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 750;
}

.hs-summary-clear {
    width: 100%;
}

.hs-checkout-form {
    display: grid;
    gap: 14px;
}

.hs-checkout-form label {
    display: grid;
    gap: 8px;
    color: var(--hs-blue);
    font-size: 0.86rem;
    font-weight: 950;
}

.hs-checkout-form input,
.hs-checkout-form select,
.hs-checkout-form textarea {
    width: 100%;
    border: 1px solid rgba(15,23,42,0.10);
    outline: none;
    border-radius: 16px;
    background: rgba(248,250,252,0.96);
    color: var(--hs-text);
    padding: 13px 14px;
    font: inherit;
    font-weight: 750;
}

.hs-checkout-form textarea {
    resize: vertical;
}

.hs-checkout-terms {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px !important;
    padding: 14px;
    border-radius: 18px;
    background: rgba(8,59,104,0.06);
    color: var(--hs-text) !important;
    line-height: 1.55;
}

.hs-checkout-terms input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.hs-checkout-terms a {
    color: var(--hs-red);
    font-weight: 950;
}

.hs-checkout-submit {
    width: 100%;
    margin-top: 4px;
}

.hs-terms-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: start;
}

.hs-terms-index {
    position: sticky;
    top: 104px;
    padding: 24px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
}

.hs-terms-index h2 {
    margin: 0 0 16px;
    color: var(--hs-blue);
}

.hs-terms-index a {
    display: block;
    padding: 11px 12px;
    border-radius: 14px;
    color: var(--hs-muted);
    font-weight: 850;
    transition: 0.25s ease;
}

.hs-terms-index a:hover {
    background: rgba(223,47,22,0.08);
    color: var(--hs-red);
}

.hs-terms-content {
    display: grid;
    gap: 18px;
}

.hs-terms-card {
    padding: 30px;
    border-radius: var(--hs-radius-lg);
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    scroll-margin-top: 110px;
}

.hs-terms-card h2 {
    margin: 0 0 14px;
    color: var(--hs-blue);
    letter-spacing: -0.04em;
}

.hs-terms-card p {
    color: var(--hs-muted);
    line-height: 1.85;
    margin: 12px 0;
}

.hs-terms-card .hs-btn {
    margin-top: 14px;
}

@media (max-width: 1100px) {
    .hs-checkout-layout,
    .hs-terms-layout {
        grid-template-columns: 1fr;
    }

    .hs-checkout-summary,
    .hs-terms-index {
        position: relative;
        top: auto;
    }

    .hs-terms-index {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-terms-index h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .hs-checkout-hero-grid,
    .hs-terms-hero-grid {
        grid-template-columns: 1fr;
    }

    .hs-checkout-item {
        grid-template-columns: 64px 1fr;
    }

    .hs-checkout-qty,
    .hs-checkout-remove {
        grid-column: 1 / -1;
    }

    .hs-checkout-qty {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hs-checkout-qty input {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .hs-terms-index {
        grid-template-columns: 1fr;
    }

    .hs-checkout-hero,
    .hs-terms-hero {
        padding: 58px 0;
    }

    .hs-checkout-panel,
    .hs-summary-card,
    .hs-checkout-form,
    .hs-terms-card,
    .hs-terms-index {
        padding: 20px;
    }
}