:root {
    --azul: #0099cc;
    --marino: #0a4a6b;
    --naranja: #ff9900;
    --naranja-dark: #e68900;
    --azul-claro: #e8f6fd;
    --fondo: #f4f7f9;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--fondo);
    color: var(--marino);
}

/* ── Utilidades Tipográficas ── */
.font-nunito {
    font-family: 'Nunito', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.text-marino {
    color: var(--marino) !important;
}

.text-naranja {
    color: var(--naranja) !important;
}

.text-azul {
    color: var(--azul) !important;
}

.bg-naranja {
    background-color: var(--naranja) !important;
    color: white;
}

.btn-blue {
    background-color: #0a4a6b !important;
    color: #ffffff !important;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue::selection {
    background-color: #063d58 !important;
}

/* ── Hero ── */
.hero-section {
    background-color: var(--naranja);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50% 30px;
    border-bottom-right-radius: 50% 30px;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--fondo);
    clip-path: ellipse(65% 100% at 50% 100%);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
}

.pill-dark {
    background-color: var(--marino);
    border: 1px solid var(--marino);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Hero Art Cards */
.hero-art-container {
    position: relative;
    height: 320px;
}

.art-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.art-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 8px;
}

/* ── Categorías y Filtros ── */
.scroll-horizontal {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.scroll-horizontal::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.cat-chip {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid #e0eaf0;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #5a7a8a;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
}

.cat-chip:hover {
    border-color: var(--azul);
    color: var(--azul);
    background: var(--azul-claro);
}

.cat-chip.active {
    background: var(--naranja);
    border-color: var(--naranja);
    color: #fff;
}

.filter-pill {
    padding: 6px 16px;
    border-radius: 100px;
    border: 1.5px solid #d8eaf4;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a7a8a;
    transition: all 0.2s;
}

.filter-pill:hover,
.filter-pill.active {
    border-color: var(--azul);
    color: var(--azul);
    background: var(--azul-claro);
}

/* ── Product Cards ── */
.prod-card {
    border: 1px solid rgba(0, 74, 107, 0.08);
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    height: 100%;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 74, 107, 0.08);
}

.prod-img-wrap {
    position: relative;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    padding: 1rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img-wrap img {
    max-height: 100%;
    object-fit: contain;
}

.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge-marino {
    background-color: var(--marino);
    color: white;
}

.badge-danger {
    background-color: #e05050;
    color: white;
}

.badge-success {
    background-color: #1d9e75;
    color: white;
}

.badge-azul {
    background-color: var(--azul);
    color: white;
}

.btn-comprar {
    background-color: var(--naranja);
    color: white;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    border: none;
    border-radius: 8px;
    padding: 8px;
    transition: background 0.2s;
}

.btn-comprar:hover {
    background-color: var(--naranja-dark);
    color: white;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

/* ── Banners Extras ── */
.arancel-banner {
    background: linear-gradient(135deg, #e8f8f5 0%, #d4f0e8 100%);
    border: 1.5px solid #a8e0d0;
    border-radius: 12px;
}

.banner-mid {
    background: linear-gradient(135deg, var(--marino) 0%, #0a3a5b 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.banner-mid::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cotizador-cta-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fb 100%);
    border-top: 2px solid #d0e8f5;
}