:root {
    --navy: #1A2B56;
    --navy-deep: #101B3A;
    --primary: #1A2B56;
    --brand: #2454A8;
    --brand-hover: #1C4288;
    --accent: #E52B29;
    --accent-deep: #C41F1D;
    --logo-red: #E52B29;
    --white: #ffffff;
    --surface: #ffffff;
    --text-dark: #15203D;
    --text-muted: #5B6785;
    --line: rgba(26, 43, 86, 0.12);
    --glass: rgba(255, 255, 255, 0.94);
    --shadow-sm: 0 8px 20px rgba(16, 27, 58, 0.06);
    --shadow-lg: 0 22px 48px rgba(16, 27, 58, 0.12);
    --radius-lg: 14px;
    --radius-md: 10px;
    --font-display: "Outfit", "Segoe UI", sans-serif;
    --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
    --nav-h: 76px;
    --whatsapp: #25D366;
    --transition: 0.25s ease;
    --page-gutter: clamp(1.75rem, 6vw, 4.5rem);
    --content-max: 1320px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; background: #fff; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.65;
    overflow-x: clip;
    padding-top: calc(var(--nav-h) + 36px);
    font-size: 16px;
    letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: var(--navy);
}
.top-bar {
    position: fixed; inset: 0 0 auto 0; z-index: 1100;
    height: 36px; display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--page-gutter);
    background: var(--navy); color: rgba(255,255,255,.86); font-size: .78rem; font-weight: 500;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: #C9D8F5; }
.top-bar .social-actions { display: flex; gap: 14px; }
.site-nav {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
    display: flex; align-items: center; gap: 16px;
    padding: 0 var(--page-gutter);
    background: var(--glass); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; z-index: 1001; flex-shrink: 0; }
.logo-wrap img { height: 52px; width: auto; object-fit: contain; background: #fff; border-radius: 8px; }
.nav-search {
    flex: 1; min-width: 0;
    display: flex; align-items: center; justify-content: center;
}
.nav-search-field {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: block;
}
.nav-search-field i {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--navy); opacity: .5; pointer-events: none; font-size: .85rem; z-index: 1;
    line-height: 1;
}
.nav-search input[type="search"] {
    display: block; width: 100%; height: 44px;
    border: 1px solid var(--line); border-radius: 10px;
    padding: 0 16px 0 42px; margin: 0;
    font: inherit; font-size: .92rem; line-height: 44px; color: var(--text-dark);
    background: #F3F5F9; outline: none; text-align: left;
    appearance: none; -webkit-appearance: none; box-shadow: none;
}
.nav-search input[type="search"]::placeholder {
    color: var(--text-muted); opacity: 1; text-align: left;
}
.nav-search input[type="search"]:hover { border-color: rgba(26, 43, 86, 0.22); }
.nav-search-field:focus-within i { opacity: .85; color: var(--brand); }
.nav-search input[type="search"]:focus {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(36, 84, 168, .12);
}
.nav-search input[type="search"]::-webkit-search-decoration,
.nav-search input[type="search"]::-webkit-search-cancel-button,
.nav-search input[type="search"]::-webkit-search-results-button,
.nav-search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none; appearance: none;
}
.search-suggest {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow-lg); max-height: min(70vh, 420px); overflow: auto;
    z-index: 1200; padding: 6px;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest-item {
    display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
    padding: 8px; border-radius: 10px; text-decoration: none; color: inherit;
}
.search-suggest-item:hover,
.search-suggest-item.active { background: #F4F7FC; }
.search-suggest-item img {
    width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: #EEF2F7;
}
.search-suggest-name {
    font-weight: 650; color: var(--navy); font-size: .9rem; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.search-suggest-price { font-weight: 700; color: var(--logo-red); white-space: nowrap; font-size: .92rem; }
.search-suggest-old { display: block; color: var(--text-muted); text-decoration: line-through; font-size: .75rem; font-weight: 500; }
.search-suggest-empty,
.search-suggest-more {
    display: block; padding: 12px 10px; font-size: .85rem; color: var(--text-muted); text-align: center;
}
.search-suggest-more { color: var(--brand); font-weight: 650; text-decoration: none; }
.search-suggest-more:hover { color: var(--logo-red); }
.nav-links { list-style: none; display: flex; align-items: center; gap: clamp(.7rem, 1.6vw, 1.5rem); margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: .92rem; }
.nav-links a:hover { color: var(--logo-red); }
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 0; min-width: 240px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-weight: 500; }
.dropdown-menu a i { width: 1.1em; color: var(--brand); text-align: center; }
.dropdown-menu a:hover { background: #EEF3FB; color: var(--brand); }
.cart-pill {
    display: inline-flex; align-items: center; gap: 8px; background: var(--logo-red); color: #fff !important;
    padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 650;
}
.cart-pill:hover { background: var(--accent-deep) !important; color: #fff !important; }
.menu-btn { display: none; background: none; border: 0; font-size: 1.35rem; color: var(--navy); cursor: pointer; margin-left: auto; z-index: 1001; }
.hero {
    min-height: 68vh; margin: 18px var(--page-gutter) 0; border-radius: 18px; overflow: hidden;
    position: relative; display: grid; place-items: end stretch; color: #fff;
    background: var(--navy-deep);
}
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(16,27,58,.94) 0%, rgba(26,43,86,.78) 52%, rgba(229,43,41,.38) 100%);
}
.hero-content { position: relative; z-index: 2; padding: clamp(2.4rem, 6vw, 5rem); max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.8rem); margin: 12px 0 16px; }
.eyebrow {
    color: #F3A3A2; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    font-size: .72rem; font-family: var(--font-body);
}
.hero p { color: rgba(255,255,255,.86); font-size: 1.06rem; max-width: 560px; }
.hero-actions, .search-box { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.search-container { position: relative; max-width: 640px; width: 100%; }
.search-container .search-suggest { z-index: 30; }
.search-box {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 10px;
    padding: 6px; backdrop-filter: blur(12px); margin-top: 28px; align-items: center;
}
.search-box input { flex: 1; min-width: 0; border: 0; background: transparent; color: #fff; padding: 12px 18px; outline: none; font: inherit; }
.search-box input::placeholder { color: rgba(255,255,255,.7); }
.search-box button, .search-box.light button {
    border: 0; background: var(--logo-red); color: #fff; border-radius: 8px;
    padding: 11px 18px; font-weight: 650; cursor: pointer; font-family: inherit;
}
.search-box button:hover { background: var(--accent-deep); }
.search-box.light { background: #fff; border: 1px solid var(--line); }
.search-box.light input { color: var(--text-dark); }
.search-box.light input::placeholder { color: var(--text-muted); }
.autocomplete-results {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; color: var(--text-dark);
    border-radius: 12px; box-shadow: var(--shadow-lg); max-height: 380px; overflow: auto; display: none; z-index: 20;
}
.search-item { display: flex; gap: 12px; padding: 12px 16px; text-decoration: none; align-items: center; border-bottom: 1px solid #EEF2F7; }
.search-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.search-item .name { font-weight: 650; color: var(--navy); }
.search-item .price { color: var(--brand); font-weight: 650; font-size: .85rem; }
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin: -28px var(--page-gutter) 0; position: relative; z-index: 3;
}
.stat-item {
    background: #fff; border-radius: 12px; padding: 22px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--logo-red);
}
.stat-item:nth-child(even) { border-left-color: var(--brand); }
.stat-item h3 { font-size: 1.55rem; color: var(--navy); }
.stat-item p { color: var(--text-muted); font-size: .85rem; font-weight: 600; }
.section-pad { padding: 72px var(--page-gutter); }
.section-shell { max-width: var(--content-max); margin: 0 auto; }
.section-header { margin-bottom: 32px; }
.section-header h4 {
    color: var(--logo-red); letter-spacing: .18em; text-transform: uppercase;
    font-size: .72rem; font-family: var(--font-body); font-weight: 650; margin-bottom: 8px;
}
.section-header h2, .section-header h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cat-grid, .prod-matrix, .review-grid { display: grid; gap: 20px; }
.cat-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.prod-matrix { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.review-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cat-card, .prod-card, .review-glass, .info-card, .form-panel, .cart-full-panel, .filter-card {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.cat-card { padding: 26px; text-decoration: none; display: block; transition: var(--transition); }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(36,84,168,.28); }
.cat-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.cat-card p { color: var(--text-muted); font-size: .92rem; }
.icon-circle {
    width: 56px; height: 56px; border-radius: 12px; background: #EEF3FB;
    display: grid; place-items: center; color: var(--brand); font-size: 1.25rem; margin-bottom: 16px;
}
.prod-card { overflow: hidden; display: flex; flex-direction: column; position: relative; transition: var(--transition); }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(229,43,41,.25); }
.prod-card a, .prod-link { text-decoration: none; color: inherit; display: block; }
.prod-img { height: 220px; background: linear-gradient(180deg, #F8FAFC, #EEF3FB); overflow: hidden; position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-info { padding: 16px 16px 10px; flex: 1; }
.prod-info h3 { font-family: var(--font-body); font-size: .95rem; min-height: 2.5em; font-weight: 600; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price { font-weight: 700; color: var(--navy); }
.old-price { color: var(--text-muted); text-decoration: line-through; font-size: .85rem; }
.discount-badge {
    position: absolute; top: 12px; left: 12px; background: var(--logo-red); color: #fff;
    border-radius: 6px; padding: 4px 10px; font-size: .72rem; font-weight: 700; z-index: 2;
}
.btn-group {
    padding: 0 14px 14px; display: flex; gap: 8px; align-items: stretch;
}
.btn-group form, .btn-group .whatsapp-btn { flex: 1 1 0; min-width: 0; }
.btn-group form { display: flex; }
.btn-group .add-btn, .btn-group .whatsapp-btn { width: 100%; padding: 10px 10px; font-size: .78rem; }
.add-btn, .whatsapp-btn, .btn-prime, .submit-btn, .checkout-btn, .btn-cart-main, .btn-act, .btn-buy {
    border: 0; border-radius: 8px; padding: 12px 16px; font-weight: 650; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-size: .92rem;
}
.whatsapp-btn, .btn-whatsapp {
    background: var(--whatsapp); color: #fff !important;
    white-space: nowrap; letter-spacing: .01em; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    text-align: center; gap: 8px;
}
.whatsapp-btn i, .btn-whatsapp i { font-size: 1.05em; line-height: 1; }
.whatsapp-btn span, .btn-whatsapp span { line-height: 1; }
.whatsapp-btn:hover, .btn-whatsapp:hover { background: #1EBE57; color: #fff !important; }
.add-btn, .btn-prime, .submit-btn, .checkout-btn { background: var(--logo-red); color: #fff; }
.add-btn:hover, .btn-prime:hover, .submit-btn:hover, .checkout-btn:hover { background: var(--accent-deep); }
.btn-buy { background: var(--navy); color: #fff; }
.btn-buy:hover { background: var(--brand); }
.btn-ghost, .btn-outline { border: 1px solid rgba(255,255,255,.4); color: #fff; padding: 12px 18px; border-radius: 8px; text-decoration: none; font-weight: 650; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--line); }
.faq-header { padding: 18px 22px; display: flex; justify-content: space-between; cursor: pointer; font-weight: 650; color: var(--navy); }
.faq-body { max-height: 0; overflow: hidden; transition: .35s; }
.faq-item.active .faq-body { max-height: 400px; }
.faq-content { padding: 0 22px 18px; color: var(--text-muted); }
.review-glass, .review-item { padding: 28px; }
.quote-icon { color: var(--logo-red); opacity: .45; font-size: 1.5rem; }
.stars { color: #D4A017; }
.app-footer {
    margin: 20px var(--page-gutter) 0; padding: 56px 32px; border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy) 50%, var(--logo-red));
    color: #fff; text-align: center;
}
.app-footer h2 { color: #fff; }
.app-footer p { color: rgba(255,255,255,.84); max-width: 560px; margin: 10px auto 22px; }
.app-download-kicker {
    color: rgba(255,255,255,.9); letter-spacing: .12em; text-transform: uppercase;
    font-size: .78rem; margin: 0 0 8px; display: inline-flex; align-items: center; gap: 8px;
}
.app-download-kicker i { font-size: 1.15rem; }
.app-store-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 18px; }
.store-pill {
    background: #fff; color: var(--navy); padding: 12px 20px; border-radius: 8px;
    text-decoration: none; font-weight: 650; display: inline-flex; align-items: center; gap: 8px; margin: 6px;
}
.store-pill i { font-size: 1.25rem; line-height: 1; }
.store-pill:hover { background: #EEF3FB; }
.store-pill-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.store-pill-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.app-download-alt { margin: 8px auto 4px; font-size: .92rem; }
.site-footer { background: linear-gradient(180deg, #101B3A, #0B1428); color: rgba(255,255,255,.78); padding: 64px var(--page-gutter) 24px; margin-top: 48px; }
.footer-main { display: grid; grid-template-columns: 1.35fr .9fr .9fr .9fr 1.1fr; gap: 32px; max-width: var(--content-max); margin: 0 auto; }
.footer-col h3 { color: #fff; font-family: var(--font-display); font-size: .95rem; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col a { text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: #fff; }
.footer-brand p { margin: 14px 0 18px; max-width: 32ch; }
.footer-logo { display: inline-flex; background: #fff; border-radius: 10px; padding: 8px 10px; margin-bottom: 4px; }
.footer-logo img { height: 44px; width: auto; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
    background: rgba(255,255,255,.08); color: #fff; margin-bottom: 0;
}
.footer-socials a:hover { background: var(--logo-red); }
.footer-contact li { margin-bottom: 12px; }
.footer-contact a, .footer-location {
    display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.86); text-decoration: none;
}
.footer-contact i {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center; background: rgba(229,43,41,.18); color: #fff;
}
.footer-bottom {
    max-width: var(--content-max); margin: 40px auto 0; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .82rem; align-items: center;
}
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }
.legal-wrap { max-width: 860px; margin: 0 auto 80px; padding: 0 var(--page-gutter); }
.legal-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm); }
.legal-panel h2 { font-size: 1.2rem; margin: 22px 0 8px; }
.legal-panel p { color: var(--text-muted); }
.legal-updated { font-size: .85rem; color: var(--text-muted); margin-top: 8px; }
.legal-contact { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-contact a { color: var(--brand); font-weight: 650; }
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
    background: var(--whatsapp); color: #fff; display: grid; place-items: center; font-size: 1.6rem; z-index: 1200; text-decoration: none; box-shadow: var(--shadow-lg);
}
.page-hero { padding: 48px var(--page-gutter) 28px; }
.page-hero h1 i { color: var(--logo-red); margin-right: 10px; }
.page-hero p { color: var(--text-muted); max-width: 640px; }
.contact-wrapper, .catalog-container { max-width: var(--content-max); margin: 0 auto 80px; padding: 0 var(--page-gutter); display: grid; gap: 28px; }
.contact-wrapper { grid-template-columns: .8fr 1.2fr; }
.catalog-container { grid-template-columns: 280px 1fr; }
.info-card, .form-panel, .filter-card, .cart-full-panel { padding: 28px; }
.info-card i { color: var(--brand); margin-bottom: 8px; }
.info-card h4 { margin-bottom: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.full-width { grid-column: span 2; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: .78rem; font-weight: 650; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
.input-group input, .input-group textarea, .checkout-input, .sort-select {
    padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: #F8FAFC;
}
.input-group input:focus, .input-group textarea:focus, .checkout-input:focus {
    outline: 2px solid rgba(36,84,168,.28); border-color: var(--brand); background: #fff;
}
.pdp { max-width: var(--content-max); margin: 0 auto 80px; padding: 28px var(--page-gutter) 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumbs a { text-decoration: none; color: var(--brand); }
.breadcrumbs .current { color: var(--navy); font-weight: 600; }
.product-main { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.product-gallery .main-img {
    background: #fff; border-radius: 14px; min-height: 460px; display: grid; place-items: center;
    position: relative; padding: 18px; border: 1px solid var(--line); cursor: zoom-in; overflow: hidden;
}
.product-gallery .main-img img { max-height: 520px; width: auto; margin: 0 auto; object-fit: contain; }
.main-img-zoom-hint {
    position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(26,43,86,.8); color: #fff; display: grid; place-items: center; font-size: 13px;
}
.discount-ribbon {
    position: absolute; top: 14px; left: 14px; background: var(--logo-red); color: #fff;
    font-size: .75rem; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.thumb-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumb { background: #fff; border-radius: 10px; padding: 6px; cursor: pointer; border: 2px solid var(--line); height: 74px; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--logo-red); }
.product-info-col { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.product-info-col h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 8px 0 16px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.category-pill { background: #EEF3FB; color: var(--brand); font-size: .75rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.category-pill.sku { background: var(--navy); color: #fff; }
.wholesale-info-box { background: #EEF3FB; border-left: 4px solid var(--brand); padding: 12px 14px; border-radius: 8px; margin-bottom: 14px; }
.save-badge { background: #FDECEC; color: var(--logo-red); font-size: .75rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; margin-left: 8px; }
.price-tag { display: block; font-size: 2rem; font-weight: 700; color: var(--navy); margin-top: 6px; }
.price-note { color: var(--text-muted); font-size: .85rem; }
.installment-toggle, .installment-box { display: block; margin: 12px 0; }
.installment-box { display: none; }
.option-group { margin: 16px 0; }
.option-title { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; color: var(--navy); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; cursor: pointer; font-size: .85rem; }
.chip input { display: none; }
.chip.active { border-color: var(--logo-red); background: #FDECEC; color: var(--logo-red); font-weight: 650; }
.purchase-row { margin: 18px 0 12px; }
.qty-input { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty-input button { width: 40px; height: 42px; border: 0; background: #F4F6FA; cursor: pointer; font-size: 1.1rem; color: var(--navy); }
.qty-input input { width: 64px; height: 42px; border: 0; text-align: center; font: inherit; font-weight: 700; }
.action-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.action-buttons .add-btn, .action-buttons .btn-buy, .action-buttons .whatsapp-btn { flex: 1; min-width: 140px; }
.pdp-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
.pdp-actions .add-btn,
.pdp-actions .btn-buy,
.pdp-actions .whatsapp-btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(16, 27, 58, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pdp-actions .add-btn i,
.pdp-actions .btn-buy i,
.pdp-actions .whatsapp-btn i {
    font-size: 1.05rem;
    line-height: 1;
}
.pdp-actions .add-btn:hover,
.pdp-actions .btn-buy:hover,
.pdp-actions .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 27, 58, 0.14);
}
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .75rem; color: var(--text-muted); text-align: center; }
.trust-item i { display: block; color: var(--brand); margin-bottom: 4px; }
.product-description-section { margin-top: 36px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px 24px 24px; }
.tab-nav { display: flex; gap: 18px; border-bottom: 1px solid var(--line); }
.tab-btn { background: none; border: 0; padding: 16px 0; cursor: pointer; font-weight: 650; color: var(--text-muted); border-bottom: 3px solid transparent; font-family: inherit; }
.tab-btn.active { color: var(--navy); border-color: var(--logo-red); }
.tab-panel { display: none; padding-top: 18px; color: var(--text-muted); }
.tab-panel.active { display: block; }
.bullet-features { list-style: none; margin: 0; padding: 0; }
.bullet-features li {
    padding: 10px 0; border-bottom: 1px solid #F1F5F9;
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; color: var(--text-dark);
}
.bullet-features li:last-child { border-bottom: none; }
.bullet-features i { color: var(--brand); margin-top: 4px; flex-shrink: 0; }
.product-desc-plain { padding-top: 12px; color: var(--text-muted); }
.gallery-lightbox { display: none; position: fixed; inset: 0; z-index: 1400; }
.gallery-lightbox.open { display: grid; place-items: center; }
.gallery-lightbox-backdrop { position: absolute; inset: 0; background: rgba(16,27,58,.88); }
.gallery-lightbox img { position: relative; max-width: 86vw; max-height: 82vh; z-index: 2; }
.gallery-lightbox-close, .gallery-lightbox-nav {
    position: absolute; z-index: 3; background: rgba(255,255,255,.15); color: #fff; border: 0; cursor: pointer;
}
.gallery-lightbox-close { top: 18px; right: 22px; font-size: 2rem; width: 44px; height: 44px; border-radius: 50%; }
.gallery-lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 2.4rem; width: 48px; height: 48px; border-radius: 50%; }
.gallery-lightbox-nav.prev { left: 18px; }
.gallery-lightbox-nav.next { right: 18px; }
.gallery-lightbox-counter { position: absolute; bottom: 18px; color: #fff; z-index: 3; }
.buy-now-modal { display: none; position: fixed; inset: 0; background: rgba(16,27,58,.78); z-index: 1350; }
.buy-now-modal.show { display: grid; place-items: center; padding: 16px; }
.buy-now-modal .modal-dialog { width: min(640px, 100%); max-height: 94vh; overflow: auto; }
.buy-now-modal .modal-content { background: #fff; border-radius: 14px; overflow: hidden; }
.buy-now-modal .modal-header { background: var(--navy); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.modal-close { background: none; border: 0; color: #fff; font-size: 1.8rem; cursor: pointer; }
.buy-now-modal .modal-body { padding: 22px; }
.buy-now-modal h5 { margin: 8px 0 12px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.buy-now-modal .checkout-input { width: 100%; margin-bottom: 12px; }
.delivery-options label { display: block; margin: 10px 0; font-weight: 600; }
#deliveryContainer, #pickupFields { display: none; background: #F8FAFC; padding: 12px; border-radius: 8px; margin-bottom: 12px; }
#deliveryTable { width: 100%; border-collapse: collapse; font-size: .85rem; }
#deliveryTable th, #deliveryTable td { border: 1px solid var(--line); padding: 8px; text-align: left; }
.total-box { background: #EEF3FB; border-left: 4px solid var(--logo-red); padding: 16px; margin: 16px 0; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td, .cart-table th { padding: 16px 0; text-align: left; border-bottom: 1px solid #EEF2F7; }
.item-meta { display: flex; gap: 16px; align-items: center; }
.item-img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; }
.login-card { max-width: 440px; margin: 40px auto 80px; background: #fff; padding: 36px; border-radius: 14px; box-shadow: var(--shadow-lg); }
.reveal { opacity: 0; transform: translateY(12px); transition: .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1100px) {
    .footer-main, .stats-bar, .product-main, .contact-wrapper, .catalog-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { padding-top: calc(var(--nav-h) + 58px); }
    .top-bar { height: auto; flex-direction: column; gap: 6px; padding: 8px var(--page-gutter); }
    .site-nav { top: 58px; }
    .menu-btn { display: block; }
    .nav-search { margin-right: 4px; }
    .nav-search-field { max-width: none; }
    .nav-search input[type="search"] { height: 40px; font-size: .88rem; }
    .nav-links {
        position: fixed; top: 0; right: -110%; width: min(320px, 88vw); height: 100vh; background: #fff;
        flex-direction: column; align-items: flex-start; padding: 110px 28px; transition: .35s;
    }
    .nav-links.active { right: 0; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .hero { min-height: 74vh; margin: 12px var(--page-gutter) 0; border-radius: 14px; }
    .app-footer { margin: 16px var(--page-gutter) 0; padding: 40px 24px; }
    .trust-badges { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 520px) {
    .prod-matrix, .cat-grid, .review-grid, .blog-grid { grid-template-columns: 1fr; }
}
.blogs-page { max-width: var(--content-max); margin: 0 auto 72px; padding: 0 var(--page-gutter); }
.blogs-hero-band {
    background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, #8B1E2D 100%);
    color: #fff; padding: 48px var(--page-gutter) 56px; margin-bottom: 28px;
}
.blogs-hero-band h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); max-width: 16ch; }
.blogs-hero-band p { color: rgba(255,255,255,.82); max-width: 540px; margin-top: 10px; }
.blogs-hero-band .eyebrow { color: #F3A3A2; }
.featured-story {
    display: grid; grid-template-columns: 1.3fr .9fr; min-height: 420px; border-radius: 18px;
    overflow: hidden; position: relative; text-decoration: none; color: #fff; margin-bottom: 48px;
    box-shadow: var(--shadow-lg);
}
.featured-story .featured-img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; grid-column: 1 / -1; grid-row: 1; }
.featured-overlay {
    grid-column: 2; grid-row: 1; position: relative; z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(16,27,58,.55) 12%, rgba(16,27,58,.94) 42%);
    padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
}
.featured-overlay h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin: 10px 0 12px; }
.featured-overlay p { color: rgba(255,255,255,.82); margin-bottom: 18px; }
.story-badge {
    display: inline-flex; align-self: flex-start; background: var(--logo-red); color: #fff;
    font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}
.story-date { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; }
.story-cta, .read-more {
    color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
}
.read-more { color: var(--brand); margin-top: auto; }
.blog-card:hover .read-more { color: var(--logo-red); }
.blog-grid-section { padding: 0 0 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.blog-card {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(229,43,41,.22); }
.blog-card-media { position: relative; height: 210px; overflow: hidden; background: #EEF3FB; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-date-chip {
    position: absolute; left: 12px; bottom: 12px; background: #fff; color: var(--navy);
    font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 999px;
}
.blog-card-body { padding: 20px 20px 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-card-body h3 { font-size: 1.12rem; min-height: 2.5em; }
.blog-card-body p { color: var(--text-muted); font-size: .94rem; }
.blog-empty, .muted { color: var(--text-muted); grid-column: 1 / -1; }
.blog-empty-card { grid-column: 1 / -1; text-align: center; padding: 48px 20px; border: 1px dashed var(--line); border-radius: 16px; }
.article-page { max-width: var(--content-max); margin: 0 auto 80px; padding: 28px var(--page-gutter) 0; }
.blog-details-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .85fr); gap: 28px; align-items: start; }
.article-panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.article-hero { background: #EEF3FB; }
.main-article-img { width: 100%; height: 420px; object-fit: cover; margin: 0; border: 0; border-radius: 0; }
.article-copy { padding: 28px 32px 8px; }
.article-copy h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 8px 0 12px; max-width: 18ch; }
.blog-meta-top { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-weight: 600; font-size: .9rem; margin: 0 0 22px; justify-content: flex-start; }
.article-body { color: var(--text-dark); font-size: 1.06rem; line-height: 1.85; }
.article-body p { color: var(--text-dark); margin-bottom: 1.15rem; }
.blog-sidebar { position: sticky; top: 128px; height: fit-content; }
.sidebar-widget { background: #fff; padding: 22px; border-radius: 16px; box-shadow: var(--shadow-sm); margin-bottom: 16px; border: 1px solid var(--line); }
.sidebar-widget h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--logo-red); }
.recent-post-item { display: flex; gap: 12px; margin-bottom: 14px; text-decoration: none; align-items: center; padding: 8px; border-radius: 10px; }
.recent-post-item:hover { background: #F8FAFC; }
.recent-post-item img { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.recent-post-info small { display: block; color: var(--text-muted); font-size: .72rem; margin-bottom: 4px; font-weight: 650; }
.recent-post-info h4 { font-family: var(--font-body); font-size: .9rem; color: var(--navy); line-height: 1.35; }
.share-box { display: flex; gap: 10px; margin: 12px 32px 28px; padding-top: 18px; border-top: 1px solid var(--line); align-items: center; flex-wrap: wrap; }
.share-box span { font-weight: 700; color: var(--navy); }
.share-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #EEF3FB; color: var(--navy); text-decoration: none; }
.share-btn:hover { background: var(--navy); color: #fff; }
.sidebar-cta { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, #8B1E2D); color: #fff; border: 0; }
.sidebar-cta h3 { color: #fff; border-color: rgba(255,255,255,.25); }
.sidebar-cta p { opacity: .88; margin-bottom: 14px; }
.sidebar-cta .btn-prime, .sidebar-wa { width: 100%; margin-top: 8px; }
@media (max-width: 1024px) {
    .featured-story, .blog-details-grid { grid-template-columns: 1fr; }
    .featured-overlay { grid-column: 1; background: linear-gradient(180deg, transparent 0%, rgba(16,27,58,.92) 45%); padding: 28px 24px; }
    .featured-story .featured-img, .main-article-img { min-height: 280px; height: 280px; }
    .blog-sidebar { position: static; }
    .article-copy, .share-box { padding-left: 20px; padding-right: 20px; }
}
