@import url("fonts/Gotham_Bold.css");
@import url("fonts/GothamHTF-Book.css");
@import url("fonts/GothamBook.css");
@import url("fonts/GothamMedium.css");
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #101828;
    --muted: #667085;
    --line: #e5e7eb;
    --brand: #f15a24;
    --brand-dark: #c74214;
    --accent: #0f172a;
    --success: #16a34a;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(241, 90, 36, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
}

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

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

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.page-shell {
    overflow: hidden;
}

.section-spaced {
    padding: 72px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(241, 90, 36, 0.12);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
}

.split-heading {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: end;
}

.center-heading {
    text-align: center;
    justify-items: center;
}

.btn-primary-modern,
.btn-secondary-modern,
.btn-light-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 0;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(241, 90, 36, 0.22);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    color: #fff;
}

.btn-secondary-modern {
    background: #fff;
    color: var(--accent);
    border: 1px solid var(--line);
}

.btn-secondary-modern:hover,
.btn-light-modern:hover {
    transform: translateY(-2px);
    color: var(--accent);
}

.btn-light-modern {
    background: #fff;
    color: var(--accent);
}

.w-100 {
    width: 100%;
}

.site-header {
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: box-shadow 0.28s ease, background 0.28s ease;
}

body {
    padding-top: 0;
}

.header-topbar {
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    background: rgba(255, 255, 255, 0.78);
}

.header-topbar-inner,
.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-topbar-inner {
    min-height: 48px;
}

.header-badge,
.header-contact-links,
.header-contact-links a,
.header-actions,
.cart-pill,
.header-cta,
.header-brand-block,
.brand-copy,
.nav-modern,
.hero-actions,
.hero-metrics,
.trust-strip-grid,
.product-card-topline,
.product-card-footer,
.catalog-toolbar,
.cart-layout,
.cart-product-cell,
.footer-socials,
.footer-links,
.header-main-inner {
    display: flex;
}

.header-badge,
.header-contact-links a,
.header-cta,
.cart-pill {
    align-items: center;
    gap: 8px;
}

.header-badge {
    font-size: 14px;
    color: var(--accent);
}

.header-badge i {
    color: var(--brand);
    font-size: 18px;
}

.header-contact-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-contact-links a {
    color: var(--brand);
    font-size: 14px;
}

.header-main {
    padding: 16px 0;
}

.header-brand-block {
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 196px;
    flex: 0 0 auto;
}

.brand-logo img {
    width: 100%;
    max-height: 76px;
    object-fit: contain;
}

.brand-copy {
    flex-direction: column;
    gap: 4px;
}

.brand-kicker {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy strong {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.35;
}

.header-actions {
    align-items: center;
    gap: 12px;
}

.header-cta,
.cart-pill {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
}

.header-cta {
    background: var(--accent);
    color: #fff;
}

.cart-pill {
    background: rgba(241, 90, 36, 0.12);
    color: var(--brand);
}

.cart-pill strong {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
}

.modern-navbar {
    padding: 0 0 14px;
}

.nav-shell {
    align-items: center;
}

.mobile-nav-head,
.mobile-shortcuts {
    display: none;
}

.nav-modern {
    align-items: center;
    gap: 10px;
    width: 100%;
}

.nav-modern .nav-link {
    color: var(--accent);
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 18px !important;
}

.nav-modern .nav-link:hover,
.nav-modern .nav-link:focus {
    background: rgba(241, 90, 36, 0.12);
    color: var(--brand);
}

.nav-modern .nav-link.is-active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.navbar-toggler {
    border: 1px solid rgba(241, 90, 36, 0.2);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(241, 90, 36, 0.08);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.12);
}

.mobile-shortcuts {
    border-top: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 0 14px;
}

.mobile-shortcuts-grid a {
    min-height: 76px;
    padding: 12px 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff7f4, #ffffff);
    border: 1px solid rgba(241, 90, 36, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.mobile-shortcuts-grid i {
    font-size: 20px;
    color: var(--brand);
}

.mobile-shortcuts-grid span {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.category-panel .offcanvas-header {
    border-bottom: 1px solid var(--line);
}

.panel-kicker {
    margin-bottom: 4px;
    color: var(--brand);
    font-weight: 700;
}

#offcanvasCategorias a {
    color: var(--accent);
}

#offcanvasCategorias .list-group-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 10px;
}

.hero-home {
    padding: 24px 0 0;
}

.hero-slide-home {
    min-height: 76vh;
    border-radius: 36px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-copy {
    max-width: 640px;
    padding: 72px 0;
}

.hero-copy h1,
.hero-copy h2 {
    margin-top: 18px;
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 0.95;
    color: #fff;
}

.hero-copy p {
    margin-top: 20px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-metrics {
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-metrics div {
    min-width: 170px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
    color: #fff;
}

.hero-metrics strong {
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.trust-strip {
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

.trust-strip-grid {
    gap: 18px;
    flex-wrap: wrap;
}

.trust-strip-grid article {
    flex: 1 1 240px;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.trust-strip-grid i,
.feature-card i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: rgba(241, 90, 36, 0.12);
    color: var(--brand);
    font-size: 24px;
}

.trust-strip-grid strong,
.feature-card h3 {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.about-media,
.info-panel,
.feature-card,
.product-card-modern,
.cart-summary-card,
.page-hero,
.cart-table-shell,
.product-gallery-panel,
.product-summary-panel,
.purchase-card,
.site-footer,
.empty-state,
.catalog-toolbar,
.contacto .card,
.product-description-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: var(--shadow-md);
}

.about-media,
.info-panel,
.feature-card,
.product-card-modern,
.cart-summary-card,
.page-hero,
.cart-table-shell,
.product-gallery-panel,
.product-summary-panel,
.purchase-card,
.empty-state,
.contacto .card,
.product-description-card {
    border-radius: var(--radius-lg);
}

.about-media {
    overflow: hidden;
    min-height: 420px;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stack {
    display: grid;
    gap: 20px;
}

.info-panel {
    padding: 28px;
}

.info-panel h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.section-band {
    padding: 76px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(255, 255, 255, 0));
}

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

.feature-card {
    padding: 28px;
}

.feature-card i {
    margin-bottom: 16px;
}

.feature-card p {
    margin-top: 8px;
}

.brand-marquee {
    overflow: hidden;
    border-radius: 28px;
    padding: 12px 0;
}

.brand-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: brandScroll 28s linear infinite;
}

.brand-card {
    width: 190px;
    height: 116px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brand-card img {
    max-height: 72px;
    object-fit: contain;
}

@keyframes brandScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.cta-section {
    padding: 0 0 82px;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f15a24, #ff7a45);
    color: #fff;
    box-shadow: 0 24px 60px rgba(241, 90, 36, 0.24);
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.page-hero {
    margin-top: 24px;
    padding: 42px;
}

.page-hero-compact h1 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.catalog-toolbar {
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.search-shell,
.toolbar-select select,
.checkout-form-panel input,
.checkout-form-panel select,
.contacto .form-control,
#txtCantidad,
.cantProducto {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.search-shell {
    flex: 1 1 380px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    min-height: 54px;
}

.search-shell input,
.toolbar-select select,
.checkout-form-panel input,
.checkout-form-panel select,
.contacto .form-control,
#txtCantidad,
.cantProducto {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    outline: none;
}

.search-shell input {
    border: 0;
    padding: 0;
    background: transparent;
}

.search-shell i {
    color: var(--muted);
    font-size: 18px;
}

.toolbar-select {
    flex: 0 0 240px;
}

.catalog-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.catalog-meta a {
    color: var(--brand);
    font-weight: 700;
}

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

.product-card-modern {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-media {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 24px;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.product-card-media img {
    max-height: 210px;
    object-fit: contain;
}

.product-card-body {
    padding: 22px;
}

.product-card-topline {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.product-chip,
.product-brand {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-chip {
    background: rgba(241, 90, 36, 0.12);
    color: var(--brand);
}

.product-brand {
    background: rgba(15, 23, 42, 0.08);
    color: var(--accent);
}

.product-card-body h3 {
    min-height: 62px;
    font-size: 1.1rem;
    line-height: 1.25;
}

.product-card-body p {
    margin-top: 8px;
    min-height: 48px;
    font-size: 14px;
}

.product-card-footer {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.precio {
    color: var(--accent);
    font-size: 1.18rem;
    font-weight: 700;
}

.btn-product-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    border: 0;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}

.modern-pagination {
    margin-top: 28px;
}

.container_pag {
    justify-content: center;
    gap: 12px;
}

.container_pag a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 360px;
    gap: 22px;
    align-items: start;
}

.product-gallery-panel,
.product-summary-panel,
.purchase-card {
    padding: 24px;
}

.product-gallery-frame {
    display: grid;
    place-items: center;
    min-height: 520px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.product-gallery-frame img {
    max-height: 420px;
    object-fit: contain;
}

.detail-topline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.product-summary-panel h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.02;
}

.product-presentation {
    margin-top: 14px;
    font-size: 1rem;
}

.product-meta-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.product-meta-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--surface-soft);
}

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

.product-description-card {
    padding: 22px;
}

.product-description-card h2 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.purchase-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 24px;
}

.purchase-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.purchase-price {
    display: block;
    margin: 10px 0 24px;
    font-size: 2.4rem;
    line-height: 1;
}

.purchase-quantity {
    margin-bottom: 24px;
}

.purchase-quantity > span {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.modern-quantity {
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 22px;
}

#txtCantidad {
    max-width: 84px;
    text-align: center;
}

.related-section {
    padding-top: 12px;
}

.cart-layout {
    align-items: start;
    gap: 24px;
}

.cart-table-shell {
    flex: 1 1 auto;
    padding: 22px;
    overflow-x: auto;
}

.modern-cart-table {
    margin: 0;
    vertical-align: middle;
}

.modern-cart-table thead th {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modern-cart-table tbody td {
    padding: 20px 10px;
    border-bottom: 1px solid var(--line);
}

.cart-product-cell {
    align-items: center;
    gap: 14px;
    min-width: 280px;
}

.imgDetalleCarrito {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--surface-soft);
    padding: 8px;
}

.btnDelDetalle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 0;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.cantProducto {
    max-width: 92px;
    text-align: center;
}

.cart-summary-card {
    flex: 0 0 340px;
    padding: 28px;
    position: sticky;
    top: 24px;
}

.cart-summary-card h2 {
    margin: 12px 0 10px;
    font-size: 2rem;
}

.cart-summary-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 2rem;
}

.cart-summary-card p {
    margin-bottom: 20px;
}

.empty-state {
    padding: 64px 24px;
    text-align: center;
}

.empty-state i {
    font-size: 56px;
    color: var(--brand);
    margin-bottom: 16px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 22px;
}

.modalStore {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background: rgba(15, 23, 42, 0.6);
    z-index: 3000;
}

.bodyModalStore {
    width: min(980px, 100%);
    background: #fff;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.colseModal {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.colseModal span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    cursor: pointer;
    font-weight: 700;
}

#contentFormCotizador {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

#contentFormCotizador > div {
    padding: 40px 34px;
}

.checkout-side {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.checkout-side h2,
.checkout-side p,
.checkout-side strong {
    color: #fff;
}

.checkout-form-panel h3 {
    margin-bottom: 18px;
}

.form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wd30 { width: calc(30% - 10px); }
.wd50 { width: calc(50% - 7px); }
.wd60 { width: calc(70% - 7px); }
.wd100 { width: 100%; }

.form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--accent);
}

#btnSendMsg {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: var(--success);
    color: #fff;
    font-weight: 700;
}

.site-footer {
    margin-top: 32px;
    border-radius: 32px 32px 0 0;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 44px 0;
}

.footer-brand img {
    width: 210px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-title {
    display: block;
    margin-bottom: 14px;
    font-weight: 700;
    color: #fff;
}

.footer-column ul,
.footer-links {
    display: grid;
    gap: 12px;
}

.footer-socials {
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.product-detail-shell,
.related-section,
.page-hero {
    scroll-margin-top: 24px;
}

.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
}

.chat-toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1faa52);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
}

.chat-box {
    display: none;
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 310px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.chat-header {
    padding: 16px 18px;
    background: var(--accent);
    color: #fff;
}

.chat-header small {
    display: block;
    opacity: 0.7;
    margin-top: 4px;
}

.chat-body {
    padding: 18px;
}

.chat-btn {
    width: 100%;
    min-height: 46px;
    margin-top: 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
}

.chat-status {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: #25d366;
}

.contacto {
    background: transparent !important;
}

.contacto .card {
    border-radius: 28px !important;
    border: 1px solid rgba(229, 231, 235, 0.95);
}

@media (max-width: 1200px) {
    .product-grid-modern {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .product-purchase-panel {
        grid-column: 1 / -1;
    }

    .purchase-card,
    .cart-summary-card {
        position: static;
    }
}

@media (max-width: 991px) {
    .split-heading,
    .about-grid,
    .footer-grid,
    #contentFormCotizador,
    .cart-layout,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .header-topbar-inner,
    .header-main-inner,
    .cta-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        position: relative;
        backdrop-filter: blur(14px);
    }

    body {
        padding-top: 0;
    }

    .header-topbar {
        padding: 8px 0 10px;
        background: #ffffff;
    }

    .header-topbar-inner {
        min-height: auto;
        gap: 10px;
    }

    .header-badge {
        font-size: 12px;
        line-height: 1.45;
        padding: 0 2px;
    }

    .header-contact-links {
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .header-contact-links::-webkit-scrollbar {
        display: none;
    }

    .header-contact-links a {
        width: auto;
        min-width: max-content;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        background: rgba(241, 90, 36, 0.08);
        border: 1px solid rgba(241, 90, 36, 0.1);
        white-space: nowrap;
    }

    .header-main {
        padding: 12px 0 12px;
    }

    .header-main-inner {
        gap: 14px;
    }

    .header-brand-block {
        display: grid;
        grid-template-columns: 88px 1fr;
        align-items: center;
        gap: 14px;
    }

    .brand-logo {
        width: 88px;
    }

    .brand-logo img {
        max-height: 48px;
    }

    .brand-copy {
        gap: 4px;
    }

    .brand-kicker {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .brand-copy strong {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .header-cta,
    .cart-pill {
        min-height: 48px;
        justify-content: center;
        padding: 0 14px;
        font-size: 0.95rem;
    }

    .modern-navbar {
        padding: 0;
        border-top: 1px solid rgba(229, 231, 235, 0.85);
    }

    .nav-shell {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
    }

    .mobile-nav-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .mobile-nav-cta {
        min-height: 36px;
        padding: 0 14px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(241, 90, 36, 0.12);
        color: var(--brand);
        font-size: 13px;
        font-weight: 700;
    }

    .navbar-toggler {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        min-height: 44px;
    }

    .navbar-collapse {
        padding: 8px 0 0;
    }

    .nav-modern {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nav-modern .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 12px !important;
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.04);
        font-size: 0.92rem;
    }

    .nav-modern .nav-link.is-active {
        background: var(--accent);
        color: #fff;
    }

    .mobile-shortcuts {
        display: block;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 0;
    }

    .section-spaced {
        padding: 52px 0;
    }

    .hero-home {
        padding-top: 12px;
    }

    .page-hero {
        margin-top: 16px;
    }

    .hero-slide-home {
        min-height: 62vh;
        border-radius: 24px;
        align-items: flex-end;
    }

    .hero-copy {
        max-width: 100%;
        padding: 34px 0 28px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .hero-copy p {
        font-size: 0.98rem;
    }

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

    .hero-actions a {
        width: 100%;
    }

    .trust-strip {
        margin-top: 14px;
    }

    .trust-strip-grid article {
        padding: 16px;
        border-radius: 20px;
    }

    .feature-grid,
    .product-grid-modern {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar,
    .page-hero,
    .cart-table-shell,
    .cart-summary-card,
    .product-gallery-panel,
    .product-summary-panel,
    .purchase-card {
        padding: 20px;
    }

    .search-shell,
    .toolbar-select {
        flex: 1 1 100%;
    }

    .product-gallery-frame {
        min-height: 320px;
    }

    .wd30,
    .wd50,
    .wd60 {
        width: 100%;
    }

    .whatsapp-widget {
        right: 14px;
        bottom: 14px;
    }

    .chat-box {
        width: min(290px, calc(100vw - 28px));
    }

    .site-footer {
        border-radius: 24px 24px 0 0;
    }

    .footer-grid {
        gap: 20px;
        padding: 32px 0;
    }
}

@media (max-width: 575px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .header-badge {
        align-items: flex-start;
    }

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

    .header-main {
        padding-top: 10px;
    }

    .header-brand-block {
        grid-template-columns: 72px 1fr;
        gap: 12px;
    }

    .brand-logo {
        width: 72px;
    }

    .brand-logo img {
        max-height: 40px;
    }

    .brand-copy strong {
        max-width: 100%;
        font-size: 0.84rem;
    }

    .header-contact-links a span,
    .header-badge span {
        font-size: 11px;
    }

    .mobile-shortcuts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding-top: 10px;
    }

    .mobile-shortcuts-grid a {
        min-height: 68px;
        border-radius: 16px;
        padding: 10px 8px;
    }

    .mobile-shortcuts-grid span {
        font-size: 11px;
    }

    .hero-metrics div {
        min-width: 100%;
    }

    .cart-product-cell {
        min-width: 220px;
    }
}
