:root {
    --brand-dark: #0b0b0b;
    --brand-dark-2: #151515;
    --brand-mid: #8a6a2f;
    --brand-accent: #d7a147;
    --brand-accent-soft: #f3dfb6;
    --surface: #ffffff;
    --surface-soft: #f7f3ea;
    --surface-tint: #f0ede6;
    --ink: #1b1b1b;
    --muted: #6d6a61;
    --line: rgba(27, 27, 27, 0.12);
    --shadow-soft: 0 14px 34px rgba(20, 20, 20, 0.08);
    --shadow-card: 0 18px 44px rgba(20, 20, 20, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

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

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    background:
        radial-gradient(circle at top left, rgba(215, 161, 71, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(180deg, #fbf9f4 0%, #ede7dc 100%);
    color: var(--ink);
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.header-topbar {
    background: rgba(16, 39, 31, 0.96);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-copy {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.topbar-whatsapp {
    color: #baf5cc;
    text-decoration: none;
    font-weight: 700;
}

.topbar-item {
    white-space: nowrap;
}

a {
    color: var(--brand-mid);
}

.main-navbar {
    background: linear-gradient(90deg, rgba(11, 11, 11, 0.96), rgba(21, 21, 21, 0.96)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(215, 161, 71, 0.6);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    background: #000;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.28rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-premium .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    padding: 0.65rem 0.38rem !important;
    font-size: 0.9rem;
}

.nav-premium .nav-link:hover {
    color: #fff;
}

.dropdown-categories {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    min-width: 220px;
}

.dropdown-categories .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    padding: 0.65rem 1rem;
}

.dropdown-categories .dropdown-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.header-actions {
    display: flex;
    gap: 0.38rem;
    align-items: center;
}

.header-actions .btn {
    white-space: nowrap;
}

.nav-edge-container {
    padding-left: clamp(0.75rem, 2vw, 1.5rem);
    padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

.header-icon-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    position: relative;
}

.navbar > .container {
    min-width: 0;
}

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

.row {
    min-width: 0;
}

.btn {
    max-width: 100%;
}

.header-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    padding: 0 0.45rem;
    background: rgba(215, 161, 71, 0.25);
    color: #1c1407;
    font-size: 0.82rem;
    font-weight: 800;
}

.header-icon-btn .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 0.3rem;
    font-size: 0.7rem;
    background: var(--brand-accent-soft);
}

.btn,
.btn-lg {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-warning {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #1a1206;
}

.btn-warning:hover,
.btn-warning:focus {
    background: #c59231;
    border-color: #c59231;
    color: #211a0e;
}

.btn-success {
    background: #1f8a4b;
    border-color: #1f8a4b;
}

.btn-dark {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: rgba(16, 39, 31, 0.12);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(45, 106, 79, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.14);
}

.surface-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.surface-dark {
    background: linear-gradient(145deg, #123123, #24483a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-mid);
    margin-bottom: 0.65rem;
}

.display-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-lead {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.text-primary {
    color: var(--brand-mid) !important;
}

.text-muted {
    color: var(--muted) !important;
}

.bi {
    vertical-align: -0.1em;
}

.hero-shell {
    overflow: hidden;
}

.premium-home-hero .hero-stage {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.hero-carousel .carousel-item {
    min-height: 560px;
}

.hero-carousel-slide {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #111;
    isolation: isolate;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #111;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(95deg, rgba(8, 17, 12, 0.86) 0%, rgba(8, 17, 12, 0.62) 46%, rgba(8, 17, 12, 0.18) 100%),
        radial-gradient(circle at 12% 20%, rgba(215, 161, 71, 0.22), transparent 34%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-slide-eyebrow {
    color: #ffe4ad;
    margin-bottom: 0.8rem;
}

.hero-slide-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.07rem;
    max-width: 58ch;
}

.hero-carousel-indicators {
    margin-bottom: 1rem;
}

.hero-carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border-radius: 99px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%;
}

.hero-stage-glow {
    position: absolute;
    inset: auto -12% -20% auto;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(214, 161, 63, 0.22), transparent 65%);
    pointer-events: none;
}

.hero-stage-copy {
    position: relative;
}

.hero-stage-side {
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(215, 161, 71, 0.2), transparent 34%),
        linear-gradient(180deg, #f7f2e7 0%, #efe8dd 100%);
}

.hero-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-metric-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid rgba(16, 39, 31, 0.08);
}

.hero-metric-card strong {
    display: block;
    font-size: 1.2rem;
}

.hero-metric-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-side-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 39, 31, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem 1.05rem;
}

.hero-side-card-main {
    display: block;
    padding: 1.4rem;
}

.hero-side-stack {
    display: grid;
    gap: 0.85rem;
}

.search-hero {
    background: linear-gradient(135deg, #ffffff, #f5efe3);
}

.hero-side-icon {
    font-size: 1.2rem;
    color: var(--brand-mid);
}

.brand-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    font-weight: 700;
}

.editorial-panel {
    background:
        radial-gradient(circle at top left, rgba(215, 161, 71, 0.16), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 222, 0.96));
}

.hero-copy {
    position: relative;
}

.hero-cta-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-proof-card {
    background: var(--surface-soft);
    border: 1px solid rgba(16, 39, 31, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.hero-proof-card strong {
    display: block;
    font-size: 1.15rem;
}

.hero-proof-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-visual {
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(214, 161, 63, 0.18), transparent 30%),
        linear-gradient(180deg, #f4f0e6 0%, #e8efe7 100%);
}

.hero-badge-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-badge-list span {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 39, 31, 0.08);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 39, 31, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.stack-list {
    display: grid;
    gap: 0.75rem;
}

.account-form {
    display: grid;
    gap: 1rem;
}

.stack-list > div {
    display: flex;
    align-items: center;
    color: var(--ink);
    font-weight: 500;
}

.conversion-top-banner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 234, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.promo-panel-dark {
    background: linear-gradient(145deg, #123123, #24483a);
    color: #fff;
}

.catalog-hero-stat {
    min-width: 128px;
    text-align: center;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.catalog-hero-stat strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.filter-chip.active {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.catalog-inline-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.product-card .card-body {
    padding: 1.2rem;
}

.product-thumb {
    height: 240px;
    object-fit: cover;
}

.category-tile {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 150px;
    box-shadow: var(--shadow-soft);
}

.category-tile-lg img {
    height: 180px;
}

.category-tile-xl img {
    height: 240px;
}

.category-tile-featured {
    box-shadow: var(--shadow-card);
}

.category-tile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.category-tile:hover img {
    transform: scale(1.04);
}

.category-tile span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(16, 39, 31, 0.9));
    color: #fff;
    padding: 1rem 1rem 0.9rem;
    font-weight: 700;
    font-size: 1rem;
}

.price-primary {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand-dark);
}

.product-brand-model {
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-whatsapp {
    margin-top: 0.45rem;
    color: #1f8a4b;
    font-weight: 700;
}

.benefit-list {
    display: grid;
    gap: 0.75rem;
    color: var(--ink);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
}

.status-pill-success {
    background: rgba(25, 135, 84, 0.12);
    color: #156b45;
}

.status-pill-warning {
    background: rgba(214, 161, 63, 0.18);
    color: #8b6205;
}

.status-pill-danger {
    background: rgba(220, 53, 69, 0.12);
    color: #a12f3d;
}

.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.product-meta-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.product-meta-card strong {
    display: block;
    margin-bottom: 0.2rem;
}

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

.product-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cart-hero-badge {
    min-width: 180px;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    text-align: center;
}

.cart-hero-badge span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-hero-badge strong {
    display: block;
    font-size: 1.45rem;
}

.cart-list {
    display: grid;
    gap: 1rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1rem;
    align-items: center;
}

.cart-item-copy {
    min-width: 0;
}

.cart-item-media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-item-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.cart-item-actions {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cart-qty-block {
    width: 120px;
}

.cart-inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cart-summary-stack {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.cart-summary-card {
    box-shadow: var(--shadow-card);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.summary-row-success {
    color: #1f8a4b;
}

.cart-summary-points {
    display: grid;
    gap: 0.8rem;
    color: var(--ink);
    font-weight: 500;
}

.empty-cart-shell .surface-card {
    max-width: 820px;
    margin: 0 auto;
}

.review-box,
.trust-box {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.accordion-item {
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 0.75rem;
}

.accordion-button {
    font-weight: 700;
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(215, 161, 71, 0.18), transparent 24%),
        linear-gradient(180deg, var(--brand-dark), #0a0a0a);
    padding: 3rem 0 1.5rem;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.footer-cta-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-logo {
    width: 64px;
    height: 64px;
}

.admin-shell {
    background: #111111;
    min-height: 100vh;
}

.admin-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.admin-page {
    background: #f6f2ea;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.admin-header {
    color: #141414;
    margin-bottom: 1.5rem;
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.admin-subtitle {
    color: #5c5c5c;
    font-size: 0.95rem;
}

.admin-header-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
}

.admin-title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-table {
    border-radius: 16px;
    overflow: hidden;
}

.admin-table thead {
    background: #f0eadf;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f8f2e4;
    color: #7b5a17;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
}

.page-link {
    border-radius: 999px !important;
    margin: 0 0.2rem;
    border-color: var(--line);
    color: var(--brand-dark);
}

.page-item.active .page-link {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.wa-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.wa-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

.thumb {
    width: 78px;
    height: 78px;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 991px) {
    .main-navbar .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.28);
    }

    .nav-premium .nav-link {
        padding: 0.7rem 0 !important;
    }

    .dropdown-categories {
        min-width: 100%;
    }

    .display-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .hero-proof-grid,
    .product-meta-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-row {
        flex-direction: column;
    }

    .hero-cta-row .btn {
        width: 100%;
    }

    .hero-carousel .carousel-item,
    .hero-carousel-slide {
        min-height: 430px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 12%;
    }

    .catalog-inline-reassurance {
        gap: 0.65rem 1rem;
    }

    .product-thumb {
        height: 220px;
    }

    .brand-ribbon,
    .hero-metric-row,
    .footer-grid,
    .cart-item-card {
        grid-template-columns: 1fr;
    }

    .showcase-band,
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-actions .btn {
        flex: 1 1 240px;
    }

    .cart-summary-stack {
        position: static;
    }

    .admin-page {
        padding: 1.4rem;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .site-header,
    main,
    .site-footer {
        max-width: 100%;
        overflow-x: clip;
    }

    main .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .surface-card {
        border-radius: 22px;
    }

    .hero-copy,
    .hero-visual {
        padding: 1.25rem !important;
    }

    .hero-badge-list span,
    .filter-chip {
        font-size: 0.85rem;
    }

    .hero-carousel .carousel-item,
    .hero-carousel-slide {
        min-height: 360px;
    }

    .hero-slide-content {
        max-width: 100%;
        padding: 1.2rem !important;
        padding-bottom: 2.2rem !important;
    }

    .hero-slide-lead {
        font-size: 0.97rem;
    }

    .hero-carousel-indicators {
        margin-bottom: 0.55rem;
    }

    .topbar-copy {
        gap: 0.65rem;
    }

    .topbar-item-optional {
        display: none;
    }

    .topbar-whatsapp {
        width: 100%;
        text-align: center;
        padding: 0.35rem 0;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

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

    .brand-copy small {
        font-size: 0.66rem;
        white-space: normal;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
    }

    .header-actions .btn {
        width: 100%;
    }

    .product-card .card-body {
        padding: 1rem;
    }

    .product-thumb {
        height: 210px;
    }

    .category-tile img,
    .category-tile-lg img {
        height: 120px;
    }

    .category-tile-xl img {
        height: 120px;
    }

    .category-tile span {
        font-size: 0.88rem;
        padding: 0.65rem 0.7rem;
    }

    .catalog-hero-stat {
        width: 100%;
    }

    .cart-item-actions {
        align-items: stretch;
    }

    .cart-qty-block {
        width: 100%;
    }

    .cart-item-title {
        font-size: 1.05rem;
    }

    .summary-row {
        flex-wrap: wrap;
        padding: 0.65rem 0;
    }

    .main-navbar .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.35rem;
    }

    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-float {
        right: 12px;
        bottom: 12px;
        padding: 0.8rem 0.95rem;
    }

    .wa-float span {
        display: none;
    }

    .admin-header-card {
        padding: 1rem;
    }

    .admin-toolbar {
        align-items: flex-start;
    }
}
