/* =========================================================
   Helena Shop - helena.css
   Diseño profesional responsive, optimizado para movil
   Reemplaza completamente tu archivo: public/assets/css/helena.css
   ========================================================= */

:root {
    --hs-red: #df2f16;
    --hs-red-dark: #a82111;
    --hs-orange: #ff8a1c;
    --hs-orange-soft: #fff0df;
    --hs-yellow: #ffd166;
    --hs-blue: #083b68;
    --hs-blue-dark: #061f38;
    --hs-blue-soft: #0c5a92;
    --hs-cream: #fff8e8;
    --hs-white: #ffffff;
    --hs-bg: #fff7ef;
    --hs-card: rgba(255, 255, 255, 0.94);
    --hs-text: #182033;
    --hs-muted: #657084;
    --hs-border: rgba(15, 23, 42, 0.10);
    --hs-border-strong: rgba(15, 23, 42, 0.16);
    --hs-success: #16a34a;
    --hs-warning: #b7791f;
    --hs-shadow: 0 24px 70px rgba(24, 32, 51, 0.16);
    --hs-shadow-soft: 0 14px 40px rgba(24, 32, 51, 0.10);
    --hs-shadow-mobile: 0 12px 28px rgba(24, 32, 51, 0.12);
    --hs-radius-xl: 32px;
    --hs-radius-lg: 24px;
    --hs-radius-md: 18px;
    --hs-radius-sm: 14px;
    --hs-container: 1180px;
    --hs-header-h: 82px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 209, 102, 0.18), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(223, 47, 22, 0.12), transparent 30%),
        var(--hs-bg);
    color: var(--hs-text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: rgba(223, 47, 22, 0.18);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

/* ===================== Header ===================== */

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

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

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

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

.hs-brand span {
    min-width: 0;
}

.hs-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--hs-text);
    white-space: nowrap;
}

.hs-brand small {
    display: block;
    margin-top: 2px;
    max-width: 190px;
    color: var(--hs-muted);
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    font-size: 0.94rem;
    font-weight: 800;
}

.hs-nav-links a {
    color: rgba(24, 32, 51, 0.78);
    transition: color 0.22s ease, transform 0.22s ease, background 0.22s 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: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.35rem;
    font-weight: 950;
    box-shadow: var(--hs-shadow-soft);
    cursor: pointer;
}

/* ===================== Componentes globales ===================== */

.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: 950;
    font-size: 0.78rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 950;
    text-align: center;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s 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.90);
    color: var(--hs-blue);
    border: 1px solid rgba(8, 59, 104, 0.10);
    box-shadow: var(--hs-shadow-soft);
}

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

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

.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;
}

/* ===================== Home ===================== */

.hs-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--hs-header-h));
    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-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-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-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: transform 0.22s ease, box-shadow 0.22s 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: 950;
    color: var(--hs-blue);
}

/* ===================== Productos ===================== */

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

.hs-product-card {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--hs-radius-lg);
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hs-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hs-shadow);
    border-color: rgba(223, 47, 22, 0.18);
}

.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-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;
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.48), transparent 33%),
        radial-gradient(circle at bottom right, rgba(223, 47, 22, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(255,255,255,0.88), rgba(8,59,104,0.12));
}

.hs-product-initial {
    font-size: 4.8rem;
    font-weight: 950;
    letter-spacing: -0.08em;
    color: var(--hs-blue);
    text-transform: uppercase;
}

.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.94);
    color: var(--hs-blue);
    font-size: 0.72rem;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(24, 32, 51, 0.14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.hs-product-info > span {
    color: var(--hs-red);
    font-weight: 950;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hs-product-info h3 {
    margin: 8px 0 8px;
    color: var(--hs-blue);
    font-size: 1.12rem;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.hs-product-info p {
    margin: 0 0 18px;
    color: var(--hs-muted);
    line-height: 1.62;
    font-size: 0.94rem;
}

.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-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: 950;
    font-size: 0.74rem;
    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,
.hs-product-info button,
.hs-product-secondary {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    font-weight: 950;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.hs-product-action {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hs-blue);
    color: var(--hs-white);
}

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

.hs-product-info button {
    width: 100%;
    background: var(--hs-blue);
    color: var(--hs-white);
}

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

.hs-product-secondary {
    min-width: 98px;
    padding: 0 16px;
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red);
}

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

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

/* ===================== Buscador home/catalogo ===================== */

.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.94);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 34px rgba(24, 32, 51, 0.09);
}

.hs-search-box span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    color: var(--hs-blue);
    font-size: 1rem;
}

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

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

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

.hs-catalog-status {
    margin: 0 auto 26px;
    width: fit-content;
    max-width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 59, 104, 0.08);
    color: var(--hs-blue);
    font-weight: 950;
    font-size: 0.88rem;
    text-align: center;
}

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

.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.90);
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-soft);
    text-align: center;
}

.hs-catalog-empty > span,
.hs-catalog-error > span,
.hs-help-card > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.5rem;
    font-weight: 950;
}

.hs-catalog-empty > span,
.hs-catalog-error > span {
    margin: 0 auto 14px;
    background: rgba(8, 59, 104, 0.08);
    color: var(--hs-blue);
}

.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);
}

/* ===================== Catalogo ===================== */

.hs-catalog-hero,
.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-catalog-hero-grid,
.hs-checkout-hero-grid,
.hs-terms-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hs-catalog-hero h1,
.hs-checkout-hero h1,
.hs-terms-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,
.hs-checkout-hero p,
.hs-terms-hero p {
    max-width: 680px;
    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,
.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-catalog-summary-card > span,
.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: 2rem;
    margin-bottom: 18px;
    font-weight: 950;
}

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

.hs-catalog-summary-card p,
.hs-checkout-trust-card p,
.hs-terms-notice 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.8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.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: 850;
}

.hs-filter-control:focus,
.hs-checkout-form input:focus,
.hs-checkout-form select:focus,
.hs-checkout-form textarea:focus,
.hs-search-box:focus-within {
    border-color: rgba(223, 47, 22, 0.38);
    box-shadow: 0 0 0 4px rgba(223, 47, 22, 0.09);
}

.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 {
    margin: 0 0 14px;
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

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

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

.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.78);
    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: 850;
}

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

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

.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: transform 0.22s ease, background 0.22s ease, color 0.22s 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.42;
    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; }
}

/* ===================== Checkout ===================== */

.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));
    color: var(--hs-blue);
    font-size: 1.7rem;
    font-weight: 950;
}

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

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

.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: 780;
}

.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: 800;
}

.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;
}

/* ===================== Terminos ===================== */

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

.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: background 0.22s ease, color 0.22s 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;
}

/* ===================== Contacto / Footer ===================== */

.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: 950;
    margin-bottom: 12px;
}

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

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

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

/* ===================== Animaciones ===================== */

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

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

/* ===================== Responsive tablet ===================== */

@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: 1100px) {
    .hs-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .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: 920px) {
    .hs-catalog-hero-grid,
    .hs-checkout-hero-grid,
    .hs-terms-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: 860px) {
    .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%;
    }
}

/* ===================== Mobile first polish ===================== */

@media (max-width: 820px) {
    :root {
        --hs-header-h: 74px;
    }

    .hs-container,
    .hs-navbar {
        width: min(100% - 28px, var(--hs-container));
    }

    .hs-menu-btn {
        display: inline-grid;
        place-items: center;
        flex: 0 0 46px;
    }

    .hs-nav-links {
        position: fixed;
        top: calc(var(--hs-header-h) + 10px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--hs-shadow);
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

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

    .hs-nav-links a {
        padding: 13px 14px;
        border-radius: 16px;
        background: rgba(8, 59, 104, 0.04);
        color: var(--hs-blue);
    }

    .hs-nav-links a:hover {
        background: rgba(223, 47, 22, 0.08);
    }

    .hs-nav-cta {
        text-align: center;
        background: linear-gradient(135deg, var(--hs-red), var(--hs-orange)) !important;
        color: white !important;
        box-shadow: 0 12px 28px rgba(223, 47, 22, 0.22);
    }

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

    .hs-hero-grid {
        gap: 32px;
    }

    .hs-hero h1,
    .hs-catalog-hero h1,
    .hs-checkout-hero h1,
    .hs-terms-hero h1 {
        letter-spacing: -0.055em;
    }

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

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

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

    .hs-floating-card {
        position: relative;
        inset: auto;
        margin-top: 14px;
        max-width: none;
        animation: 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,
    .hs-custom-options,
    .hs-catalog-grid {
        grid-template-columns: 1fr;
    }

    .hs-services-grid,
    .hs-custom-grid {
        gap: 22px;
    }

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

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

@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-product-actions {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .hs-brand strong {
        font-size: 0.96rem;
    }

    .hs-brand small {
        max-width: 130px;
        font-size: 0.7rem;
    }

    .hs-hero h1 {
        font-size: clamp(2.9rem, 15vw, 4.2rem);
    }

    .hs-catalog-hero h1,
    .hs-checkout-hero h1,
    .hs-terms-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
        line-height: 0.98;
    }

    .hs-hero p,
    .hs-catalog-hero p,
    .hs-checkout-hero p,
    .hs-terms-hero p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

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

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

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

    .hs-section-head {
        margin-bottom: 26px;
    }

    .hs-section-head h2,
    .hs-services-grid h2,
    .hs-custom-card h2,
    .hs-contact-card h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hs-category-card,
    .hs-service-item,
    .hs-product-card,
    .hs-filter-card,
    .hs-catalog-topbar,
    .hs-checkout-panel,
    .hs-summary-card,
    .hs-checkout-form,
    .hs-terms-card {
        border-radius: 22px;
        box-shadow: var(--hs-shadow-mobile);
    }

    .hs-category-card {
        min-height: auto;
    }

    .hs-product-img,
    .hs-skeleton-img {
        height: 190px;
    }

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

    .hs-product-info h3 {
        font-size: 1.05rem;
    }

    .hs-product-initial {
        font-size: 4.2rem;
    }

    .hs-catalog-summary-card,
    .hs-checkout-trust-card,
    .hs-terms-notice,
    .hs-custom-card {
        padding: 24px;
        border-radius: 26px;
    }

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

    .hs-search-box {
        height: 54px;
        padding: 0 14px;
    }

    .hs-search-box input {
        font-size: 0.93rem;
    }

    .hs-filter-control {
        height: 48px;
        border-radius: 15px;
        font-size: 0.92rem;
    }

    .hs-catalog-status {
        border-radius: 18px;
        font-size: 0.82rem;
    }

    .hs-pagination {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 4px 0 8px;
        scrollbar-width: none;
    }

    .hs-pagination::-webkit-scrollbar {
        display: none;
    }

    .hs-pagination button,
    .hs-pagination span {
        min-width: 42px;
        height: 42px;
        flex: 0 0 auto;
        border-radius: 14px;
        font-size: 0.84rem;
    }

    .hs-checkout-item {
        grid-template-columns: 54px 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .hs-checkout-item-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.4rem;
    }

    .hs-checkout-item-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hs-footer {
        padding: 38px 0 90px;
    }

    .hs-whatsapp {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
        border-radius: 20px;
    }
}

@media (max-width: 380px) {
    .hs-container,
    .hs-navbar {
        width: min(100% - 22px, var(--hs-container));
    }

    .hs-brand small {
        display: none;
    }

    .hs-btn {
        padding: 0 16px;
        min-height: 50px;
        font-size: 0.92rem;
    }

    .hs-product-meta strong {
        font-size: 1.22rem;
    }

    .hs-catalog-topbar h2 {
        font-size: 1.7rem;
    }
}

/* ===================== Accesibilidad ===================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.hs-cart-float {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 80;
    min-width: 168px;
    height: 68px;
    display: grid;
    grid-template-columns: 48px 42px 1fr;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.35), transparent 40%),
        linear-gradient(135deg, #ffffff, #fff2df);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 20px 46px rgba(24, 32, 51, 0.20);
    color: var(--hs-blue);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-cart-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 58px rgba(24, 32, 51, 0.26);
}

.hs-cart-float.has-items {
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.42), transparent 42%),
        linear-gradient(135deg, #fff, #ffe8d7);
}

.hs-cart-tiger {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 24px rgba(223, 47, 22, 0.22);
    animation: hsTigerWalk 1.9s ease-in-out infinite;
}

.hs-cart-tiger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-cart-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px rgba(223, 47, 22, 0.24);
}

.hs-cart-info {
    display: grid;
    line-height: 1;
}

.hs-cart-info strong {
    font-size: 1.25rem;
    font-weight: 950;
    color: var(--hs-red);
}

.hs-cart-info small {
    margin-top: 4px;
    color: var(--hs-blue);
    font-weight: 900;
    font-size: 0.78rem;
}

.hs-cart-float.is-bouncing {
    animation: hsCartBounce 0.55s ease;
}

.hs-cart-toast {
    position: fixed;
    right: 22px;
    bottom: 170px;
    z-index: 90;
    min-width: 230px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(7, 29, 51, 0.96);
    color: white;
    box-shadow: 0 18px 48px rgba(7, 29, 51, 0.28);
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

.hs-cart-toast.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.hs-cart-toast strong,
.hs-cart-toast span {
    display: block;
}

.hs-cart-toast strong {
    font-size: 0.95rem;
}

.hs-cart-toast span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.hs-fly-product {
    position: fixed;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    color: white;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(223, 47, 22, 0.35);
    pointer-events: none;
    transform: translate(0, 0) scale(1);
    transition: transform 0.8s cubic-bezier(.16, 1, .3, 1), opacity 0.8s ease;
}

.hs-product-secondary.is-added {
    background: #18c267 !important;
    color: white !important;
}

@keyframes hsCartBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    35% {
        transform: translateY(-8px) scale(1.04);
    }
    70% {
        transform: translateY(2px) scale(0.98);
    }
}

@keyframes hsTigerWalk {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(3deg) translateY(-3px);
    }
}

@media (max-width: 680px) {
    .hs-cart-float {
        right: 14px;
        bottom: 84px;
        min-width: 142px;
        height: 62px;
        grid-template-columns: 42px 38px 1fr;
        border-radius: 22px;
        padding: 8px 10px 8px 8px;
    }

    .hs-cart-tiger {
        width: 42px;
        height: 42px;
        border-radius: 16px;
    }

    .hs-cart-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        font-size: 1.12rem;
    }

    .hs-cart-info strong {
        font-size: 1.05rem;
    }

    .hs-cart-info small {
        font-size: 0.72rem;
    }

    .hs-cart-toast {
        right: 14px;
        left: 14px;
        bottom: 154px;
        min-width: 0;
    }

    .hs-whatsapp {
        right: 16px;
        bottom: 16px;
    }
}

.hs-client-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hs-client-menu-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .88);
    border-radius: 999px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(24, 32, 51, .10);
}

.hs-client-menu-btn img {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
    background: white;
}

.hs-client-menu-btn span {
    display: grid;
    line-height: 1.05;
    text-align: left;
}

.hs-client-menu-btn strong {
    max-width: 118px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--hs-blue);
    font-size: .82rem;
    font-weight: 950;
}

.hs-client-menu-btn small {
    margin-top: 3px;
    color: var(--hs-red);
    font-size: .72rem;
    font-weight: 950;
}

.hs-client-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 260px;
    padding: 12px;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 24px 60px rgba(24, 32, 51, .18);
    opacity: 0;
    transform: translateY(8px) scale(.98);
    pointer-events: none;
    transition: .2s ease;
    z-index: 120;
}

.hs-client-menu.is-open .hs-client-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hs-client-dropdown-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 16px;
    background: #fff7ed;
}

.hs-client-dropdown-head img {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    object-fit: cover;
}

.hs-client-dropdown-head strong,
.hs-client-dropdown-head small {
    display: block;
}

.hs-client-dropdown-head strong {
    color: var(--hs-blue);
    font-weight: 950;
}

.hs-client-dropdown-head small {
    margin-top: 3px;
    color: #047857;
    font-weight: 900;
}

.hs-client-dropdown a,
.hs-client-dropdown button {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--hs-blue);
    font-weight: 950;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .92rem;
}

.hs-client-dropdown a:hover,
.hs-client-dropdown button:hover {
    background: #f1f5f9;
}

.hs-client-dropdown button {
    color: var(--hs-red);
}

@media (max-width: 760px) {
    .hs-client-menu {
        width: 100%;
    }

    .hs-client-menu-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .hs-client-dropdown {
        position: static;
        width: 100%;
        margin-top: 10px;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .hs-client-menu.is-open .hs-client-dropdown {
        display: block;
    }
}

body.hs-modal-open {
    overflow: hidden;
}

.hs-logout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.hs-logout-modal.is-visible {
    display: flex;
}

.hs-logout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(8px);
}

.hs-logout-card {
    position: relative;
    width: min(94vw, 480px);
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 122, 24, .22), transparent 32%),
        radial-gradient(circle at 90% 20%, rgba(8, 59, 104, .14), transparent 30%),
        linear-gradient(180deg, #ffffff, #fff8ef);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .34);
    text-align: center;
    animation: hsLogoutPop .26s ease;
}

.hs-logout-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 42px rgba(223, 47, 22, .20);
}

.hs-logout-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-logout-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(223, 47, 22, .10);
    color: var(--hs-red);
    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hs-logout-card h2 {
    margin: 16px 0 10px;
    color: var(--hs-dark);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.05;
}

.hs-logout-card p {
    margin: 0;
    color: var(--hs-muted);
    font-weight: 800;
    line-height: 1.65;
}

.hs-logout-benefits {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.hs-logout-benefits div {
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
}

.hs-logout-benefits strong,
.hs-logout-benefits small {
    display: block;
}

.hs-logout-benefits strong {
    color: var(--hs-blue);
    font-weight: 950;
    margin-bottom: 4px;
}

.hs-logout-benefits small {
    color: var(--hs-muted);
    font-weight: 760;
}

.hs-logout-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.hs-logout-actions .hs-btn {
    width: 100%;
    justify-content: center;
}

@keyframes hsLogoutPop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 560px) {
    .hs-logout-card {
        padding: 24px;
        border-radius: 28px;
    }

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

    .hs-logout-icon {
        width: 78px;
        height: 78px;
        border-radius: 24px;
    }
}

/* ===================== Foto de perfil cliente ===================== */

.hs-profile-upload-pro {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hs-photo-picker {
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.26), transparent 34%),
        linear-gradient(135deg, #ffffff, #fff7ed);
    border: 1px dashed rgba(223, 47, 22, 0.34);
    box-shadow: 0 14px 34px rgba(24, 32, 51, 0.08);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.hs-photo-picker:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 47, 22, 0.58);
    box-shadow: 0 18px 42px rgba(223, 47, 22, 0.14);
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.34), transparent 36%),
        linear-gradient(135deg, #ffffff, #fff0df);
}

.hs-photo-picker input[type="file"] {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.hs-photo-picker-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 12px 26px rgba(223, 47, 22, 0.22);
}

.hs-photo-picker-text {
    min-width: 0;
    display: grid;
    gap: 4px;
    text-align: left;
}

.hs-photo-picker-text strong {
    color: var(--hs-blue);
    font-size: .94rem;
    font-weight: 950;
    line-height: 1.15;
}

.hs-photo-picker-text small {
    color: var(--hs-muted);
    font-size: .76rem;
    font-weight: 850;
    line-height: 1.25;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hs-photo-picker.has-file {
    border-style: solid;
    border-color: rgba(22, 163, 74, 0.38);
    background:
        radial-gradient(circle at top left, rgba(134, 239, 172, 0.20), transparent 34%),
        linear-gradient(135deg, #ffffff, #ecfdf5);
}

.hs-photo-picker.has-file .hs-photo-picker-icon {
    background: linear-gradient(135deg, #16a34a, #86efac);
}

.hs-photo-picker.has-file .hs-photo-picker-text strong {
    color: #047857;
}

.hs-photo-submit {
    width: 100%;
}

@media (max-width: 520px) {
    .hs-photo-picker {
        grid-template-columns: 44px 1fr;
        min-height: 68px;
        border-radius: 20px;
    }

    .hs-photo-picker-icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        font-size: 1.18rem;
    }

    .hs-photo-picker-text strong {
        font-size: .88rem;
    }

    .hs-photo-picker-text small {
        font-size: .72rem;
    }
}

/* =========================================================
   Contacto, redes y ubicaciones Helena Shop - PRO
========================================================= */

.hs-connect-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 209, 102, 0.32), transparent 28%),
        radial-gradient(circle at 95% 18%, rgba(223, 47, 22, 0.16), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(8, 59, 104, 0.14), transparent 34%),
        linear-gradient(180deg, #fff9f0 0%, #fff3e7 100%);
}

.hs-connect-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.hs-connect-hero h2 {
    margin: 16px 0 12px;
    color: var(--hs-blue);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hs-connect-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--hs-muted);
    line-height: 1.8;
    font-weight: 750;
}

.hs-connect-hero .hs-btn {
    gap: 10px;
    white-space: nowrap;
}

.hs-connect-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.hs-connect-panel,
.hs-location-panel {
    position: relative;
    padding: 26px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 70px rgba(24, 32, 51, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hs-connect-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.hs-connect-title > span {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, var(--hs-red), var(--hs-orange));
    box-shadow: 0 14px 32px rgba(223, 47, 22, 0.22);
    font-size: 1.35rem;
}

.hs-connect-title h3 {
    margin: 0 0 5px;
    color: var(--hs-blue);
    font-size: 1.35rem;
    letter-spacing: -0.035em;
}

.hs-connect-title p {
    margin: 0;
    color: var(--hs-muted);
    line-height: 1.55;
    font-weight: 750;
}

.hs-social-pro-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hs-social-pro-card {
    position: relative;
    min-height: 126px;
    display: grid !important;
    grid-template-columns: 52px 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 18px;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    color: var(--hs-blue);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(24, 32, 51, 0.08);
    text-decoration: none;
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hs-social-pro-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -55px auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    opacity: 0.12;
    z-index: -1;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.hs-social-pro-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(24, 32, 51, 0.16);
    border-color: rgba(223, 47, 22, 0.18);
}

.hs-social-pro-card:hover::before {
    transform: scale(1.35);
    opacity: 0.18;
}

.hs-social-pro-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}

.hs-social-pro-text {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 4px;
}

.hs-social-pro-text strong {
    color: var(--hs-blue);
    font-size: 0.95rem;
    font-weight: 950;
    line-height: 1.12;
}

.hs-social-pro-text small {
    color: var(--hs-muted);
    font-size: 0.78rem;
    font-weight: 850;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hs-social-pro-go {
    grid-column: 1 / -1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(8, 59, 104, 0.07);
    color: var(--hs-blue);
    font-size: 0.8rem;
    margin-left: auto;
    transition: background 0.22s ease, color 0.22s ease;
}

.hs-social-pro-card:hover .hs-social-pro-go {
    background: var(--hs-blue);
    color: #ffffff;
}

/* Colores por red */

.hs-social-facebook {
    color: #1877f2;
}

.hs-social-facebook .hs-social-pro-icon {
    background: linear-gradient(135deg, #1877f2, #084fb5);
}

.hs-social-instagram {
    color: #dd2a7b;
}

.hs-social-instagram .hs-social-pro-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.hs-social-threads {
    color: #111111;
}

.hs-social-threads .hs-social-pro-icon {
    background: linear-gradient(135deg, #111111, #3b3b3b);
}

.hs-social-tiktok {
    color: #fe2c55;
}

.hs-social-tiktok .hs-social-pro-icon {
    background: linear-gradient(135deg, #010101, #25f4ee, #fe2c55);
}

.hs-social-reddit {
    color: #ff4500;
}

.hs-social-reddit .hs-social-pro-icon {
    background: linear-gradient(135deg, #ff4500, #c93400);
}

.hs-social-telegram {
    color: #229ed9;
}

.hs-social-telegram .hs-social-pro-icon {
    background: linear-gradient(135deg, #229ed9, #126fa3);
}

.hs-social-x {
    color: #000000;
}

.hs-social-x .hs-social-pro-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.hs-social-youtube {
    color: #ff0000;
}

.hs-social-youtube .hs-social-pro-icon {
    background: linear-gradient(135deg, #ff0000, #b80000);
}

/* Ubicaciones */

.hs-location-panel {
    position: sticky;
    top: 104px;
}

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

.hs-location-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.20), transparent 34%),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(24, 32, 51, 0.08);
    text-decoration: none;
    color: var(--hs-blue);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hs-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(24, 32, 51, 0.15);
}

.hs-location-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--hs-blue), var(--hs-blue-soft));
    font-size: 1.35rem;
    box-shadow: 0 14px 32px rgba(8, 59, 104, 0.22);
}

.hs-location-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--hs-blue);
    font-size: 1rem;
    font-weight: 950;
}

.hs-location-card small {
    display: block;
    color: var(--hs-muted);
    line-height: 1.55;
    font-weight: 760;
}

.hs-location-card em {
    grid-column: 2;
    width: fit-content;
    margin-top: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(223, 47, 22, 0.10);
    color: var(--hs-red);
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 950;
}

.hs-location-note {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(8, 59, 104, 0.08), rgba(223, 47, 22, 0.08));
    color: var(--hs-blue);
}

.hs-location-note i {
    margin-top: 3px;
    color: var(--hs-red);
}

.hs-location-note p {
    margin: 0;
    color: var(--hs-muted);
    line-height: 1.55;
    font-weight: 800;
}

/* Footer redes corregido */

.hs-footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
}

.hs-footer-socials {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.hs-footer-social {
    width: 40px;
    height: 40px;
    display: grid !important;
    place-items: center;
    margin: 0 !important;
    border-radius: 15px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.hs-footer-social:hover {
    transform: translateY(-4px) scale(1.05);
    filter: brightness(1.1);
}

.hs-footer-social.hs-social-facebook {
    background: linear-gradient(135deg, #1877f2, #084fb5);
}

.hs-footer-social.hs-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.hs-footer-social.hs-social-threads {
    background: linear-gradient(135deg, #111111, #3b3b3b);
}

.hs-footer-social.hs-social-tiktok {
    background: linear-gradient(135deg, #010101, #25f4ee, #fe2c55);
}

.hs-footer-social.hs-social-reddit {
    background: linear-gradient(135deg, #ff4500, #c93400);
}

.hs-footer-social.hs-social-telegram {
    background: linear-gradient(135deg, #229ed9, #126fa3);
}

.hs-footer-social.hs-social-x {
    background: linear-gradient(135deg, #000000, #333333);
}

.hs-footer-social.hs-social-youtube {
    background: linear-gradient(135deg, #ff0000, #b80000);
}

/* Responsive */

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

    .hs-location-panel {
        position: relative;
        top: auto;
    }

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

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

@media (max-width: 760px) {
    .hs-connect-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .hs-connect-panel,
    .hs-location-panel {
        padding: 20px;
        border-radius: 28px;
    }

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

    .hs-social-pro-card {
        min-height: 104px;
    }

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

@media (max-width: 460px) {
    .hs-connect-title {
        flex-direction: column;
    }

    .hs-social-pro-card,
    .hs-location-card {
        grid-template-columns: 48px 1fr;
        padding: 16px;
        border-radius: 22px;
    }

    .hs-social-pro-icon,
    .hs-location-icon {
        width: 48px;
        height: 48px;
        border-radius: 17px;
    }
}