/* ============================================================
   Escola Múltipla — Store CSS
   Font: Sora | Palette: blue #1a56db · white · slate #f8fafc
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --primary:      #1a56db;
    --primary-dark: #1e40af;
    --primary-rgb:  26, 86, 219;
    --accent:       #3b82f6;
    --dark:         #1e293b;
    --dark2:        #334155;
    --cream:        #f8fafc;
    --cream2:       #f1f5f9;
    --text:         #1e293b;
    --text-muted:   #64748b;
    --border:       #e2e8f0;
    --success:      #16a34a;
    --radius:       6px;
    --radius-lg:    12px;
    --shadow:       0 2px 16px rgba(0,0,0,.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,.12);

    /* Bootstrap 5 overrides */
    --bs-primary:     #1a56db;
    --bs-primary-rgb: 26,86,219;
    --bs-font-sans-serif: 'Sora', sans-serif;
    --bs-body-bg:     #f8fafc;
    --bs-body-color:  #1e293b;
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Sora', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* ── Sticky header wrapper ──────────────────────────────────── */
.loja-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

/* ── Strip de acesso do responsável ─────────────────────────── */
.loja-responsavel-strip {
    background: var(--dark);
    color: #b0bbc8;
    font-size: .75rem;
    padding: .4rem 0;
    letter-spacing: .01em;
}
.loja-responsavel-strip .strip-escola {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    opacity: .75;
}
.loja-responsavel-strip .strip-cta {
    color: #8a9ab0;
    font-size: .72rem;
}
.strip-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 12px; border-radius: 20px; font-size: .71rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,.22); color: #ccc; text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}
.strip-btn:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.strip-btn--primary { background: var(--primary); color: #fff !important; border-color: var(--primary); }
.strip-btn--primary:hover { filter: brightness(1.12); }
.strip-link { color: #b0bbc8; text-decoration: none; font-size: .72rem; }
.strip-link:hover { color: #fff; }
.strip-sep { color: #4b5a6b; margin: 0 2px; }

/* ── Navbar ─────────────────────────────────────────────────── */
.loja-navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: .5rem 0;
}
.loja-navbar .brand-logo img { height: 72px !important; width: auto; }
.loja-navbar .brand-logo span {
    font-size: 1.25rem; font-weight: 700; color: var(--dark); letter-spacing: -.3px;
}

/* Search bar */
.navbar-search { position: relative; flex: 1; max-width: 480px; }
.navbar-search input {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .5rem 3rem .5rem 1.2rem;
    font-size: .88rem;
    width: 100%;
    background: #fff;
    font-family: 'Sora', sans-serif;
    outline: none;
    transition: border-color .2s;
}
.navbar-search input:focus { border-color: var(--primary); background: #fff; }
.navbar-search button {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    background: var(--primary);
    border: none;
    border-radius: 0 50px 50px 0;
    color: #fff;
    width: 44px;
    cursor: pointer;
    transition: background .2s;
}
.navbar-search button:hover { background: var(--primary-dark); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-action-btn {
    display: flex; flex-direction: column; align-items: center; gap: .12rem;
    color: var(--dark); text-decoration: none; font-size: .72rem; font-weight: 500;
    padding: .3rem .5rem; border-radius: var(--radius); transition: color .2s;
    position: relative;
}
.nav-action-btn i { font-size: 1.2rem; }
.nav-action-btn:hover { color: var(--primary); }
.nav-action-btn .cart-badge {
    position: absolute; top: -2px; right: -2px;
    background: var(--primary); color: #fff; font-size: .62rem;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Category bar */
.category-nav { background: var(--dark); }
.category-nav .nav-link {
    color: #fff; font-size: .78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .6rem 1rem; transition: color .2s, background .2s;
}
.category-nav .nav-link:hover,
.category-nav .nav-link.active { color: #fff; background: rgba(255,255,255,.12); }

/* ── Hero Swiper Banner ─────────────────────────────────────── */
.hero-bg {
    width: 100%;
    background: #f1f5f9;
}
.hero-swiper { width: 100%; max-width: 1600px; margin: 0 auto; position: relative; background: transparent; }
.hero-swiper .swiper-slide { position: relative; overflow: hidden; }
.hero-swiper .swiper-slide img {
    width: 100%; height: auto; display: block;
}
.hero-swiper .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(25,25,25,.72) 0%, rgba(25,25,25,.2) 60%, transparent 100%);
    display: flex; align-items: center; padding: 0 6%;
}
.hero-swiper .slide-content { max-width: 500px; color: #fff; }
.hero-swiper .slide-content .slide-tag {
    display: inline-block; background: var(--primary); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .25rem .85rem; border-radius: 50px; margin-bottom: .8rem;
}
.hero-swiper .slide-content h2 {
    font-size: 2.2rem; font-weight: 700; line-height: 1.15; margin-bottom: .5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-swiper .slide-content p { font-size: 1rem; opacity: .88; margin-bottom: 1.2rem; }
.hero-swiper .btn-slide {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--primary); color: #fff;
    padding: .65rem 1.6rem; border-radius: 50px;
    font-size: .88rem; font-weight: 600; text-decoration: none;
    transition: background .2s, transform .2s;
}
.hero-swiper .btn-slide:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff; background: rgba(255,255,255,.15); border-radius: 50%;
    width: 44px; height: 44px; backdrop-filter: blur(4px);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: .9rem; font-weight: 900; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--primary); }

@media (max-width: 768px) {
    .hero-swiper .swiper-slide img { height: auto; }
    .hero-swiper .slide-content h2 { font-size: 1.3rem; }
    .hero-swiper .slide-content p { font-size: .85rem; }
    .hero-swiper .btn-slide { padding: .5rem 1.2rem; font-size: .8rem; }
}

/* ── Feature Strip ──────────────────────────────────────────── */
.feature-strip {
    background: #fff;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0;
}
.feature-item { display: flex; align-items: center; gap: .85rem; }
.feature-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(26,86,219,.08); border: 2px solid rgba(26,86,219,.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon i { font-size: 1.1rem; color: var(--primary); }
.feature-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); }
.feature-text span { font-size: .78rem; color: var(--text-muted); }

/* ── Section Titles ─────────────────────────────────────────── */
.section-heading { margin-bottom: 2rem; }
.section-heading .pre-title {
    display: inline-block; font-size: .72rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; color: var(--primary); margin-bottom: .4rem;
}
.section-heading h2 { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.2; }
.section-heading .underline {
    display: block; width: 48px; height: 3px; background: var(--primary); margin-top: .5rem; border-radius: 2px;
}

/* ── Category Cards ─────────────────────────────────────────── */
.cat-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 1.5rem .75rem; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-decoration: none; color: var(--dark);
    text-align: center; transition: transform .22s, box-shadow .22s, border-color .22s; gap: .6rem;
}
.cat-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-hover);
    border-color: var(--primary); color: var(--primary);
}
.cat-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.cat-icon.c0 { background: #2563eb; }
.cat-icon.c1 { background: #16a34a; }
.cat-icon.c2 { background: #0d9488; }
.cat-icon.c3 { background: #dc2626; }
.cat-icon.c4 { background: #7c3aed; }
.cat-icon.c5 { background: #0891b2; }
.cat-card-name { font-size: .75rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }

/* ── Product Tabs ───────────────────────────────────────────── */
.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--border); gap: .25rem;
}
.product-tabs .nav-tabs .nav-link {
    border: none; border-radius: 0; color: var(--text-muted);
    font-size: .75rem; font-weight: 700; padding: .6rem 1.2rem;
    text-transform: uppercase; letter-spacing: .04em;
    border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .2s;
}
.product-tabs .nav-tabs .nav-link.active,
.product-tabs .nav-tabs .nav-link:hover { color: var(--primary); border-bottom-color: var(--primary); background: transparent; }

/* ── Product Cards ──────────────────────────────────────────── */
.pcard-wrap { position: relative; }
.pbadges { position: absolute; top: .5rem; left: .5rem; z-index: 2; display: flex; flex-direction: column; gap: .3rem; }
.pbadge { display: inline-flex; align-items: center; gap: .25rem; padding: .2rem .55rem; border-radius: 50px; font-size: .67rem; font-weight: 700; }
.pbadge-novo  { background: #1a56db; color: #fff; }
.pbadge-esgot { background: #ef4444; color: #fff; }
.pbadge-pouco { background: #f59e0b; color: #fff; }

.product-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
    transition: transform .22s, box-shadow .22s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pimg-wrap { overflow: hidden; position: relative; }
.pimg-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; display: block; }
.product-card:hover .pimg-wrap img { transform: scale(1.05); }
.pimg-wrap .img-esgotado-wrap img { filter: grayscale(.7) opacity(.7); }
.card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.cat-tag {
    display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; color: var(--primary);
    background: rgba(26,86,219,.08); padding: .18rem .6rem; border-radius: 50px; margin-bottom: .4rem;
}
.prod-name {
    display: block; font-size: .9rem; font-weight: 600; color: var(--dark);
    text-decoration: none; line-height: 1.35; margin-bottom: .3rem;
}
.prod-name:hover { color: var(--primary); }
.prod-desc { font-size: .78rem; color: var(--text-muted); flex: 1; }
.price-tag { display: block; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.btn-ver-produto {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    background: var(--dark); color: #fff; font-size: .8rem; font-weight: 600;
    padding: .55rem 1rem; border-radius: 50px; text-decoration: none; transition: background .2s;
}
.btn-ver-produto:hover { background: var(--primary); color: #fff; }
.btn-ver-produto-out {
    display: flex; align-items: center; justify-content: center; gap: .3rem;
    background: #f1f5f9; color: #94a3b8; font-size: .8rem; font-weight: 600;
    padding: .55rem 1rem; border-radius: 50px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
    background: var(--dark); color: #fff; padding: 3.5rem 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; background: rgba(26,86,219,.12); border-radius: 50%;
}
.cta-section .btn-cta {
    background: var(--primary); color: #fff; border: none;
    padding: .75rem 2.2rem; border-radius: 50px; font-weight: 600;
    font-size: .95rem; text-decoration: none; transition: background .2s, transform .2s;
}
.cta-section .btn-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.loja-breadcrumb-bar { background: #fff; border-bottom: 1px solid var(--border); padding: .65rem 0; }
.loja-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center;
    list-style: none; margin: 0; padding: 0; gap: 0; font-size: .8rem;
}
.loja-breadcrumb li { display: flex; align-items: center; }
.loja-breadcrumb li + li::before { content: '›'; margin: 0 .5rem; color: #bbb; font-size: .9rem; }
.loja-breadcrumb li a { color: var(--text-muted); text-decoration: none; }
.loja-breadcrumb li a:hover { color: var(--primary); }
.loja-breadcrumb li.active { color: var(--dark); font-weight: 600; }

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar-box {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem;
}
.sidebar-box-header {
    background: var(--dark); color: #fff; padding: .75rem 1rem;
    font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.sidebar-cat-list { list-style: none; margin: 0; padding: .4rem 0; }
.sidebar-cat-list li a {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem 1rem; font-size: .76rem; color: var(--text); text-decoration: none;
    text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
    transition: background .15s, color .15s;
}
.sidebar-cat-list li a:hover,
.sidebar-cat-list li a.active { background: rgba(26,86,219,.07); color: var(--primary); }
.sidebar-cat-list li a.active { font-weight: 600; }
.sidebar-cat-list li a i { font-size: .75rem; width: 14px; }

.catalog-search-form { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.catalog-search-form input {
    width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: .5rem .85rem; font-size: .84rem; font-family: 'Sora', sans-serif;
    background: #fff; outline: none;
}
.catalog-search-form input:focus { border-color: var(--primary); }
.catalog-search-form button {
    background: var(--primary); color: #fff; border: none;
    border-radius: var(--radius); padding: .5rem 1rem; font-size: .84rem;
    font-family: 'Sora', sans-serif; cursor: pointer; font-weight: 600; transition: background .2s;
}
.catalog-search-form button:hover { background: var(--primary-dark); }

.sidebar-info {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem; font-size: .82rem;
}
.info-title { font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.info-title i { color: var(--primary); margin-right: .35rem; }
.info-row { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .3rem; color: var(--text-muted); }
.info-row i { margin-top: .1rem; font-size: .8rem; color: var(--primary); flex-shrink: 0; }

/* ── Product Detail ─────────────────────────────────────────── */
.price-tag { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.retirada-alert {
    background: rgba(26,86,219,.06); border: 1px solid rgba(26,86,219,.2);
    color: #1e3a8a; font-size: .84rem;
}
.retirada-banner {
    background: rgba(26,86,219,.06); border: 1px solid rgba(26,86,219,.15); border-radius: 8px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.loja-footer {
    background: var(--dark); color: #fff;
    padding: 3.5rem 0 0; font-size: .85rem;
}
.loja-footer .footer-brand img { height: 40px; filter: brightness(0) invert(1); }
.loja-footer .footer-brand p { color: #fff; font-size: .82rem; margin-top: .75rem; }
.loja-footer h6 {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.loja-footer ul { list-style: none; padding: 0; margin: 0; }
.loja-footer ul li { margin-bottom: .45rem; }
.loja-footer ul li a { color: #fff; text-decoration: none; transition: opacity .2s; }
.loja-footer ul li a:hover { opacity: .75; color: #fff; }
.loja-footer .contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .5rem; }
.loja-footer .contact-item i { color: #fff; margin-top: .15rem; font-size: .85rem; flex-shrink: 0; }
.footer-social { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff;
    font-size: .95rem; transition: background .2s, transform .15s;
    text-decoration: none;
}
.footer-social-btn:hover { background: rgba(255,255,255,.28); color: #fff; transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.5rem;
    padding: 1.2rem 0; font-size: .78rem; color: #fff;
}

/* ── Nav mobile ─────────────────────────────────────────────── */
.nav-mobile-links { display: flex; flex-direction: column; gap: .1rem; }
.nav-mobile-item {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem .75rem; border-radius: var(--radius);
    font-size: .84rem; font-weight: 500; color: var(--dark); text-decoration: none;
    transition: background .15s, color .15s;
}
.nav-mobile-item:hover { background: var(--cream2); color: var(--primary); }
.nav-mobile-section {
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-muted); padding: .75rem .75rem .25rem;
}
.nav-mobile-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}

/* ── Dropdown Produtos (category-nav) ───────────────────────── */
.cat-nav-produtos { cursor: pointer; }
.cat-nav-produtos::after { display: none !important; }
.cat-nav-produtos .fa-box { opacity: .8; }
.cat-produtos-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    padding: .5rem 0;
    min-width: 280px;
    margin-top: .2rem !important;
}
.cat-produtos-dropdown .dropdown-item {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem 1rem; font-size: .84rem; font-weight: 500;
    color: var(--dark); transition: background .15s, color .15s;
}
.cat-produtos-dropdown .dropdown-item:hover,
.cat-produtos-dropdown .dropdown-item.active {
    background: rgba(26,86,219,.06); color: var(--primary);
}
.cat-grupo-item { flex-direction: column; align-items: flex-start !important; gap: .1rem !important; padding: .6rem 1rem !important; }
.cat-grupo-item:hover { border-left: 3px solid var(--gc, var(--primary)); padding-left: calc(1rem - 3px) !important; }
.cat-grupo-row { display: flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
.cat-grupo-dot {
    width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; display: inline-block;
}
.cat-grupo-desc { font-size: .74rem; color: var(--text-muted); padding-left: 1.4rem; }

/* ── Section backgrounds ────────────────────────────────────── */
.section-light { background: var(--cream2); }
.section-white { background: #fff; }

/* ── Global utilities ───────────────────────────────────────── */
.section-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.btn-primary { background: var(--primary) !important; border-color: var(--primary) !important; }
.btn-primary:hover { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.badge.bg-primary { background: var(--primary) !important; }
.pagination .page-item .page-link { color: var(--primary); border-color: var(--border); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Checkout */
.step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #ddd; color: #fff; font-weight: 700; font-size: .8rem;
}
.checkout-step.active .step-badge { background: var(--primary); }
.checkout-step.active .step-label { color: var(--primary); }
.pm-option input:checked + label { border-color: var(--primary); background: rgba(26,86,219,.04); }
.method-info { border-top: 3px solid var(--primary); }
.summary-card .summary-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.summary-item .item-price { color: var(--primary); }
.section-card.section-active { border-left: 4px solid var(--primary) !important; }

/* ============================================================
   Responsive
   ============================================================ */

/* Fix dropdown z-index inside sticky stacking context */
.cat-produtos-dropdown { z-index: 2000; }

/* Mobile sidebar toggle (only shown below lg) */
.sidebar-mobile-toggle { display: none; }

/* ── < 992px (tablet + mobile) ────────────────────────────── */
@media (max-width: 991.98px) {
    .loja-navbar { padding: .55rem 0; }
    .loja-navbar .brand-logo img { height: 48px; }

    /* Sidebar: collapse content on mobile, show toggle button */
    .catalog-sidebar-content { display: none; }
    .catalog-sidebar-content.show { display: block; }

    .sidebar-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: .55rem 1rem;
        margin-bottom: .75rem;
        background: var(--dark);
        color: #fff;
        border: none;
        border-radius: var(--radius);
        font-size: .85rem;
        font-weight: 600;
        cursor: pointer;
        transition: background .2s;
        font-family: 'Sora', sans-serif;
    }
    .sidebar-mobile-toggle:hover { background: var(--dark2); }
    .sidebar-mobile-toggle .toggle-icon { transition: transform .2s; }
    .sidebar-mobile-toggle[aria-expanded="true"] .toggle-icon { transform: rotate(180deg); }

    /* Product images: less tall on tablet 2-col layout */
    .pimg-wrap img { height: 180px; }
}

/* ── < 768px (mobile) ─────────────────────────────────────── */
@media (max-width: 767.98px) {
    .pimg-wrap img { height: 160px; }

    /* Feature strip: 2 cols, smaller icons/text */
    .feature-strip { padding: 1.1rem 0; }
    .feature-item { gap: .55rem; }
    .feature-icon { width: 40px; height: 40px; }
    .feature-icon i { font-size: .95rem; }
    .feature-text strong { font-size: .82rem; }
    .feature-text span { font-size: .72rem; }

    /* Section headings */
    .section-heading h2 { font-size: 1.4rem; }
    .section-title { font-size: 1.2rem; }

    /* Product card body */
    .card-body { padding: .8rem; }
    .prod-name { font-size: .86rem; }
    .price-tag { font-size: 1rem; }
    .btn-ver-produto,
    .btn-ver-produto-out { font-size: .77rem; padding: .48rem .85rem; }

    /* Footer */
    .loja-footer { padding: 2rem 0 0; }
    .loja-footer h6 { margin-bottom: .6rem; }
    .footer-bottom .d-flex { flex-direction: column; gap: .2rem !important; text-align: center; }
}

/* ── < 576px (extra small / phones) ──────────────────────── */
@media (max-width: 575.98px) {
    body { font-size: 14px; }

    /* Navbar */
    .loja-navbar { padding: .45rem 0; }
    .nav-action-btn { padding: .2rem .35rem; gap: .05rem; }
    .nav-action-btn i { font-size: 1.05rem; }
    .nav-action-btn span { font-size: .62rem; }

    /* Hero */
    .hero-swiper .swiper-slide img { height: auto; }
    .hero-swiper .slide-content h2 { font-size: 1.1rem; }
    .hero-swiper .slide-content p { display: none; }

    /* Feature strip: single-col at xs by stacking text under icon */
    .feature-strip { padding: .9rem 0; }
    .feature-item { flex-direction: column; text-align: center; gap: .35rem; }
    .feature-icon { margin: 0 auto; }

    /* Product image */
    .pimg-wrap img { height: 140px; }

    /* Product card body */
    .card-body { padding: .6rem; }
    .cat-tag { font-size: .62rem; }
    .prod-name { font-size: .78rem; line-height: 1.3; }
    .prod-desc { display: none; }
    .price-tag { font-size: .92rem; margin-bottom: .35rem; }
    .btn-ver-produto,
    .btn-ver-produto-out { font-size: .7rem; padding: .38rem .55rem; gap: .2rem; }
    .pbadge { font-size: .6rem; padding: .15rem .4rem; }

    /* Footer bottom */
    .footer-bottom { font-size: .71rem; }
}
