:root {
    --ink-950: #061a3a;
    --ink-900: #012150;
    --ink-800: #0b3567;
    --ink-700: #214c78;
    --slate-700: #425466;
    --slate-600: #5f6f7f;
    --slate-500: #7b8996;
    --slate-300: #cbd5df;
    --slate-200: #dde5ec;
    --slate-100: #edf2f6;
    --slate-50: #f6f8fa;
    --paper: #ffffff;
    --accent: #b67c2a;
    --accent-dark: #8f5e1b;
    --accent-soft: #fbf3e6;
    --teal: #b67c2a;
    --teal-soft: #fbf3e6;
    --green: #208347;
    --green-soft: #eaf7ee;
    --red: #c54538;
    --red-soft: #fceeed;
    --shadow-xs: 0 1px 2px rgba(1, 33, 80, 0.05);
    --shadow-sm: 0 10px 28px rgba(1, 33, 80, 0.08);
    --shadow-md: 0 18px 54px rgba(1, 33, 80, 0.13);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 180ms ease;
}

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

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    color: var(--ink-950);
    background: var(--paper);
    font-family:
        'Manrope',
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body > * {
    max-width: 100%;
}

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

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

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

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

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

h1,
h2,
h3 {
    color: var(--ink-950);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

p {
    color: var(--slate-600);
}

.container {
    width: min(100% - 40px, 1320px);
    max-width: none;
    min-width: 0;
    margin-inline: auto;
    padding-inline: 0;
}

.row > * {
    min-width: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #fff;
    background: var(--ink-950);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.section {
    padding: 96px 0;
}

.section--soft {
    background: var(--slate-50);
}

.section--compact {
    padding-top: 36px;
    padding-bottom: 88px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #9fd9d5;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    max-width: none;
}

.section-heading--split > div {
    max-width: 760px;
    min-width: 0;
}

.text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-900);
    font-weight: 800;
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 46px;
    border-radius: 12px;
    padding: 0.7rem 1.1rem;
    font-weight: 800;
    box-shadow: none !important;
}

.btn-lg {
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    font-size: 0.96rem;
}

.btn-primary {
    border-color: var(--ink-900);
    background: var(--ink-900);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    border-color: var(--ink-800);
    background: var(--ink-800);
}

.btn-outline-primary {
    border-color: var(--slate-300);
    color: var(--ink-900);
    background: var(--paper);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    border-color: var(--ink-900);
    color: var(--paper);
    background: var(--ink-900);
}

.btn-accent,
.btn-gold {
    border-color: var(--accent);
    color: var(--ink-950);
    background: var(--accent);
}

.btn-accent:hover,
.btn-accent:focus-visible,
.btn-gold:hover,
.btn-gold:focus-visible {
    border-color: #c99445;
    color: var(--ink-950);
    background: #c99445;
}

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--paper);
    background: rgba(255, 255, 255, 0.07);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
    border-color: rgba(255, 255, 255, 0.46);
    color: var(--paper);
    background: rgba(255, 255, 255, 0.14);
}

.btn-whatsapp {
    border-color: #1f9d5a;
    color: var(--paper);
    background: #1f9d5a;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    border-color: #177c47;
    color: var(--paper);
    background: #177c47;
}

.form-control,
.form-select {
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    border-color: var(--slate-200);
    border-radius: 11px;
    color: var(--ink-950);
    background-color: var(--paper);
    font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(182, 124, 42, 0.12);
}

.form-label,
.filter-field label,
.detail-field label {
    margin-bottom: 7px;
    color: var(--ink-900);
    font-size: 0.78rem;
    font-weight: 800;
}

.input-icon {
    position: relative;
    min-width: 0;
}

.input-icon > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 1;
    color: var(--slate-500);
    transform: translateY(-50%);
}

.input-icon .form-control {
    padding-left: 44px;
}

/* Header */
.utility-bar {
    color: #d9e4ec;
    background: var(--ink-950);
    font-size: 0.72rem;
    font-weight: 600;
}

.utility-bar__inner,
.utility-bar__contact,
.utility-bar__inner > span,
.utility-bar__contact > * {
    display: flex;
    align-items: center;
}

.utility-bar__inner {
    justify-content: space-between;
    min-height: 36px;
}

.utility-bar__inner > span,
.utility-bar__contact > * {
    gap: 0.45rem;
}

.utility-bar__contact {
    gap: 24px;
}

.utility-bar a:hover {
    color: var(--paper);
}

.utility-bar i {
    color: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1025;
    width: 100%;
    border-bottom: 1px solid rgba(203, 213, 223, 0.7);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 8px 28px rgba(7, 31, 51, 0.09);
}

.site-header .navbar {
    padding: 0;
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;
    min-height: 82px;
}

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

.brand > img {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.15;
}

.brand__copy strong {
    color: var(--ink-950);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand__copy small {
    margin-top: 4px;
    color: var(--slate-500);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--slate-50);
}

.desktop-nav__link {
    position: relative;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--slate-700);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.desktop-nav__link:hover,
.desktop-nav__link.active {
    color: var(--ink-950);
    background: var(--paper);
    box-shadow: var(--shadow-xs);
}

.header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.request-button,
.menu-button,
.menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--ink-950);
    background: transparent;
}

.request-button {
    position: relative;
    min-height: 46px;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    color: var(--paper);
    background: var(--ink-900);
    font-size: 0.8rem;
    font-weight: 800;
}

.request-button:hover {
    background: var(--ink-800);
}

.request-button b {
    display: inline-grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    color: var(--ink-950);
    background: var(--accent);
    font-size: 0.65rem;
}

.menu-button,
.menu-close {
    width: 46px;
    height: 46px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--paper);
    font-size: 1.45rem;
}

.menu-close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.mobile-menu,
.mini-cart {
    --bs-offcanvas-width: min(430px, 100%);
    border-left: 0;
    box-shadow: -20px 0 50px rgba(7, 31, 51, 0.14);
}

.mobile-menu__header,
.mini-cart__header {
    display: flex;
    width: 100%;
    min-height: 82px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-200);
}

.mobile-menu__header .menu-close {
    margin-left: auto;
}

.mobile-menu__header .brand > img {
    width: 52px;
    height: 52px;
}

.mobile-menu__body {
    display: flex;
    flex-direction: column;
    padding: 26px 20px 22px;
}

.mobile-menu__eyebrow {
    margin-bottom: 10px;
    color: var(--slate-500);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mobile-nav {
    display: grid;
    gap: 7px;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 9px 14px;
    border-radius: 13px;
    color: var(--ink-900);
    font-weight: 800;
}

.mobile-nav__link > span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav__link > span i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    color: var(--ink-900);
    background: var(--slate-100);
}

.mobile-nav__link.active {
    color: var(--paper);
    background: var(--ink-900);
}

.mobile-nav__link.active > span i {
    color: var(--ink-950);
    background: var(--accent);
}

.mobile-menu__support {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
}

.mobile-menu__support > span {
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu__support > strong {
    margin-bottom: 8px;
    line-height: 1.4;
}

.mini-cart__header {
    align-items: flex-start;
    background: var(--slate-50);
}

.mini-cart__header .eyebrow {
    margin-bottom: 4px;
}

.mini-cart__header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.mini-cart__body {
    padding: 18px 20px;
}

.mini-cart__footer {
    padding: 17px 20px calc(17px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--slate-200);
    background: var(--paper);
}

.mini-cart__summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    color: var(--slate-600);
    font-size: 0.8rem;
}

.mini-cart__summary strong {
    color: var(--ink-950);
    font-size: 0.95rem;
}

.mini-cart__clear {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    border: 0;
    color: var(--slate-500);
    background: transparent;
    font-size: 0.74rem;
    font-weight: 700;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-100);
}

.mini-cart-item > img {
    width: 68px;
    height: 68px;
    border-radius: 11px;
    background: var(--slate-50);
    object-fit: contain;
}

.mini-cart-item__info {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mini-cart-item__info strong {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 0.82rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-cart-item__info span,
.mini-cart-item__info small {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-cart-item__actions {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
}

.mini-cart-item__actions button {
    border: 0;
    color: var(--slate-500);
    background: transparent;
}

.mini-cart-item__actions strong {
    color: var(--ink-900);
    font-size: 0.72rem;
    white-space: nowrap;
}

.mini-cart-empty {
    display: flex;
    min-height: 290px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 36px 18px;
    text-align: center;
}

.mini-cart-empty > i {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 17px;
    place-items: center;
    border-radius: 20px;
    color: var(--ink-900);
    background: var(--slate-100);
    font-size: 1.6rem;
}

.mini-cart-empty h3 {
    margin-bottom: 6px;
    font-size: 1.12rem;
}

.mini-cart-empty p {
    max-width: 280px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

/* Home */
.hero-home {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background:
        radial-gradient(circle at 86% 12%, rgba(182, 124, 42, 0.34), transparent 32%),
        radial-gradient(circle at 6% 92%, rgba(182, 124, 42, 0.18), transparent 28%), var(--ink-950);
}

.hero-home::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.018);
    content: '';
}

.hero-home__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
    min-height: 690px;
    padding-top: 82px;
    padding-bottom: 92px;
}

.hero-home__copy {
    min-width: 0;
}

.hero-home h1 {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--paper);
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    letter-spacing: -0.055em;
}

.hero-home__copy > p {
    max-width: 700px;
    margin-bottom: 32px;
    color: #c8d5df;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-home__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 730px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-home__metrics > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding-right: 22px;
}

.hero-home__metrics > div + div {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-home__metrics strong {
    color: var(--paper);
    font-size: 0.86rem;
}

.hero-home__metrics span {
    margin-top: 4px;
    color: #8fa4b4;
    font-size: 0.68rem;
    line-height: 1.45;
}

.supply-card {
    min-width: 0;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(15px);
}

.supply-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.supply-card__header > div {
    display: flex;
    flex-direction: column;
}

.supply-card__header > div span {
    color: #8fa4b4;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.supply-card__header > div strong {
    margin-top: 4px;
    color: var(--paper);
    font-size: 0.9rem;
}

.supply-card__status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    color: #b8e7c9;
    background: rgba(32, 131, 71, 0.18);
    font-size: 0.62rem;
    font-weight: 800;
}

.supply-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ad176;
    box-shadow: 0 0 0 4px rgba(74, 209, 118, 0.12);
}

.supply-route {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 17px 0 8px;
    list-style: none;
}

.supply-route li {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 38px;
    gap: 13px;
    align-items: center;
    min-height: 86px;
}

.supply-route li:not(:last-child)::after {
    position: absolute;
    top: 57px;
    bottom: -17px;
    left: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
    content: '';
}

.supply-route li > span {
    display: grid;
    width: 32px;
    height: 32px;
    z-index: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--accent);
    background: var(--ink-950);
    font-size: 0.62rem;
    font-weight: 800;
}

.supply-route li > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.supply-route strong {
    color: var(--paper);
    font-size: 0.82rem;
}

.supply-route small {
    color: #96aab9;
    font-size: 0.68rem;
}

.supply-route li > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: #a8dad6;
    background: rgba(182, 124, 42, 0.2);
}

.supply-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.supply-card__footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #aebfcb;
    font-size: 0.64rem;
    font-weight: 700;
}

.supply-card__footer i {
    color: var(--accent);
}

.service-ribbon {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--slate-200);
    background: var(--paper);
}

.service-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-ribbon__grid > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 24px 20px;
}

.service-ribbon__grid > div + div {
    border-left: 1px solid var(--slate-200);
}

.service-ribbon__grid > div > span {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 1.05rem;
}

.service-ribbon__grid > div > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.service-ribbon strong {
    font-size: 0.8rem;
}

.service-ribbon small {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 0.66rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 36px;
    gap: 15px;
    align-items: center;
    min-height: 128px;
    padding: 22px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition:
        border-color var(--transition),
        background var(--transition);
}

.category-card:hover {
    border-color: #9eb3c2;
    background: var(--slate-50);
}

.category-card__number {
    position: absolute;
    top: 12px;
    right: 15px;
    color: var(--slate-300);
    font-size: 0.62rem;
    font-weight: 800;
}

.category-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--ink-900);
    background: var(--accent-soft);
    font-size: 1.3rem;
}

.category-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.category-card strong {
    color: var(--ink-950);
    font-size: 0.86rem;
    line-height: 1.35;
}

.category-card small {
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 0.68rem;
    line-height: 1.45;
}

.category-card__arrow {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    color: var(--ink-900);
    background: var(--paper);
}

.sectors-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--ink-950);
}

.sectors-panel__copy {
    padding: clamp(36px, 5vw, 68px);
    background: linear-gradient(135deg, rgba(182, 124, 42, 0.3), transparent 65%);
}

.sectors-panel__copy h2 {
    margin-bottom: 18px;
    color: var(--paper);
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.sectors-panel__copy p {
    margin-bottom: 26px;
    color: #acbdc9;
}

.sector-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.sector-list > div {
    display: flex;
    min-height: 180px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 24px;
    background: var(--ink-950);
}

.sector-list i {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: auto;
    place-items: center;
    border-radius: 13px;
    color: var(--accent);
    background: rgba(182, 124, 42, 0.12);
    font-size: 1.15rem;
}

.sector-list strong {
    color: var(--paper);
    font-size: 0.82rem;
}

.sector-list span {
    margin-top: 3px;
    color: #7f95a5;
    font-size: 0.63rem;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.about-split__visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 50%, rgba(182, 124, 42, 0.3), transparent 28%),
        linear-gradient(145deg, var(--ink-900), var(--ink-950));
}

.about-split__network {
    position: absolute;
    inset: 0;
}

.network-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.network-node--main {
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--paper);
    transform: translate(-50%, -50%);
}

.network-node--main img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.network-node--one,
.network-node--two,
.network-node--three {
    width: 108px;
    height: 88px;
    grid-template-rows: 1fr auto;
    padding: 14px;
}

.network-node--one {
    top: 13%;
    left: 11%;
}
.network-node--two {
    top: 14%;
    right: 10%;
}
.network-node--three {
    right: 12%;
    bottom: 17%;
}

.network-node i {
    color: var(--accent);
    font-size: 1.3rem;
}

.network-node small {
    color: #c7d4dd;
    font-size: 0.61rem;
    font-weight: 800;
}

.network-line {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(182, 124, 42, 0.2), rgba(182, 124, 42, 0.8));
    transform-origin: left center;
}

.network-line--one {
    top: 30%;
    left: 28%;
    width: 32%;
    transform: rotate(27deg);
}
.network-line--two {
    top: 50%;
    left: 59%;
    width: 28%;
    transform: rotate(-39deg);
}
.network-line--three {
    top: 58%;
    left: 57%;
    width: 29%;
    transform: rotate(35deg);
}

.about-split__badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.about-split__badge > i {
    color: var(--teal);
    font-size: 1.4rem;
}

.about-split__badge > span {
    display: flex;
    flex-direction: column;
}

.about-split__badge strong {
    font-size: 0.75rem;
}

.about-split__badge small {
    color: var(--slate-500);
    font-size: 0.63rem;
}

.about-split__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-split__copy > p {
    font-size: 1rem;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: var(--slate-600);
    font-size: 0.86rem;
}

.check-list i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    color: var(--teal);
    background: var(--teal-soft);
}

.check-list strong {
    color: var(--ink-950);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    padding: clamp(32px, 5vw, 58px);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 92% 0%, rgba(182, 124, 42, 0.42), transparent 34%), var(--ink-950);
}

.cta-panel > div:first-child {
    max-width: 750px;
}

.cta-panel h2 {
    margin-bottom: 10px;
    color: var(--paper);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.cta-panel p {
    margin-bottom: 0;
    color: #aebfcb;
}

.cta-panel__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.cta-panel__actions > a:last-child {
    color: #c8d5df;
    font-size: 0.76rem;
    font-weight: 700;
}

.cta-panel__actions > a:last-child i {
    margin-right: 5px;
    color: #54cb7e;
}

/* Catalog and product cards */
.catalog-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background: radial-gradient(circle at 82% 15%, rgba(182, 124, 42, 0.34), transparent 27%), var(--ink-950);
}

.catalog-hero::after,
.page-hero::after {
    position: absolute;
    right: 7%;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: '';
}

.catalog-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 80px;
    align-items: end;
    min-height: 390px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.catalog-hero__grid > div:first-child {
    max-width: 790px;
}

.catalog-hero h1,
.page-hero h1 {
    margin-bottom: 14px;
    color: var(--paper);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.catalog-hero__grid > div:first-child > p,
.page-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: #b3c3cf;
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--slate-500);
    font-size: 0.72rem;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb i {
    font-size: 0.55rem;
}

.breadcrumb--light,
.page-hero .breadcrumb {
    color: #90a5b5;
}

.breadcrumb--light a:hover,
.page-hero .breadcrumb a:hover {
    color: var(--paper);
}

.catalog-hero__aside {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
}

.catalog-hero__aside > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--accent);
    background: rgba(182, 124, 42, 0.12);
    font-size: 1.2rem;
}

.catalog-hero__aside strong {
    color: var(--paper);
    font-size: 0.8rem;
}

.catalog-hero__aside p {
    margin: 4px 0 10px;
    color: #9eb0be;
    font-size: 0.67rem;
    line-height: 1.5;
}

.catalog-hero__aside a {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
}

.catalog-section {
    background: var(--slate-50);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.catalog-filters {
    min-width: 0;
}

.catalog-filters .offcanvas-header {
    display: none;
}

.catalog-filters .offcanvas-body {
    padding: 0;
    overflow: visible;
}

.filter-panel {
    position: sticky;
    top: 110px;
    padding: 20px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-xs);
}

.filter-panel__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--slate-100);
}

.filter-panel__title span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-900);
    font-size: 0.8rem;
    font-weight: 800;
}

.filter-panel__title button {
    padding: 0;
    border: 0;
    color: var(--teal);
    background: none;
    font-size: 0.68rem;
    font-weight: 800;
}

.filter-field + .filter-field {
    margin-top: 17px;
}

.catalog-results {
    min-width: 0;
}

.catalog-toolbar {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.catalog-toolbar__result {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.catalog-toolbar__result span {
    color: var(--slate-500);
    font-size: 0.65rem;
    font-weight: 700;
}

.catalog-toolbar__result strong {
    color: var(--ink-950);
    font-size: 0.9rem;
}

.catalog-toolbar__actions {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

.catalog-toolbar__actions > label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.catalog-toolbar__actions > label > span {
    color: var(--slate-500);
    font-size: 0.68rem;
    font-weight: 700;
}

.catalog-toolbar__actions .form-select {
    width: 188px;
    min-height: 40px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 0.75rem;
}

.product-card {
    display: flex;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--paper);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    border-color: #a9bbc9;
    box-shadow: var(--shadow-sm);
}

.product-card__media,
.product-card-gallery {
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
    background: #eef3f6;
}

.product-card-gallery,
.product-card-gallery .carousel-inner,
.product-card-gallery .carousel-item {
    height: 262px;
}

.product-media {
    position: relative;
    display: block;
    width: 100%;
    height: 262px;
    overflow: hidden;
    cursor: zoom-in;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 300ms ease;
}

.product-card:hover .product-media img {
    transform: scale(1.025);
}

.product-media__zoom {
    position: absolute;
    right: 13px;
    bottom: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 10px;
    border-radius: 10px;
    color: var(--ink-950);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-sm);
    font-size: 0.68rem;
}

.product-media__zoom b {
    font-weight: 800;
}

.product-card__badges {
    position: absolute;
    top: 13px;
    right: 13px;
    left: 13px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.product-card__code,
.availability,
.product-card__images {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 0.63rem;
    font-weight: 800;
}

.product-card__code {
    max-width: 140px;
    overflow: hidden;
    padding: 7px 10px;
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.availability {
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
}

.availability i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.availability--disponible {
    color: var(--green);
}
.availability--bajo-pedido {
    color: var(--accent-dark);
}
.availability--agotado {
    color: var(--red);
}

.product-card__images {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
    padding: 7px 9px;
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
}

.product-gallery-button {
    top: 50%;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity var(--transition);
}

.product-gallery-button.carousel-control-prev {
    left: 12px;
}
.product-gallery-button.carousel-control-next {
    right: 12px;
}
.product-card:hover .product-gallery-button,
.product-gallery-button:focus-visible {
    opacity: 1;
}

.product-card__body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.product-card__meta {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 11px;
}

.product-card__meta > span:last-child:not(.product-tag) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--slate-500);
    font-size: 0.62rem;
    font-weight: 700;
}

.product-tag {
    display: inline-flex;
    max-width: 75%;
    overflow: hidden;
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 0.62rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.product-card h3 a:hover {
    color: var(--teal);
}

.product-card__description {
    display: -webkit-box;
    min-height: 43px;
    margin-bottom: 17px;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 0.78rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.product-card__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid #dcebe9;
    border-radius: 12px;
    background: #f5fbfa;
}

.product-card__price > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.product-card__price small {
    color: var(--slate-500);
    font-size: 0.61rem;
    font-weight: 700;
}

.product-card__price strong {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 0.94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__price > i {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--teal);
    background: var(--teal-soft);
}

.product-card__price--quote {
    border-color: #f2dfc4;
    background: #fffaf2;
}

.product-card__price--quote > i {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.product-quick-add {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 10px;
    min-width: 0;
    margin-bottom: 11px;
}

.product-quick-add label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.product-quick-add label > span {
    color: var(--slate-500);
    font-size: 0.61rem;
    font-weight: 800;
}

.product-quick-add .form-select,
.product-quick-add .form-control {
    min-height: 43px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    font-size: 0.74rem;
}

.product-quantity .form-control {
    text-align: center;
}

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

.product-card__actions .btn {
    min-width: 0;
    min-height: 45px;
    padding-inline: 10px;
    font-size: 0.75rem;
}

.btn-product-detail {
    justify-content: space-between;
    border: 1px solid var(--slate-200);
    color: var(--ink-900);
    background: var(--paper);
}

.btn-product-detail:hover {
    border-color: var(--ink-900);
    color: var(--ink-900);
    background: var(--slate-50);
}

.pagination {
    gap: 5px;
}

.pagination .page-link {
    display: grid;
    min-width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 10px !important;
    color: var(--ink-900);
    background: var(--paper);
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    border-color: var(--ink-900);
    color: var(--paper);
    background: var(--ink-900);
}

.pagination .page-item.disabled .page-link {
    color: var(--slate-300);
    background: var(--slate-50);
}

.pagination--compact .page-link {
    min-width: 33px;
    height: 33px;
    border-radius: 9px !important;
}

.catalog-pagination {
    margin-top: 42px;
}

.catalog-empty {
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 45px 20px;
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius-lg);
    background: var(--paper);
    text-align: center;
}

.catalog-empty > i {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 20px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 1.5rem;
}

.catalog-empty h2 {
    margin-bottom: 7px;
    font-size: 1.35rem;
}

.catalog-empty p {
    margin-bottom: 18px;
}

.catalog-mobile-tools {
    display: none;
}

/* Product detail */
.detail-breadcrumb {
    padding: 20px 0 0;
    background: var(--slate-50);
}

.detail-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.detail-breadcrumb .breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-detail-section {
    padding: 36px 0 90px;
    background: var(--slate-50);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.83fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: start;
}

.product-gallery-panel {
    min-width: 0;
}

.product-gallery-panel__topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
    color: var(--slate-500);
    font-size: 0.67rem;
    font-weight: 700;
}

.product-gallery-panel__topline span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-gallery-main {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    background: var(--paper);
}

.product-gallery-main .swiper-slide {
    height: clamp(440px, 48vw, 620px);
    background: #edf2f5;
}

.product-gallery-zoom {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.product-gallery-zoom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery-zoom > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 11px;
    color: var(--ink-950);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    font-size: 0.72rem;
    font-weight: 800;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transform: translateY(-50%);
}

.gallery-nav--prev {
    left: 18px;
}
.gallery-nav--next {
    right: 18px;
}

.product-gallery-main .swiper-pagination-bullet {
    background: var(--slate-500);
    opacity: 0.5;
}

.product-gallery-main .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: var(--ink-900);
    opacity: 1;
}

.product-gallery-thumbs {
    margin-top: 12px;
}

.product-gallery-thumbs .swiper-slide {
    height: 88px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 13px;
    background: var(--paper);
    opacity: 0.62;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--teal);
    opacity: 1;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-info {
    position: sticky;
    top: 114px;
    min-width: 0;
}

.product-detail-info__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.product-detail-info__meta .availability {
    padding: 7px 10px;
    border: 1px solid var(--slate-200);
    box-shadow: none;
}

.product-detail-info h1 {
    margin-bottom: 13px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.product-code-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--slate-500);
    font-size: 0.72rem;
}

.product-code-detail strong {
    padding: 4px 7px;
    border-radius: 6px;
    color: var(--ink-900);
    background: var(--slate-100);
    font-size: 0.68rem;
}

.product-detail-description {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.detail-price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
    margin-bottom: 16px;
    padding: 17px;
    border: 1px solid #d5e9e7;
    border-radius: var(--radius-md);
    background: #f4fbfa;
}

.detail-price > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.detail-price small {
    color: var(--slate-500);
    font-size: 0.67rem;
    font-weight: 700;
}

.detail-price strong {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 1.28rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-price > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 1.1rem;
}

.detail-price p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--slate-500);
    font-size: 0.64rem;
}

.detail-price--quote {
    border-color: #f0ddbd;
    background: #fff9ef;
}

.detail-price--quote > i {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.detail-order-box {
    padding: 20px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-xs);
}

.detail-order-box__heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.detail-order-box__heading span {
    color: var(--teal);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-order-box__heading strong {
    font-size: 0.84rem;
}

.detail-order-box__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 11px;
}

.detail-add {
    width: 100%;
    margin-top: 13px;
}

.quantity-stepper {
    display: grid;
    grid-template-columns: 40px minmax(48px, 1fr) 40px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 11px;
    background: var(--paper);
}

.quantity-stepper button,
.quantity-stepper input {
    min-width: 0;
    height: 48px;
    border: 0;
    color: var(--ink-950);
    background: transparent;
    text-align: center;
}

.quantity-stepper button {
    color: var(--ink-900);
    font-size: 1.2rem;
    font-weight: 600;
}

.quantity-stepper button:hover {
    background: var(--slate-50);
}

.quantity-stepper input {
    border-right: 1px solid var(--slate-200);
    border-left: 1px solid var(--slate-200);
    appearance: textfield;
}

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

.whatsapp-product-link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    margin-top: 13px;
    padding: 14px;
    border-radius: 13px;
    color: var(--ink-900);
    background: var(--teal-soft);
}

.whatsapp-product-link > i:first-child {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--paper);
    background: #1f9d5a;
    font-size: 1.1rem;
}

.whatsapp-product-link > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.whatsapp-product-link strong {
    font-size: 0.75rem;
}

.whatsapp-product-link small {
    color: var(--slate-600);
    font-size: 0.63rem;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 56px;
}

.content-panel {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-xs);
}

.content-panel__heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.content-panel__heading > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 1.05rem;
}

.content-panel__heading small {
    color: var(--slate-500);
    font-size: 0.62rem;
    font-weight: 700;
}

.content-panel__heading h2 {
    margin: 0;
    font-size: 1.2rem;
}

.spec-list {
    margin: 0;
}

.spec-list > div {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--slate-100);
}

.spec-list dt {
    color: var(--slate-500);
    font-size: 0.75rem;
    font-weight: 700;
}

.spec-list dd {
    margin: 0;
    color: var(--ink-950);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: right;
}

.use-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.use-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--slate-700);
    font-size: 0.8rem;
}

.use-list i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    color: var(--teal);
    background: var(--teal-soft);
}

.detail-back {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    color: var(--slate-500);
    font-size: 0.7rem;
}

.detail-back a {
    color: var(--ink-900);
    font-weight: 800;
}

/* Internal pages */
.page-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 68px;
    padding-bottom: 68px;
}

.page-hero--compact .container {
    min-height: 360px;
}

.page-hero--legal .container {
    min-height: 260px;
}

.about-intro,
.contact-layout,
.request-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 7vw, 90px);
    align-items: start;
}

.about-intro h2,
.contact-info h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.company-highlights > div {
    display: flex;
    min-height: 166px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.company-highlights i {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: auto;
    place-items: center;
    border-radius: 12px;
    color: var(--teal);
    background: var(--teal-soft);
}

.company-highlights strong {
    font-size: 0.86rem;
}

.company-highlights span {
    margin-top: 3px;
    color: var(--slate-500);
    font-size: 0.68rem;
}

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

.value-grid article {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--paper);
}

.value-grid article > span {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 15px;
    color: var(--ink-900);
    background: var(--accent-soft);
    font-size: 1.2rem;
}

.value-grid h2 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.value-grid p {
    margin: 0;
    font-size: 0.82rem;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(32px, 5vw, 58px);
    border-radius: var(--radius-xl);
    background: var(--ink-950);
}

.cta-band h2 {
    margin-bottom: 8px;
    color: var(--paper);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-band p {
    margin-bottom: 0;
    color: #aebfcb;
}

.contact-info > p {
    margin-bottom: 28px;
}

.contact-list {
    display: grid;
    gap: 10px;
}

.contact-list > * {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--slate-200);
    border-radius: 13px;
    background: var(--paper);
}

.contact-list > div {
    grid-template-columns: 46px minmax(0, 1fr);
}

.contact-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    color: var(--ink-900);
    background: var(--slate-100);
}

.contact-icon--whatsapp {
    color: #177c47;
    background: var(--green-soft);
}

.contact-list > * > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-list small {
    color: var(--slate-500);
    font-size: 0.64rem;
}

.contact-list strong {
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
}

.contact-form header {
    margin-bottom: 24px;
}

.contact-form header h2 {
    margin-bottom: 7px;
    font-size: 1.6rem;
}

.contact-form header p {
    margin: 0;
    font-size: 0.8rem;
}

.legal-document {
    max-width: 860px;
}

.legal-document h2 {
    margin: 34px 0 12px;
    font-size: 1.5rem;
}

.legal-notice {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid #f0ddbd;
    border-radius: var(--radius-md);
    color: var(--accent-dark);
    background: #fff9ef;
}

.legal-notice > i {
    font-size: 1.2rem;
}

.legal-notice p {
    margin: 3px 0 0;
    font-size: 0.75rem;
}

.error-page {
    display: grid;
    min-height: 68vh;
    place-items: center;
    padding: 80px 0;
    background: var(--slate-50);
    text-align: center;
}

.error-page .container {
    max-width: 680px;
}

.error-code {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: clamp(4.5rem, 15vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.error-page h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.error-page p {
    max-width: 530px;
    margin: 0 auto 26px;
}

.error-page .container > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Request page */
.request-section {
    background: var(--slate-50);
}

.request-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.request-layout > div {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.panel-heading,
.panel-heading > div {
    display: flex;
    align-items: center;
}

.panel-heading {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.panel-heading > div {
    min-width: 0;
    gap: 12px;
}

.panel-heading h2 {
    margin-bottom: 3px;
    font-size: 1.15rem;
}

.panel-heading p {
    margin: 0;
    font-size: 0.72rem;
}

.step-number {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--paper);
    background: var(--ink-900);
    font-size: 0.75rem;
    font-weight: 800;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid var(--slate-100);
}

.cart-page-item > img {
    width: 94px;
    height: 94px;
    border-radius: 13px;
    background: var(--slate-50);
    object-fit: contain;
}

.cart-page-item__info {
    min-width: 0;
}

.cart-page-item__info h3 {
    margin-bottom: 4px;
    font-size: 0.94rem;
}

.cart-page-item__info p {
    margin-bottom: 10px;
    color: var(--slate-500);
    font-size: 0.68rem;
}

.cart-page-item .quantity-stepper {
    width: 136px;
}

.cart-page-item .quantity-stepper button,
.cart-page-item .quantity-stepper input {
    height: 38px;
}

.cart-page-item__price {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 9px;
}

.cart-page-item__price strong {
    color: var(--ink-900);
    font-size: 0.85rem;
}

.cart-page-item__price .btn-link {
    padding: 0;
    color: var(--red);
    font-size: 0.68rem;
}

.request-summary {
    position: sticky;
    top: 114px;
    padding: 26px;
    border-radius: var(--radius-lg);
    color: var(--paper);
    background: var(--ink-950);
    box-shadow: var(--shadow-md);
}

.request-summary h2 {
    margin-bottom: 22px;
    color: var(--paper);
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #9eb0be;
    font-size: 0.72rem;
}

.summary-row strong {
    color: var(--paper);
    text-align: right;
}

.summary-row--total {
    align-items: flex-start;
    margin-bottom: 18px;
    padding-top: 17px;
    border-bottom: 0;
}

.summary-row--total strong {
    max-width: 170px;
    color: var(--accent);
}

.request-summary__note {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    margin: 16px 0 0;
    color: #8fa4b4;
    font-size: 0.64rem;
}

.request-summary__note i {
    color: #54cb7e;
}

/* Footer and floating navigation */
.footer {
    color: #9fb1bf;
    background: #00142f;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(270px, 1.35fr) repeat(2, minmax(150px, 0.65fr)) minmax(230px, 0.9fr);
    gap: 46px;
    padding: 72px 0 54px;
}

.brand--footer .brand__copy strong {
    color: var(--paper);
}

.brand--footer .brand__copy small {
    color: #708796;
}

.footer__brand > p {
    max-width: 360px;
    margin: 20px 0;
    color: #8195a4;
    font-size: 0.78rem;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #b7c6d0;
}

.footer-socials a:hover {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.06);
}

.footer__column {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer__column h2 {
    margin-bottom: 12px;
    color: var(--paper);
    font-size: 0.8rem;
    letter-spacing: 0;
}

.footer__column > a,
.footer__column > p {
    margin: 0;
    color: #8095a4;
    font-size: 0.72rem;
}

.footer__column > a:hover {
    color: var(--paper);
}

.footer__contact > a,
.footer__contact > p {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    min-width: 0;
}

.footer__contact i {
    color: var(--accent);
}

.footer__contact span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #637987;
    font-size: 0.66rem;
}

.footer__bottom > span:last-child {
    display: flex;
    gap: 18px;
}

.footer__bottom a:hover {
    color: var(--paper);
}

.mobile-dock {
    display: none;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1010;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 14px;
    color: var(--paper);
    background: var(--ink-900);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Third-party visual alignment */
.jrs-toast {
    border-radius: 14px !important;
    box-shadow: var(--shadow-md) !important;
    font-family: 'Manrope', sans-serif !important;
}

.jrs-alert {
    border-radius: 20px !important;
    font-family: 'Manrope', sans-serif !important;
}

.gslide-media {
    border-radius: 14px;
    background: #f0f4f7 !important;
}

.gslide-image img {
    object-fit: contain;
}

.gslide-description {
    background: rgba(0, 20, 47, 0.95) !important;
}

.gdesc-inner {
    padding: 12px 16px !important;
}

.gslide-title,
.gslide-desc {
    color: var(--paper) !important;
    font-family: 'Manrope', sans-serif !important;
}

.gslide-title {
    margin-bottom: 3px !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
}

.gslide-desc {
    color: #9eb0be !important;
    font-size: 0.7rem !important;
}

@media (max-width: 1199.98px) {
    .header-shell {
        grid-template-columns: minmax(190px, 1fr) auto minmax(170px, 1fr);
    }

    .desktop-nav__link {
        padding-inline: 12px;
    }

    .hero-home__grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 50px;
    }

    .hero-home h1 {
        font-size: clamp(3rem, 5vw, 4.6rem);
    }

    .catalog-layout {
        grid-template-columns: 245px minmax(0, 1fr);
        gap: 24px;
    }

    .product-card-gallery,
    .product-card-gallery .carousel-inner,
    .product-card-gallery .carousel-item,
    .product-media {
        height: 245px;
    }

    .footer__top {
        grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(140px, 0.7fr)) minmax(210px, 0.9fr);
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .desktop-nav {
        display: none;
    }

    .header-shell {
        display: flex;
        justify-content: space-between;
        min-height: 76px;
    }

    .hero-home__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-home__copy {
        max-width: 780px;
    }

    .supply-card {
        max-width: 660px;
    }

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

    .sectors-panel {
        grid-template-columns: 1fr;
    }

    .about-split {
        gap: 50px;
    }

    .catalog-hero__grid {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 40px;
    }

    .catalog-mobile-tools {
        position: sticky;
        top: 84px;
        z-index: 12;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 96px;
        gap: 9px;
        margin: -18px -4px 22px;
        padding: 8px 4px;
        background: rgba(246, 248, 250, 0.96);
        backdrop-filter: blur(10px);
    }

    .catalog-mobile-search .form-control {
        min-height: 48px;
        border-color: var(--slate-200);
    }

    .filter-trigger {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 48px;
        border: 0;
        border-radius: 11px;
        color: var(--paper);
        background: var(--ink-900);
        font-size: 0.72rem;
        font-weight: 800;
    }

    .filter-trigger b:not(:empty) {
        position: absolute;
        top: -5px;
        right: -4px;
        display: grid;
        width: 20px;
        height: 20px;
        place-items: center;
        border-radius: 50%;
        color: var(--ink-950);
        background: var(--accent);
        font-size: 0.6rem;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-filters {
        --bs-offcanvas-height: auto;
        max-height: 88svh;
        border: 0;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -18px 60px rgba(7, 31, 51, 0.18);
    }

    .catalog-filters .offcanvas-header {
        display: flex;
    }

    .catalog-filters__header {
        padding: 18px 20px 12px;
        border-bottom: 1px solid var(--slate-200);
    }

    .catalog-filters__header .eyebrow {
        margin-bottom: 1px;
    }

    .catalog-filters__header h2 {
        margin: 0;
        font-size: 1.25rem;
    }

    .catalog-filters .offcanvas-body {
        overflow-y: auto;
        padding: 18px 20px calc(20px + env(safe-area-inset-bottom));
    }

    .filter-panel {
        position: static;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .filter-panel__title,
    .filter-field--desktop {
        display: none;
    }

    .filter-apply {
        width: 100%;
        margin-top: 22px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-info {
        position: static;
    }

    .request-layout {
        grid-template-columns: 1fr;
    }

    .request-summary {
        position: static;
    }

    .footer__top {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
        font-size: 14px;
    }

    .container {
        width: min(100% - 32px, 1320px);
    }

    .utility-bar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .header-shell {
        min-height: 70px;
    }

    .brand > img {
        width: 50px;
        height: 50px;
    }

    .brand__copy strong {
        font-size: 0.83rem;
    }

    .brand__copy small {
        font-size: 0.56rem;
    }

    .request-button {
        width: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 12px;
    }

    .request-button__label {
        display: none;
    }

    .request-button b {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 19px;
        height: 19px;
        border: 2px solid var(--paper);
    }

    .menu-button {
        width: 44px;
        height: 44px;
    }

    .section {
        padding: 66px 0;
    }

    .section--compact {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading--split {
        display: block;
    }

    .section-heading--split > a {
        margin-top: 15px;
    }

    .section-heading h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero-home__grid {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .hero-home h1 {
        margin-bottom: 18px;
        font-size: clamp(2.55rem, 12vw, 3.75rem);
    }

    .hero-home__copy > p {
        margin-bottom: 24px;
        font-size: 0.95rem;
    }

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

    .hero-home__actions .btn {
        width: 100%;
    }

    .hero-home__metrics {
        gap: 0;
        margin-top: 36px;
    }

    .hero-home__metrics > div {
        padding-right: 12px;
    }

    .hero-home__metrics > div + div {
        padding-left: 12px;
    }

    .hero-home__metrics strong {
        font-size: 0.7rem;
    }

    .hero-home__metrics span {
        font-size: 0.57rem;
    }

    .supply-card {
        padding: 20px;
        border-radius: 22px;
    }

    .supply-card__header {
        display: block;
    }

    .supply-card__status {
        margin-top: 12px;
    }

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

    .service-ribbon__grid > div {
        padding: 18px 8px;
    }

    .service-ribbon__grid > div:nth-child(3) {
        border-top: 1px solid var(--slate-200);
        border-left: 0;
    }

    .service-ribbon__grid > div:nth-child(4) {
        border-top: 1px solid var(--slate-200);
    }

    .service-ribbon__grid > div > span {
        width: 38px;
        height: 38px;
    }

    .service-ribbon strong {
        font-size: 0.72rem;
    }

    .service-ribbon small {
        font-size: 0.58rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .category-card {
        min-height: 104px;
        padding: 17px;
    }

    .sectors-panel {
        width: 100%;
        border-radius: 24px;
    }

    .sectors-panel__copy {
        padding: 32px 24px;
    }

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

    .sector-list > div {
        min-height: 150px;
        padding: 18px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-split__visual {
        min-height: 380px;
    }

    .network-node--main {
        width: 104px;
        height: 104px;
    }

    .network-node--main img {
        width: 72px;
        height: 72px;
    }

    .network-node--one,
    .network-node--two,
    .network-node--three {
        width: 90px;
        height: 76px;
    }

    .network-node--one {
        top: 10%;
        left: 6%;
    }
    .network-node--two {
        top: 12%;
        right: 5%;
    }
    .network-node--three {
        right: 7%;
        bottom: 18%;
    }

    .about-split__badge {
        right: 14px;
        bottom: 14px;
    }

    .cta-panel,
    .cta-band {
        align-items: stretch;
        flex-direction: column;
        padding: 30px 24px;
    }

    .cta-panel__actions {
        align-items: stretch;
    }

    .catalog-hero__grid {
        display: block;
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .catalog-hero h1,
    .page-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.15rem);
    }

    .catalog-hero__aside {
        margin-top: 28px;
    }

    .catalog-mobile-tools {
        top: 74px;
    }

    .catalog-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 13px;
    }

    .catalog-toolbar__actions nav {
        display: none;
    }

    .catalog-toolbar__actions > label > span {
        display: none;
    }

    .catalog-toolbar__actions .form-select {
        width: 164px;
        max-width: 42vw;
    }

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

    .product-card-gallery,
    .product-card-gallery .carousel-inner,
    .product-card-gallery .carousel-item,
    .product-media {
        height: min(68vw, 300px);
    }

    .product-gallery-button {
        opacity: 1;
    }

    .product-media__zoom b {
        display: none;
    }

    .product-media__zoom {
        width: 38px;
        height: 38px;
        justify-content: center;
        padding: 0;
        border-radius: 11px;
    }

    .product-card__body {
        padding: 19px;
    }

    .product-card__description {
        min-height: auto;
    }

    .product-quick-add {
        grid-template-columns: minmax(0, 1fr) 82px;
    }

    .product-detail-section {
        padding-top: 25px;
        padding-bottom: 65px;
    }

    .product-gallery-main {
        border-radius: 20px;
    }

    .product-gallery-main .swiper-slide {
        height: min(82vw, 420px);
    }

    .product-gallery-zoom > span {
        width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0;
    }

    .product-gallery-zoom > span:not(i) {
        font-size: 0;
    }

    .product-gallery-zoom > span i {
        font-size: 0.9rem;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav--prev {
        left: 11px;
    }
    .gallery-nav--next {
        right: 11px;
    }

    .product-gallery-thumbs .swiper-slide {
        height: 70px;
    }

    .product-detail-info h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .detail-order-box__fields {
        grid-template-columns: minmax(0, 1fr) 126px;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .detail-back {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero .container {
        padding-top: 50px;
        padding-bottom: 52px;
    }

    .page-hero--compact .container {
        min-height: auto;
    }

    .about-intro,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .request-layout {
        display: grid;
    }

    .content-panel {
        padding: 21px;
        border-radius: 18px;
    }

    .cart-page-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 13px;
    }

    .cart-page-item > img {
        width: 76px;
        height: 76px;
    }

    .cart-page-item__price {
        grid-column: 2;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .panel-heading {
        align-items: flex-start;
    }

    .footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
        padding-top: 56px;
    }

    .footer__brand,
    .footer__contact {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 34px;
    }

    .mobile-dock {
        position: fixed;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 12px;
        z-index: 1020;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 66px;
        padding: 7px;
        border: 1px solid rgba(203, 213, 223, 0.8);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 45px rgba(7, 31, 51, 0.2);
        backdrop-filter: blur(15px);
    }

    .mobile-dock > a,
    .mobile-dock > button {
        position: relative;
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        border: 0;
        border-radius: 14px;
        color: var(--slate-500);
        background: transparent;
        font-size: 0.58rem;
        font-weight: 800;
    }

    .mobile-dock > a > i,
    .mobile-dock > button > i {
        font-size: 1.08rem;
    }

    .mobile-dock > a.active {
        color: var(--ink-950);
        background: var(--slate-100);
    }

    .mobile-dock b {
        position: absolute;
        top: 1px;
        left: calc(50% + 7px);
        display: grid;
        min-width: 18px;
        height: 18px;
        place-items: center;
        border: 2px solid var(--paper);
        border-radius: 999px;
        color: var(--paper);
        background: var(--red);
        font-size: 0.55rem;
    }

    .back-top {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .container {
        width: min(100% - 26px, 1320px);
    }

    .brand__copy {
        display: none;
    }

    .mobile-menu__header .brand__copy,
    .brand--footer .brand__copy {
        display: flex;
    }

    .header-actions {
        gap: 7px;
    }

    .hero-home__metrics span {
        display: none;
    }

    .supply-route li {
        grid-template-columns: 32px minmax(0, 1fr) 34px;
        gap: 10px;
    }

    .category-card {
        grid-template-columns: 46px minmax(0, 1fr) 32px;
        gap: 12px;
    }

    .category-card__icon {
        width: 46px;
        height: 46px;
    }

    .sector-list > div {
        min-height: 136px;
        padding: 15px;
    }

    .about-split__visual {
        min-height: 330px;
    }

    .network-node--one,
    .network-node--two,
    .network-node--three {
        width: 76px;
        height: 68px;
        padding: 8px;
    }

    .network-node small {
        font-size: 0.53rem;
    }

    .about-split__badge {
        max-width: calc(100% - 28px);
    }

    .catalog-mobile-tools {
        grid-template-columns: minmax(0, 1fr) 84px;
    }

    .filter-trigger span {
        display: none;
    }

    .catalog-toolbar__result span {
        display: none;
    }

    .catalog-toolbar__actions .form-select {
        width: 148px;
        max-width: 47vw;
    }

    .product-card__badges {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .product-card__code,
    .availability {
        padding: 6px 8px;
        font-size: 0.58rem;
    }

    .product-card__actions {
        grid-template-columns: 1.18fr 0.82fr;
    }

    .product-card__actions .btn span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-gallery-panel__topline span:first-child {
        display: none;
    }

    .product-gallery-panel__topline {
        justify-content: flex-end;
    }

    .detail-order-box__fields {
        grid-template-columns: 1fr;
    }

    .detail-field--quantity .quantity-stepper {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }

    .spec-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .spec-list dd {
        text-align: left;
    }

    .company-highlights {
        grid-template-columns: 1fr;
    }

    .company-highlights > div {
        min-height: 140px;
    }

    .cart-page-item__price {
        align-items: flex-start;
        flex-direction: column;
    }

    .panel-heading > .btn {
        padding-inline: 8px;
        font-size: 0.65rem;
    }

    .mobile-dock {
        right: 8px;
        left: 8px;
    }
}

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

.mobile-menu__header {
    display: flex;
    width: 100%;
    align-items: center;
}

.mobile-menu__header .menu-close {
    margin-left: auto;
}


/* =========================================================
   Identidad visual VILMON / JRS - Agosto 2026
   Azul marino + dorado. Ajustes de marca y contraste.
   ========================================================= */
.utility-bar {
    background: #00142f;
}

.utility-bar i,
.footer__contact i {
    color: var(--accent);
}

.site-header {
    border-bottom-color: rgba(1, 33, 80, 0.10);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 34px rgba(1, 33, 80, 0.10);
}

.header-shell {
    min-height: 92px;
}

.brand {
    gap: 14px;
}

.brand > img {
    width: 72px;
    height: 68px;
    object-fit: contain;
}

.brand__copy strong {
    color: var(--ink-900);
    font-size: 0.96rem;
}

.brand__copy small {
    color: var(--accent-dark);
    letter-spacing: 0.09em;
}

.desktop-nav {
    border-color: rgba(1, 33, 80, 0.10);
    background: #f8f9fb;
}

.desktop-nav__link {
    color: #536579;
}

.desktop-nav__link:hover {
    color: var(--ink-900);
}

.desktop-nav__link.active {
    color: var(--ink-900);
    background: #fff;
    box-shadow: 0 5px 16px rgba(1, 33, 80, 0.08);
}

.request-button {
    background: var(--ink-900);
    box-shadow: 0 10px 22px rgba(1, 33, 80, 0.13);
}

.request-button:hover {
    background: var(--ink-800);
}

.request-button b {
    color: #fff;
    background: var(--accent);
}

.hero-home,
.catalog-hero,
.page-hero {
    background:
        radial-gradient(circle at 84% 14%, rgba(182, 124, 42, 0.24), transparent 28%),
        radial-gradient(circle at 16% 96%, rgba(255, 255, 255, 0.035), transparent 30%),
        linear-gradient(145deg, #00142f 0%, #012150 58%, #0a315f 100%);
}

.hero-home::before {
    opacity: 0.55;
}

.hero-home .eyebrow--light,
.sectors-panel .eyebrow--light,
.cta-panel .eyebrow--light {
    color: #e2b66f;
}

.hero-home__actions .btn-accent,
.btn-accent,
.btn-gold {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.hero-home__actions .btn-accent:hover,
.hero-home__actions .btn-accent:focus-visible,
.btn-accent:hover,
.btn-accent:focus-visible,
.btn-gold:hover,
.btn-gold:focus-visible {
    color: #fff;
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.supply-card {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 70px rgba(0, 12, 34, 0.24);
}

.supply-card__status,
.supply-route > li > span {
    color: #d6a45a;
}

.service-ribbon {
    border-color: rgba(1, 33, 80, 0.08);
}

.service-ribbon__grid > div > span,
.category-card__icon,
.category-card__arrow {
    color: var(--accent-dark);
}

.category-card:hover {
    border-color: rgba(182, 124, 42, 0.40);
    box-shadow: 0 18px 44px rgba(1, 33, 80, 0.10);
}

.category-card__number {
    color: rgba(1, 33, 80, 0.18);
}

.sectors-panel,
.cta-panel {
    background:
        radial-gradient(circle at 92% 0%, rgba(182, 124, 42, 0.25), transparent 35%),
        linear-gradient(145deg, #00142f 0%, #012150 100%);
    box-shadow: 0 24px 56px rgba(1, 33, 80, 0.12);
}

.sector-list > div {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.055);
}

.about-split__visual {
    background:
        radial-gradient(circle at 50% 50%, rgba(182, 124, 42, 0.24), transparent 29%),
        linear-gradient(145deg, #012150, #00142f);
}

.network-node--main {
    box-shadow: 0 18px 40px rgba(0, 10, 30, 0.24);
}

.network-node--main img {
    width: 102px;
    height: 102px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(182, 124, 42, 0.12);
}

.pagination .page-link.active,
.pagination .active > .page-link {
    border-color: var(--ink-900);
    background: var(--ink-900);
}

.product-card:hover,
.catalog-product-card:hover {
    border-color: rgba(182, 124, 42, 0.30);
    box-shadow: 0 18px 44px rgba(1, 33, 80, 0.11);
}

.footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(182, 124, 42, 0.09), transparent 24rem),
        #00142f;
}

.brand--footer > img {
    width: 82px;
    height: 82px;
    padding: 5px;
    border-radius: 14px;
    background: #fff;
}

.footer-socials a:hover {
    color: #fff;
    border-color: rgba(182, 124, 42, 0.45);
    background: rgba(182, 124, 42, 0.12);
}

.back-top {
    background: var(--ink-900);
}

@media (max-width: 991.98px) {
    .header-shell {
        min-height: 82px;
    }

    .brand > img {
        width: 62px;
        height: 58px;
    }
}

@media (max-width: 575.98px) {
    .header-shell {
        min-height: 74px;
    }

    .brand > img {
        width: 54px;
        height: 52px;
    }

    .brand__copy strong {
        font-size: 0.82rem;
    }

    .brand__copy small {
        font-size: 0.56rem;
    }
}

/* Estados de una sola columna para secciones administrables. */
.hero-home__grid--single {
    grid-template-columns: minmax(0, 850px);
    justify-content: center;
}
.hero-home__grid--single .hero-home__copy,
.hero-home__grid--single .supply-card {
    width: 100%;
    max-width: 850px;
}
.contact-layout--single {
    grid-template-columns: minmax(0, 780px);
    justify-content: center;
}

/* =========================================================
   DOCUMENTOS LEGALES
   ========================================================= */

.legal-document__updated {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 1.5rem;
    padding: .6rem .85rem;
    border-radius: 999px;
    color: var(--muted);
    background: var(--slate-50);
    font-size: .78rem;
    font-weight: 700;
}

.legal-document__content {
    color: var(--text);
    line-height: 1.85;
}

.legal-document__content p {
    margin: 0 0 1.15rem;
}

.legal-document__content p:last-child {
    margin-bottom: 0;
}
