:root {
    --ink: #061f36;
    --muted: #536b7d;
    --soft: #edf5fb;
    --surface: #ffffff;
    --surface-strong: #f7fbff;
    --line: #ccdbe8;
    --brand: #00345c;
    --brand-dark: #002845;
    --brand-soft: #e6f1fa;
    --accent: #0d6fa6;
    --gold: #d8aa5f;
    --shadow: 0 20px 60px rgba(0, 52, 92, 0.13);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f7fbff 0%, #edf5fb 38%, #ffffff 100%);
    font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button {
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(204, 219, 232, 0.92);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner,
.site-main,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 270px;
}

.brand-logo {
    width: 126px;
    height: 78px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.08rem;
}

.brand-copy small,
.site-footer span,
.product-body p,
.detail-description,
.summary-note,
.empty-state p {
    color: var(--muted);
}

.brand-copy small {
    font-size: 0.82rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a,
.cart-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    padding: 0 13px;
    color: #183751;
    font-weight: 700;
    font-size: 0.94rem;
}

.main-nav a:hover,
.cart-pill {
    background: var(--brand-soft);
}

.cart-pill span {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    padding: 0 7px;
    color: #ffffff;
    background: var(--brand-dark);
    font-size: 0.82rem;
}

.site-main {
    padding: 34px 0 68px;
}

.notice {
    margin: 0 0 18px;
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(6, 31, 54, 0.07);
}

.notice-success {
    border-color: #b8d7ef;
    background: #f0f7ff;
}

.notice-error {
    border-color: #f2b8a8;
    background: #fff4f0;
}

.notice ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.shop-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 44px;
    min-height: 560px;
    padding: 28px 0 42px;
}

.hero-copy,
.detail-info,
.checkout-form,
.summary-panel,
.order-preview,
.confirmation-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 34px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero-copy h1,
.page-heading h1,
.confirmation-panel h1 {
    margin-bottom: 16px;
    font-size: 3.35rem;
    line-height: 1.02;
    font-weight: 800;
}

.hero-text {
    max-width: 620px;
    color: #405b70;
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero-actions,
.confirmation-actions,
.filter-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 18px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.button-primary {
    color: #ffffff;
    background: var(--brand-dark);
    box-shadow: 0 12px 24px rgba(0, 52, 92, 0.24);
}

.button-secondary {
    color: var(--ink);
    border-color: #b8d0e4;
    background: #ffffff;
}

.button-ghost {
    color: var(--brand-dark);
    background: transparent;
}

.button-small {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.9rem;
}

.button-wide {
    width: 100%;
}

.text-button {
    border: 0;
    padding: 0;
    color: #0d5e91;
    background: transparent;
    font-weight: 800;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
}

.hero-stats div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--surface-strong);
}

.hero-stats dt {
    font-size: 1.45rem;
    font-weight: 800;
}

.hero-stats dd {
    margin: 4px 0 0;
    color: var(--muted);
}

.hero-showcase {
    min-height: 520px;
    display: grid;
    align-content: center;
    gap: 16px;
}

.hero-logo-panel {
    display: grid;
    place-items: center;
    min-height: 240px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-logo-panel img {
    width: min(380px, 86%);
    max-height: 210px;
    object-fit: contain;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 14px;
}

.showcase-card {
    display: grid;
    gap: 4px;
    border: 1px solid #b8d0e4;
    border-radius: var(--radius);
    padding: 18px;
    background: #f2f8fd;
}

.showcase-card span {
    color: var(--brand);
    font-weight: 700;
}

.showcase-card strong {
    font-size: 1.2rem;
}

.catalog-section,
.related-section,
.testimonial-section {
    padding-top: 24px;
}

.branches-section {
    padding-top: 22px;
}

.trust-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 14px 0 28px;
}

.trust-card,
.testimonial-card,
.about-grid article,
.contact-band {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(6, 31, 54, 0.08);
}

.trust-card {
    min-height: 190px;
    padding: 20px;
}

.trust-card span,
.about-grid span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand);
    font-weight: 900;
    font-size: 0.78rem;
}

.trust-card h2,
.about-grid h2 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-card p,
.testimonial-card p,
.about-grid p,
.contact-band p,
.about-copy p {
    color: var(--muted);
    line-height: 1.65;
}

.section-heading,
.page-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-heading h2,
.page-heading h1 {
    margin: 0;
}

.section-heading h2 {
    font-size: 2rem;
}

.section-heading > span {
    color: var(--muted);
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 200px) minmax(150px, 180px) minmax(220px, 260px) minmax(140px, 180px) minmax(150px, auto) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--surface);
}

.price-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.filter-toggles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-self: center;
}

.toggle-line {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    color: #173a55;
    font-size: 0.9rem;
    font-weight: 800;
}

.toggle-line input {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: var(--brand-dark);
}

.category-strip {
    display: flex;
    gap: 10px;
    margin: -2px 0 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-strip a {
    min-height: 38px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #c3d5e3;
    border-radius: var(--radius);
    padding: 0 14px;
    color: #173a55;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.category-strip a:hover,
.category-strip .is-active {
    border-color: var(--brand-dark);
    color: #ffffff;
    background: var(--brand-dark);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -4px 0 18px;
}

.active-filters a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c3d5e3;
    border-radius: var(--radius);
    padding: 0 11px;
    color: #173a55;
    background: #f7fbff;
    font-size: 0.84rem;
    font-weight: 800;
}

.active-filters a:hover {
    border-color: var(--brand);
    background: #eef6fc;
}

.active-filters span {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand-dark);
    font-size: 0.74rem;
    line-height: 1;
}

.active-filters .clear-all {
    color: var(--brand-dark);
    background: transparent;
}

label {
    display: grid;
    gap: 7px;
    color: #173a55;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #c3d5e3;
    border-radius: var(--radius);
    padding: 12px 13px;
    color: var(--ink);
    background: #ffffff;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 52, 92, 0.14);
}

textarea {
    resize: vertical;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.catalog-load-panel {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 20px 0 4px;
    color: var(--muted);
    font-weight: 800;
}

.catalog-load-panel span {
    font-size: 0.95rem;
}

.catalog-load-panel.is-loading::before {
    content: "";
    width: min(720px, 100%);
    height: 72px;
    border: 1px solid #d7e5f0;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent),
        linear-gradient(#edf5fb 18px, transparent 0),
        linear-gradient(#edf5fb 18px, transparent 0),
        linear-gradient(#edf5fb 18px, transparent 0),
        #ffffff;
    background-position:
        -220px 0,
        18px 16px,
        210px 16px,
        402px 16px,
        0 0;
    background-size:
        220px 100%,
        150px 18px,
        150px 18px,
        150px 18px,
        100% 100%;
    background-repeat: no-repeat;
    animation: mj-skeleton 1.1s ease-in-out infinite;
}

.promo-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
    gap: 22px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 22px;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: var(--radius);
    padding: 22px;
    color: #ffffff;
    background: rgba(247, 251, 255, 0.08);
}

.promo-section .eyebrow {
    color: var(--gold);
}

.promo-section h2 {
    margin-bottom: 0;
    font-size: 1.65rem;
    line-height: 1.15;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.promo-card {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(3, 15, 26, 0.28);
}

.promo-card span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-card strong {
    line-height: 1.25;
}

.promo-card small {
    color: rgba(247, 251, 255, 0.72);
    line-height: 1.45;
}

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

.testimonial-grid,
.about-grid,
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card,
.about-grid article,
.branches-grid article {
    padding: 22px;
}

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

.branches-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(6, 31, 54, 0.08);
}

.branches-grid h3 {
    margin-bottom: 8px;
}

.branches-grid p {
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.5;
}

.branches-grid span {
    color: var(--muted);
    line-height: 1.55;
}

.testimonial-card p {
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.testimonial-card strong {
    color: var(--brand);
}

.product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(6, 31, 54, 0.08);
}

.product-card > a {
    display: block;
}

.product-body,
.product-footer {
    padding: 16px;
}

.product-body {
    display: grid;
    align-content: start;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-meta span:last-child {
    color: var(--muted);
}

.product-body h3 {
    margin-bottom: 9px;
    font-size: 1.12rem;
    line-height: 1.25;
}

.product-body p {
    margin-bottom: 12px;
    line-height: 1.55;
}

.product-status-row,
.commerce-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.stock-chip,
.wholesale-chip,
.commerce-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid #c4dcec;
    border-radius: 999px;
    padding: 0 10px;
    color: #123f63;
    background: #f4faff;
    font-size: 0.8rem;
    font-weight: 800;
}

.wholesale-chip {
    border-color: #e7cf9f;
    color: #6a4c18;
    background: #fff8e8;
}

.stock-chip.is-empty,
.commerce-badges .is-empty {
    border-color: #e9c4ba;
    color: #7b2f21;
    background: #fff4f0;
}

.feature-list,
.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.detail-features li {
    border-radius: 999px;
    padding: 6px 9px;
    color: #173a55;
    background: #eef6fc;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
}

.product-footer strong {
    display: block;
    font-size: 1.24rem;
}

.product-footer span {
    color: var(--muted);
    font-size: 0.9rem;
}

.card-wholesale-price {
    display: block;
    margin-top: 3px;
    color: #6a4c18;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.product-actions form {
    margin: 0;
}

.quick-view-modal[hidden] {
    display: none;
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 18px;
}

.quick-view-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 15, 26, 0.68);
}

.quick-view-panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
}

.quick-view-panel h2 {
    margin-bottom: 0;
    font-size: 1.7rem;
}

.quick-view-panel p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.6;
}

.quick-view-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: var(--radius);
    color: var(--ink);
    background: #eef6fc;
    font-size: 1.3rem;
    font-weight: 900;
}

.quick-view-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.quick-view-price strong {
    font-size: 1.7rem;
}

.quick-view-panel form {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 12px;
    align-items: end;
}

.has-modal-open {
    overflow: hidden;
}

.product-art {
    --tone: #00345c;
    --tone-dark: #002845;
    --tone-soft: #e6f1fa;
    --tone-warm: #7aa7ca;
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--tone-soft), #ffffff 62%);
    isolation: isolate;
}

.product-photo {
    display: grid;
    place-items: center;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #eef6fc, #ffffff 62%);
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.product-art.hero,
.product-photo.hero {
    height: 360px;
    aspect-ratio: auto;
    box-shadow: 0 18px 44px rgba(0, 52, 92, 0.16);
}

.product-art.large,
.product-photo.large {
    min-height: 500px;
    aspect-ratio: auto;
}

.product-art.mini,
.product-photo.mini {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    aspect-ratio: auto;
}

.product-photo.mini img {
    padding: 8px;
}

.tone-aqua {
    --tone: #00345c;
    --tone-dark: #002845;
    --tone-soft: #e6f1fa;
    --tone-warm: #7aa7ca;
}

.tone-violet {
    --tone: #164c78;
    --tone-dark: #00345c;
    --tone-soft: #edf5fb;
    --tone-warm: #91b9d8;
}

.tone-coral {
    --tone: #0d6fa6;
    --tone-dark: #00345c;
    --tone-soft: #e9f5fc;
    --tone-warm: #5d98bd;
}

.tone-sky {
    --tone: #2b82b7;
    --tone-dark: #0a4c79;
    --tone-soft: #e8f5fd;
    --tone-warm: #7aa7ca;
}

.tone-amber {
    --tone: #5f83a3;
    --tone-dark: #00345c;
    --tone-soft: #f0f6fb;
    --tone-warm: #a6bfd3;
}

.tone-mint {
    --tone: #1f6f96;
    --tone-dark: #00345c;
    --tone-soft: #e8f4fa;
    --tone-warm: #6fa7c8;
}

.tone-lime {
    --tone: #426f97;
    --tone-dark: #002845;
    --tone-soft: #edf4fa;
    --tone-warm: #82a9c8;
}

.tone-forest {
    --tone: #123f63;
    --tone-dark: #002845;
    --tone-soft: #e7f0f8;
    --tone-warm: #789dbb;
}

.art-band,
.art-shelf,
.art-bottle,
.bottle-cap,
.bottle-neck,
.bottle-body,
.bottle-label {
    position: absolute;
}

.art-band {
    z-index: 0;
    left: -18%;
    width: 140%;
    height: 28%;
    transform: rotate(-9deg);
    opacity: 0.9;
}

.art-band-one {
    top: 14%;
    background: rgba(255, 255, 255, 0.7);
}

.art-band-two {
    bottom: 14%;
    background: color-mix(in srgb, var(--tone) 22%, transparent);
}

.art-shelf {
    left: 18%;
    right: 18%;
    bottom: 15%;
    height: 16px;
    border-radius: 999px;
    background: rgba(6, 31, 54, 0.14);
    filter: blur(2px);
}

.art-bottle {
    z-index: 1;
    left: 50%;
    bottom: 18%;
    width: 34%;
    height: 58%;
    transform: translateX(-50%);
}

.product-art.hero .art-bottle {
    height: 62%;
}

.product-art.large .art-bottle {
    width: 30%;
    height: 64%;
}

.product-art.mini .art-bottle {
    width: 40%;
    height: 60%;
}

.bottle-cap {
    left: 30%;
    top: 0;
    width: 40%;
    height: 12%;
    border-radius: 5px 5px 2px 2px;
    background: var(--tone-dark);
}

.bottle-neck {
    left: 35%;
    top: 10%;
    width: 30%;
    height: 18%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(90deg, #ffffff, var(--tone-soft));
    border: 2px solid color-mix(in srgb, var(--tone-dark) 28%, transparent);
    border-bottom: 0;
}

.bottle-body {
    left: 0;
    right: 0;
    bottom: 0;
    height: 78%;
    border-radius: 18px 18px 10px 10px;
    background: linear-gradient(135deg, #ffffff 0%, var(--tone-soft) 45%, color-mix(in srgb, var(--tone) 34%, #ffffff) 100%);
    border: 3px solid color-mix(in srgb, var(--tone-dark) 34%, transparent);
    box-shadow: inset -14px 0 22px rgba(255, 255, 255, 0.75), 0 16px 26px rgba(0, 52, 92, 0.18);
}

.bottle-label {
    left: 14%;
    right: 14%;
    top: 34%;
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 34%;
    border-radius: 6px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tone-dark), var(--tone));
    text-align: center;
}

.bottle-label strong {
    font-size: 1.05rem;
}

.bottle-label small {
    font-size: 0.7rem;
    font-weight: 700;
}

.product-art.mini .bottle-label strong {
    font-size: 0.72rem;
}

.product-art.mini .bottle-label small {
    display: none;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}

.detail-visual,
.detail-info {
    min-width: 0;
}

.detail-info {
    padding: 32px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--brand-dark);
    font-weight: 800;
}

.detail-info h1 {
    margin-bottom: 14px;
    font-size: 2.8rem;
    line-height: 1.05;
}

.detail-description {
    font-size: 1.05rem;
    line-height: 1.75;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.detail-price strong {
    font-size: 2rem;
}

.detail-price span {
    color: var(--muted);
    font-weight: 700;
}

.wholesale-note {
    margin: -12px 0 22px;
    color: var(--brand-dark);
    font-weight: 800;
}

.purchase-panel {
    display: grid;
    grid-template-columns: 140px minmax(180px, 1fr);
    gap: 12px;
    align-items: end;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.product-specs article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--surface-strong);
}

.product-specs span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-weight: 900;
}

.product-specs p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}

.page-heading {
    align-items: start;
    display: block;
    margin-bottom: 22px;
}

.page-heading h1 {
    font-size: 2.6rem;
}

.cart-layout,
.checkout-layout,
.confirmation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}

.cart-lines {
    display: grid;
    gap: 12px;
}

.cart-actions,
.summary-actions {
    display: grid;
    gap: 10px;
}

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

.cart-line {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 180px 110px auto;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--surface);
}

.cart-line-info {
    min-width: 0;
}

.cart-line-info span,
.cart-line-info p {
    color: var(--muted);
}

.cart-line-info h2 {
    margin: 3px 0 5px;
    font-size: 1.08rem;
}

.cart-line-info p {
    margin-bottom: 0;
}

.quantity-form {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px;
    align-items: center;
}

.quantity-stepper {
    display: grid;
    grid-template-columns: 34px minmax(54px, 1fr) 34px;
    align-items: stretch;
    border: 1px solid #c3d5e3;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.quantity-stepper button {
    border: 0;
    color: var(--brand-dark);
    background: #eef6fc;
    font-weight: 900;
}

.quantity-stepper input {
    border: 0;
    border-radius: 0;
    padding: 10px 6px;
    text-align: center;
}

.quantity-form input {
    padding: 10px;
}

.line-total {
    text-align: right;
}

.summary-panel {
    padding: 20px;
}

.summary-panel h2,
.order-preview h2 {
    margin-bottom: 16px;
}

.summary-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.summary-list div,
.preview-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.summary-list dt,
.summary-list dd {
    margin: 0;
}

.summary-list dt {
    color: var(--muted);
}

.summary-list dd,
.preview-line strong {
    font-weight: 800;
}

.summary-discount dd {
    color: #0d6fa6;
}

.summary-total {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    font-size: 1.28rem;
}

.summary-note {
    margin: 14px 0 18px;
    line-height: 1.5;
}

.shipping-meter {
    margin: 14px 0 18px;
}

.shipping-meter-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #dcebf5;
}

.shipping-meter-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.shipping-meter .summary-note {
    margin: 9px 0 0;
}

.coupon-box {
    display: grid;
    gap: 10px;
    margin: 16px 0 18px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.coupon-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.coupon-form input {
    text-transform: uppercase;
}

.coupon-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #c4dcec;
    border-radius: var(--radius);
    padding: 10px 12px;
    color: #123f63;
    background: #f4faff;
    font-size: 0.88rem;
    font-weight: 800;
}

.coupon-status.is-paused {
    border-color: #e7cf9f;
    color: #6a4c18;
    background: #fff8e8;
}

.coupon-status form {
    flex: 0 0 auto;
}

.coupon-hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.cart-recommendations {
    margin-top: 20px;
}

.checkout-form {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.checkout-steps li {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--muted);
    background: var(--surface);
    font-weight: 900;
    text-align: center;
}

.checkout-steps .is-complete {
    color: var(--brand);
    background: var(--brand-soft);
}

.checkout-steps .is-active {
    color: #ffffff;
    border-color: var(--brand);
    background: var(--brand);
}

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

.checkbox-line {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.5;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0;
}

.checkout-side {
    display: grid;
    gap: 16px;
}

.order-preview {
    padding: 20px;
}

.preview-line {
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

.preview-line small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.preview-line:first-of-type {
    border-top: 0;
}

.confirmation-panel {
    padding: 34px;
}

.confirmation-panel > p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.confirmation-grid {
    margin: 26px 0;
}

.confirmation-grid > div:first-child {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--surface-strong);
}

.order-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.order-details article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--surface-strong);
}

.order-details span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.order-details strong {
    display: block;
    margin-bottom: 7px;
}

.order-details p,
.side-note {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}

.side-note + .side-note {
    margin-top: 10px;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 22px;
}

.about-copy,
.about-logo-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.legal-page {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.legal-page h1 {
    margin-bottom: 22px;
    font-size: 2.6rem;
    line-height: 1.08;
}

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

.legal-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--surface-strong);
}

.legal-grid h2 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.legal-grid p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.checkbox-line a {
    color: var(--brand);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-copy {
    display: grid;
    align-content: center;
    padding: 34px;
}

.about-copy h1 {
    margin-bottom: 16px;
    font-size: 2.85rem;
    line-height: 1.05;
}

.about-logo-panel {
    display: grid;
    place-items: center;
    padding: 24px;
    min-height: 420px;
}

.about-logo-panel img {
    width: min(440px, 92%);
    max-height: 360px;
    object-fit: contain;
}

.contact-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 24px;
}

.contact-band h2 {
    margin-bottom: 6px;
    font-size: 1.7rem;
}

.contact-band p {
    margin-bottom: 0;
}

.contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    background: var(--surface);
    text-align: center;
}

.empty-wide {
    max-width: 680px;
    margin: 0 auto;
}

.empty-state h2,
.empty-state h3 {
    margin-bottom: 8px;
}

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

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding: 26px 0 36px;
    color: #183751;
}

.site-footer div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer a {
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: var(--radius);
    padding: 0;
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 18px 38px rgba(0, 52, 92, 0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.cart-toast {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 40;
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid #b8d7ef;
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--brand-dark);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(6, 31, 54, 0.18);
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

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

.cart-toast.is-error {
    border-color: #f2b8a8;
    color: #7b2f21;
}

[data-cart-count].is-bumping {
    animation: cart-count-pop 280ms ease;
}

@keyframes cart-count-pop {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

/* Sistemas Escom inspired home */
.escom-home {
    color: #f7fbff;
    background: #04121e;
}

.escom-home .site-shell {
    background:
        linear-gradient(rgba(3, 15, 26, 0.88), rgba(3, 15, 26, 0.9)),
        linear-gradient(135deg, #061f36 0%, #0b2f46 48%, #05131f 100%);
}

.escom-home .site-header {
    position: relative;
    border-bottom: 1px solid rgba(247, 251, 255, 0.12);
    background: rgba(3, 15, 26, 0.78);
    backdrop-filter: none;
}

.escom-home .header-inner {
    min-height: 82px;
}

.escom-home .brand-logo {
    width: 86px;
    height: 64px;
    padding: 6px;
    border-radius: 2px;
    background: #ffffff;
}

.escom-home .brand-copy small,
.escom-home .main-nav a {
    color: rgba(247, 251, 255, 0.78);
}

.escom-home .main-nav a:hover,
.escom-home .cart-pill {
    color: #ffffff;
    background: rgba(247, 251, 255, 0.1);
}

.escom-home .cart-pill span {
    color: #04121e;
    background: var(--gold);
}

.escom-home .site-main {
    width: 100%;
    padding: 0 0 68px;
}

.escom-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    padding: 74px 0 76px;
    text-align: left;
    isolation: isolate;
}

.escom-hero.hero-photo {
    min-height: 660px;
    background-image:
        linear-gradient(90deg, rgba(3, 15, 26, 0.86) 0%, rgba(3, 15, 26, 0.68) 42%, rgba(3, 15, 26, 0.1) 72%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.escom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: transparent;
}

.escom-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(520px, 42vw);
    height: 42%;
    background: linear-gradient(135deg, transparent 0 36%, rgba(247, 251, 255, 0.08) 36% 100%);
}

.escom-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 54px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-photo .escom-hero-inner {
    grid-template-columns: minmax(0, 720px);
    min-height: 510px;
}

.escom-hero-copy {
    min-width: 0;
    animation: mj-fade-up 700ms ease both;
}

.escom-hero .eyebrow {
    color: var(--gold);
}

.escom-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.85rem, 6vw, 5.45rem);
    line-height: 0.98;
    font-weight: 800;
}

.escom-hero p:not(.eyebrow) {
    max-width: 660px;
    margin: 18px 0 0;
    color: rgba(247, 251, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-search-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    max-width: 650px;
    margin-top: 26px;
    border: 1px solid rgba(247, 251, 255, 0.22);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-search-panel input {
    min-height: 46px;
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
}

.escom-hero .hero-actions {
    margin-top: 30px;
}

.escom-hero .button-primary {
    border-color: var(--gold);
    color: #04121e;
    background: var(--gold);
    box-shadow: 0 16px 34px rgba(216, 170, 95, 0.22);
}

.escom-hero .button-secondary {
    border-color: rgba(247, 251, 255, 0.28);
    color: #ffffff;
    background: rgba(247, 251, 255, 0.08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin: 32px 0 0;
    padding: 0;
}

.hero-metrics div {
    min-width: 0;
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(247, 251, 255, 0.08);
    animation: mj-fade-up 700ms ease both;
}

.hero-metrics div:nth-child(2) {
    animation-delay: 90ms;
}

.hero-metrics div:nth-child(3) {
    animation-delay: 180ms;
}

.hero-metrics dt,
.hero-metrics dd {
    margin: 0;
}

.hero-metrics dt {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.hero-metrics dd {
    margin-top: 7px;
    color: rgba(247, 251, 255, 0.66);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.escom-hero-visual {
    min-width: 0;
    display: grid;
    gap: 18px;
    animation: mj-fade-up 760ms 120ms ease both;
}

.escom-logo-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: var(--radius);
    padding: 26px;
    background: rgba(247, 251, 255, 0.1);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
    animation: mj-float-soft 5s ease-in-out infinite;
}

.escom-logo-card img {
    width: min(240px, 72%);
    max-height: 150px;
    object-fit: contain;
    padding: 10px;
    border-radius: 2px;
    background: #ffffff;
}

.escom-logo-card span {
    color: rgba(247, 251, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.hero-product-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-product-card {
    min-width: 0;
    display: grid;
    gap: 7px;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(247, 251, 255, 0.09);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    animation: mj-fade-up 680ms ease both;
}

.hero-product-card:nth-child(2) {
    animation-delay: 90ms;
}

.hero-product-card:nth-child(3) {
    animation-delay: 180ms;
}

.hero-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 170, 95, 0.54);
    background: rgba(247, 251, 255, 0.14);
}

.hero-product-card .product-art,
.hero-product-card .product-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    flex-basis: auto;
}

.hero-product-card span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-product-card strong {
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.2;
}

.escom-about,
.featured-strip,
.escom-home .trust-section,
.escom-home .catalog-section,
.escom-home .testimonial-section {
    width: min(1180px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.featured-strip {
    padding: 32px 0 20px;
}

.featured-strip .section-heading {
    color: #ffffff;
}

.featured-strip .section-heading .eyebrow {
    color: var(--gold);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.featured-product {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: var(--radius);
    padding: 14px;
    color: #ffffff;
    background: rgba(247, 251, 255, 0.09);
}

.featured-product span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-product h3 {
    margin-bottom: 5px;
    font-size: 0.98rem;
    line-height: 1.25;
}

.featured-product p,
.featured-product strong {
    display: block;
    margin: 0;
    color: rgba(247, 251, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
}

.featured-product strong {
    margin-top: 4px;
    color: #ffffff;
}

.escom-about {
    padding: 58px 0 34px;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 34px;
}

.section-tabs a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: var(--radius);
    padding: 0 18px;
    color: rgba(247, 251, 255, 0.78);
    font-weight: 800;
}

.section-tabs a:hover {
    color: #ffffff;
    background: rgba(247, 251, 255, 0.08);
}

.escom-about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    border-top: 1px solid rgba(247, 251, 255, 0.14);
    padding-top: 34px;
}

.escom-about .eyebrow {
    color: var(--gold);
}

.escom-about h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
}

.escom-about p {
    max-width: 760px;
    margin-bottom: 18px;
    color: rgba(247, 251, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.75;
}

.escom-about strong {
    color: #ffffff;
}

.escom-home .trust-section {
    margin-top: 18px;
    margin-bottom: 32px;
}

.proof-strip {
    width: min(1180px, calc(100% - 32px));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 32px;
}

.proof-strip span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: var(--radius);
    padding: 0 12px;
    color: rgba(247, 251, 255, 0.8);
    background: rgba(247, 251, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 800;
}

.escom-home .trust-card {
    border-color: rgba(247, 251, 255, 0.16);
    color: #ffffff;
    background: rgba(247, 251, 255, 0.08);
    box-shadow: none;
}

.escom-home .trust-card span {
    color: #04121e;
    background: var(--gold);
}

.escom-home .trust-card p {
    color: rgba(247, 251, 255, 0.68);
}

.escom-home .catalog-section,
.escom-home .testimonial-section {
    color: var(--ink);
}

.escom-home .catalog-section {
    border-radius: var(--radius);
    padding: 34px;
    background: rgba(247, 251, 255, 0.97);
    box-shadow: 0 22px 55px rgba(3, 15, 26, 0.26);
}

.escom-home .testimonial-section {
    padding-bottom: 24px;
}

.escom-home .site-footer {
    color: rgba(247, 251, 255, 0.82);
    border-top-color: rgba(247, 251, 255, 0.14);
}

.escom-home .site-footer span,
.escom-home .site-footer a {
    color: rgba(247, 251, 255, 0.68);
}

.escom-home .section-heading,
.escom-home .filter-panel,
.escom-home .trust-card,
.escom-home .testimonial-card {
    animation: mj-fade-up 700ms ease both;
}

.escom-home .trust-card:nth-child(2),
.escom-home .testimonial-card:nth-child(2) {
    animation-delay: 80ms;
}

.escom-home .trust-card:nth-child(3),
.escom-home .testimonial-card:nth-child(3) {
    animation-delay: 160ms;
}

.escom-home .trust-card:nth-child(4) {
    animation-delay: 240ms;
}

.escom-home .product-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    animation: mj-fade-up 680ms ease both;
}

.escom-home .product-card:nth-child(2) {
    animation-delay: 70ms;
}

.escom-home .product-card:nth-child(3) {
    animation-delay: 140ms;
}

.escom-home .product-card:nth-child(4) {
    animation-delay: 210ms;
}

.escom-home .product-card:nth-child(n + 5) {
    animation-delay: 280ms;
}

.escom-home .product-card:hover {
    transform: translateY(-7px);
    border-color: #b8d7ef;
    box-shadow: 0 18px 44px rgba(3, 15, 26, 0.14);
}

.escom-home .product-card .art-bottle,
.escom-home .product-card .product-photo img {
    transition: transform 200ms ease;
}

.escom-home .product-card:hover .art-bottle {
    transform: translateX(-50%) translateY(-5px);
}

.escom-home .product-card:hover .product-photo img {
    transform: scale(1.035);
}

@keyframes mj-skeleton {
    to {
        background-position:
            calc(100% + 220px) 0,
            18px 16px,
            210px 16px,
            402px 16px,
            0 0;
    }
}

@keyframes mj-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes mj-float-soft {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

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

@media (max-width: 1080px) {
    .shop-hero,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .confirmation-grid,
    .about-hero {
        grid-template-columns: 1fr;
    }

    .shop-hero {
        min-height: auto;
    }

    .hero-showcase {
        min-height: 440px;
    }

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

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

    .promo-section {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        align-self: stretch;
    }

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

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

    .trust-section,
    .testimonial-grid,
    .about-grid,
    .branches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-line {
        grid-template-columns: 86px minmax(0, 1fr) 180px auto;
    }

    .line-total {
        text-align: left;
    }

    .summary-panel {
        max-width: 520px;
    }

    .escom-hero h1 {
        font-size: 3.4rem;
    }

    .escom-hero.hero-photo {
        min-height: 620px;
        background-position: 62% center;
    }

    .escom-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .escom-hero .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-search-panel {
        margin-right: auto;
        margin-left: auto;
    }

    .escom-hero-visual {
        width: min(680px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

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

    .hero-copy h1,
    .page-heading h1,
    .confirmation-panel h1 {
        font-size: 2.35rem;
    }

    .hero-copy {
        padding: 24px;
    }

    .filter-panel,
    .form-grid,
    .hero-search-panel,
    .price-filter-grid,
    .quick-view-panel form,
    .purchase-panel {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .product-grid-compact,
    .trust-section,
    .testimonial-grid,
    .about-grid,
    .branches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-specs,
    .site-footer,
    .contact-band,
    .order-details,
    .legal-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-line {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .quantity-form {
        grid-column: 1 / -1;
    }

    .escom-home .header-inner {
        align-items: center;
    }

    .escom-hero {
        min-height: auto;
        padding-top: 42px;
        padding-bottom: 56px;
    }

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

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .escom-logo-card img {
        width: min(210px, 72%);
    }

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

    .escom-hero h1 {
        font-size: 2.7rem;
    }

    .escom-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .site-main,
    .site-footer {
        width: min(100% - 20px, 1180px);
    }

    .brand-link {
        min-width: 0;
    }

    .brand-logo {
        width: 102px;
        height: 64px;
    }

    .brand-copy small {
        display: none;
    }

    .main-nav a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 0.88rem;
    }

    .shop-hero {
        gap: 22px;
        padding-top: 12px;
    }

    .hero-copy h1,
    .page-heading h1,
    .confirmation-panel h1,
    .about-copy h1 {
        font-size: 2rem;
    }

    .hero-stats,
    .checkout-steps,
    .showcase-row,
    .product-grid,
    .product-grid-compact,
    .trust-section,
    .testimonial-grid,
    .about-grid,
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .product-art.hero,
    .product-photo.hero {
        height: 240px;
    }

    .product-art.large,
    .product-photo.large {
        min-height: 360px;
    }

    .product-footer,
    .section-heading,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-footer form,
    .product-actions,
    .product-actions form,
    .product-footer .button,
    .cart-actions,
    .cart-actions .button,
    .filter-actions,
    .filter-actions .button,
    .confirmation-actions,
    .confirmation-actions .button,
    .contact-actions,
    .contact-actions .button {
        width: 100%;
    }

    .filter-actions {
        display: grid;
    }

    .coupon-form,
    .coupon-status {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .cart-line {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .product-art.mini,
    .product-photo.mini {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .quantity-form {
        grid-template-columns: 1fr;
    }

    .line-total,
    .text-button {
        grid-column: 1 / -1;
    }

    .checkout-form,
    .confirmation-panel,
    .empty-state,
    .about-copy,
    .contact-band,
    .legal-page {
        padding: 20px;
    }

    .about-logo-panel {
        min-height: 300px;
        padding: 18px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .cart-toast {
        right: 10px;
        bottom: 82px;
        max-width: calc(100vw - 20px);
    }

    .escom-home .brand-logo {
        width: 78px;
        height: 58px;
    }

    .escom-hero {
        padding-top: 34px;
    }

    .escom-hero.hero-photo {
        min-height: 620px;
        background-position: 70% center;
    }

    .escom-hero h1 {
        font-size: 2.25rem;
    }

    .escom-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .escom-hero .hero-actions,
    .section-tabs {
        width: 100%;
        display: grid;
    }

    .hero-metrics,
    .hero-product-stack {
        grid-template-columns: 1fr;
    }

    .hero-search-panel {
        padding: 8px;
    }

    .hero-metrics dt {
        font-size: 1.45rem;
    }

    .escom-logo-card {
        padding: 18px;
    }

    .hero-product-card {
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: center;
    }

    .escom-about,
    .escom-home .trust-section,
    .escom-home .catalog-section,
    .escom-home .testimonial-section {
        width: min(100% - 20px, 1180px);
    }

    .escom-home .catalog-section {
        padding: 22px 14px;
    }
}
