/* ============================================================
   PNEUSTORE - CARREFOUR STYLE DESIGN SYSTEM
   ============================================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --blue: #1e5bc6;
    --blue-dark: #0f3a87;
    --blue-hover: #154ab0;
    --red: #e2001a;
    --red-hover: #c00016;
    --yellow-star: #ffc220;
    --green: #00963c;
    --text-dark: #222222;
    --text-medium: #555555;
    --text-light: #888888;
    --bg: #f4f4f4;
    --bg-card: #ffffff;
    --border: #e5e5e5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================================
   1. SERVICE BAR (TOP BLUE PILL-BAR)
   ============================================================ */
.service-bar {
    background-color: var(--blue);
    padding: 8px 0;
}

.service-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service-tabs {
    display: flex;
    gap: 2px;
}

.service-tab {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    transition: all 0.2s;
}

.service-tab:hover,
.service-tab.active {
    background-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.service-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11.5px;
    transition: color 0.2s;
}

.service-links a:hover {
    color: var(--white);
}

.service-card-link {
    font-weight: 700 !important;
    color: var(--white) !important;
}

/* ============================================================
   2. MAIN HEADER
   ============================================================ */
.main-header {
    background-color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-shape {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 91, 198, 0.3);
}

.logo-c {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 680px;
    display: flex;
    border: 1.5px solid #cccccc;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 91, 198, 0.12);
}

.search-bar input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: transparent;
}

.search-bar input::placeholder {
    color: #aaaaaa;
}

#search-btn {
    background-color: var(--blue);
    border: none;
    color: var(--white);
    padding: 0 20px;
    font-size: 16px;
    transition: background-color 0.2s;
}

#search-btn:hover {
    background-color: var(--blue-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    transition: color 0.2s;
}

.header-action-item:hover {
    color: var(--blue);
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-top {
    font-size: 13px;
    font-weight: 600;
}

.action-bottom {
    font-size: 11px;
    color: var(--text-light);
}

.cart-btn-wrapper {
    position: relative;
}

.cart-icon-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 22px;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* ============================================================
   3. CATEGORY NAV BAR
   ============================================================ */
.cat-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 81px;
    z-index: 99;
}

.cat-nav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 46px;
}

.cat-nav-dept {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    border-right: 1px solid var(--border);
    white-space: nowrap;
    transition: background-color 0.2s;
}

.cat-nav-dept:hover {
    background-color: #f0f5ff;
}

.cat-nav-links {
    display: flex;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-nav-links::-webkit-scrollbar {
    display: none;
}

.cat-link {
    padding: 0 14px;
    font-size: 13px;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.cat-link:hover,
.cat-link.active-link {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.cat-link.hot {
    color: var(--red);
    font-weight: 600;
}

.cat-link.hot:hover {
    color: var(--red-hover);
    border-bottom-color: var(--red);
}

.cat-nav-cep {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-left: 1px solid var(--border);
    color: var(--blue);
    font-size: 12px;
    flex-shrink: 0;
}

#cep-input {
    border: none;
    outline: none;
    font-size: 12px;
    width: 110px;
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
}

#cep-input::placeholder {
    color: #aaa;
}

/* ============================================================
   4. HERO CAROUSEL
   ============================================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
    max-height: 440px;
    background: var(--blue-dark);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.slide-green {
    background: linear-gradient(135deg, #0d4821, #1a7c3e);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%);
}

.slide-text {
    color: var(--white);
    max-width: 450px;
}

.slide-tag {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.slide-text h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-price {
    color: var(--yellow-star);
}

.slide-cta-btn {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s;
}

.slide-cta-btn:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.3);
}

/* ============================================================
   5. MINI PROMO BANNERS
   ============================================================ */
.mini-banners {
    margin: 14px auto;
}

.mini-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mini-banner {
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mini-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mini-banner-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.mini-banner strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.mini-banner span {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

/* ============================================================
   6. CATEGORIES ICON GRID
   ============================================================ */
.categories-section {
    margin: 8px auto 4px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title-row h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 3px;
}

.right-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.offers-emoji {
    font-size: 18px;
}

.ver-mais-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
}

.ver-mais-link:hover {
    text-decoration: underline;
}

.arrow-btns {
    display: flex;
    gap: 8px;
}

.arr-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.arr-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(30, 91, 198, 0.15);
}

.cat-icon-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.cat-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-align: center;
}

.cat-icon-item:hover {
    background-color: var(--bg);
}

.cat-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8eef8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    transition: transform 0.2s;
}

.cat-icon-item:hover .cat-icon-img {
    transform: scale(1.1);
}

.cat-icon-red {
    background-color: #fce8eb;
    color: var(--red) !important;
}

.cat-icon-green {
    background-color: #e6f5ed;
    color: var(--green) !important;
}

.cat-icon-blue {
    background-color: #e8eef8;
    color: var(--blue) !important;
}

.cat-icon-orange {
    background-color: #fff1e6;
    color: #e07000 !important;
}

.cat-icon-purple {
    background-color: #f0eafa;
    color: #6a3db8 !important;
}

.cat-icon-teal {
    background-color: #e6f7f5;
    color: #00897b !important;
}

.cat-icon-pink {
    background-color: #fce8f3;
    color: #c2185b !important;
}

.cat-icon-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ============================================================
   7. FEATURED PROMO STRIP
   ============================================================ */
.featured-promo {
    margin: 14px auto;
}

.featured-promo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.featured-promo-link:hover {
    opacity: 0.9;
}

.featured-promo-link i {
    font-size: 18px;
    color: var(--yellow-star);
}

/* ============================================================
   8. PRODUCTS SECTION
   ============================================================ */
.products-section {
    margin: 8px auto 14px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 4-column grid like Carrefour */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
}

.badge-oferta,
.badge-clube,
.badge-promo {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    color: var(--white);
    display: inline-block;
}

.badge-oferta {
    background-color: var(--red);
}

.badge-clube {
    background-color: var(--blue);
}

.product-img-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: var(--white);
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    color: var(--yellow-star);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating small {
    color: var(--text-light);
    font-size: 11px;
}

/* Price block - Carrefour style: blue large price */
.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 4px;
}

.price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-now {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    /* Carrefour-style: price is BLUE */
    line-height: 1;
}

.price-install {
    font-size: 12px;
    color: var(--text-medium);
}

.price-install strong {
    color: var(--blue);
}

.price-pix {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
}

.pix-label {
    display: inline-block;
    background-color: #00b573;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 3px;
}

.product-delivery {
    margin-top: auto;
}

.delivery-green {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product Action Buttons */
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-add {
    flex: 1;
    background-color: var(--blue);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.btn-add:hover {
    background-color: var(--blue-hover);
}

.btn-retire {
    flex: 1;
    background-color: var(--white);
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-retire:hover {
    background-color: #f0f5ff;
}

/* ============================================================
   9. CREDIT PROMO BANNER
   ============================================================ */
.credit-promo {
    margin: 14px auto;
}

.credit-promo-inner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #4a90e2 100%);
    border-radius: 10px;
    padding: 32px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.credit-text h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.credit-cta-btn {
    background-color: var(--yellow-star);
    color: #222;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.credit-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   10. FOOTER - CARREFOUR LIGHT STYLE
   ============================================================ */
.main-footer {
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    margin-top: 10px;
}

/* Support Widget */
.footer-support {
    background-color: #e8f0fe;
    padding: 32px 0;
    border-bottom: 1px solid #d0ddf8;
}

.footer-support-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.support-chat {
    flex: 0 0 280px;
}

.support-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    margin-bottom: 8px;
}

.support-chat p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s;
}

.whatsapp-btn:hover {
    background-color: #1fb956;
    transform: translateY(-2px);
}

.support-phone {
    flex: 1;
}

.support-phone>p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.phone-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.phone-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-block span {
    font-size: 12px;
    color: var(--text-light);
}

.phone-block a {
    font-size: 19px;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 7px;
}

.support-phone small {
    font-size: 11px;
    color: var(--text-light);
}

/* Footer Main Links */
.footer-links-section {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.footer-links-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-medium);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--blue);
}

/* Payment Icons */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.pay-icon {
    width: 40px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: var(--bg);
    color: var(--text-dark);
}

.pix-icon {
    font-size: 11px;
    font-weight: 800;
    color: #00b573;
    background-color: #e8f9f2;
    border-color: #00b573;
}

.bank {
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
}

.itau {
    background-color: #ee7700;
    border-color: #ee7700;
}

.bradesco {
    background-color: #cc0000;
    border-color: #cc0000;
}

.nubank {
    background-color: #820ad1;
    border-color: #820ad1;
}

.inter {
    background-color: #f77a00;
    border-color: #f77a00;
}

.payment-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--bg);
    padding: 24px 0 8px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.footer-legal p {
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-size: 14px;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.footer-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-medium);
    letter-spacing: 1px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* ============================================================
   11. CART DRAWER (side panel)
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background-color: var(--blue);
    color: var(--white);
}

.cart-drawer-header h3 {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

#close-cart {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

#close-cart:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
    font-size: 14px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.cart-item-name {
    font-weight: 500;
    flex: 1;
}

.cart-item-price {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

.cart-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.btn-checkout {
    width: 100%;
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.btn-checkout:hover {
    background-color: var(--red-hover);
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-links-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-bar .service-links {
        display: none;
    }

    .action-text {
        display: none;
    }

    .header-inner {
        gap: 12px;
    }

    .cat-nav-cep {
        display: none;
    }

    .slide-text h2 {
        font-size: 28px;
    }

    .slide-overlay {
        padding: 0 24px;
    }

    .mini-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-support-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .credit-promo-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .mini-banner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-links-inner {
        grid-template-columns: 1fr;
    }

    .service-tabs {
        gap: 0;
    }

    .service-tab {
        padding: 5px 10px;
        font-size: 11px;
    }
}