/* ============================================================
   Loja Hair & Body — Estilos (mobile-first)
   Paleta: vermelho #B5443F
   ============================================================ */

:root {
    --red:          #B5443F;
    --red-light:    #C9615C;
    --red-dark:     #8E3630;
    --red-soft:     rgba(181, 68, 63, 0.08);
    --ink:          #1d1d1f;
    --ink-2:        #4b4b4f;
    --ink-3:        #86868b;
    --line:         #e7e7ea;
    --bg:           #f6f6f7;
    --card:         #ffffff;
    --green:        #2fa84f;
    --green-soft:   rgba(47, 168, 79, 0.12);
    --amber:        #b06a00;
    --radius:       16px;
    --radius-sm:    10px;
    --shadow:       0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
    --maxw:         1180px;
    --font:         -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px; /* espaço para bottom nav mobile */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.shop-main {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px;
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
    width: auto;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 24px; font-size: 17px; }
.btn-secondary { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--red); padding: 10px 14px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn i { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.shop-header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px;
}
.shop-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 18px;
    color: var(--red);
    white-space: nowrap;
    flex-shrink: 0;
}
.shop-logo img { object-fit: contain; }
.shop-logo .logo-mobile { width: 46px; height: 46px; display: block; }
.shop-logo .logo-desktop { display: none; }
.shop-logo span { display: none; }

.shop-search {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f1f5;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 0 18px;
    min-width: 0;
    transition: all .2s ease;
}
.shop-search:focus-within { border-color: var(--red-light); background: #fff; box-shadow: 0 0 0 3px var(--red-soft); }
.shop-search i { width: 18px; height: 18px; color: var(--ink-3); flex-shrink: 0; }
.shop-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    height: 42px;
    font-size: 15px;
    color: var(--ink);
}

.shop-header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.shop-icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    color: var(--ink-2);
}
.shop-icon-btn:hover { background: var(--bg); color: var(--red); }
.shop-icon-btn i { width: 22px; height: 22px; }
.shop-icon-label { display: none; font-size: 11px; font-weight: 600; }

.shop-cart-badge, .shop-bottomnav-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.shop-cart-badge[hidden], .shop-bottomnav-badge[hidden] { display: none; }

/* Idioma */
.shop-lang { position: relative; }
.shop-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: var(--ink-2);
    height: 44px;
    padding: 0 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
}
.shop-lang-btn:hover { background: var(--bg); }
.shop-lang-btn i { width: 19px; height: 19px; }
.shop-lang-caret { width: 14px !important; height: 14px !important; color: var(--ink-3); }
.shop-flag { font-size: 19px; line-height: 1; }
.shop-lang-menu a { display: flex; align-items: center; gap: 9px; }
.shop-lang-menu .shop-flag { font-size: 20px; }
.shop-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-width: 150px;
    display: none;
}
.shop-lang.open .shop-lang-menu { display: block; }
.shop-lang-menu a { display: block; padding: 12px 16px; font-size: 15px; }
.shop-lang-menu a:hover { background: var(--bg); }
.shop-lang-menu a.active { color: var(--red); font-weight: 700; background: var(--red-soft); }

/* ---------- Flash ---------- */
.shop-flash {
    max-width: var(--maxw);
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
}
.shop-flash i { width: 20px; height: 20px; flex-shrink: 0; }
.shop-flash-success { background: var(--green-soft); color: #1f7a38; }
.shop-flash-error { background: rgba(181,68,63,.1); color: var(--red-dark); }

/* ---------- Carrossel de banners ---------- */
.shop-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 1100 / 360;
    background: linear-gradient(135deg, var(--red), var(--red-light));
}
.shop-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: block;
}
.shop-slide.active { opacity: 1; }
.shop-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--ink);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.carousel-nav:hover { background: #fff; }
.carousel-nav.prev { left: 12px; }
.carousel-nav.next { right: 12px; }
.carousel-dots {
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
    z-index: 3;
}
.carousel-dots button {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
}
.carousel-dots button.active { background: #fff; width: 22px; border-radius: 5px; }
@media (max-width: 600px) {
    /* Mesma proporção do desktop (~3:1) também no celular */
    .carousel-nav { width: 32px; height: 32px; font-size: 18px; }
}

/* ---------- Hero / Section ---------- */
.shop-hero {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: #fff;
    border-radius: var(--radius);
    padding: 26px 22px;
    margin-bottom: 18px;
}
.shop-hero h1 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.shop-hero p { opacity: .92; font-size: 14px; }

.shop-section-title {
    font-size: 18px;
    font-weight: 800;
    margin: 4px 2px 14px;
}

.shop-login-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--red-soft);
    border: 1px solid rgba(181,68,63,.18);
    color: var(--red-dark);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;
}
.shop-login-banner i { width: 22px; height: 22px; flex-shrink: 0; }
.shop-login-banner a { margin-left: auto; text-decoration: underline; white-space: nowrap; }

/* ---------- Grade de produtos ---------- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Grade de 5 colunas no desktop (seções da home e página de categoria) */
.shop-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Título de seção em destaque (com barra vermelha à esquerda) */
.shop-section-title-big {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 34px 2px 16px;
    padding-left: 14px;
    position: relative;
    line-height: 1.2;
}
.shop-section-title-big::before {
    content: '';
    position: absolute;
    left: 0; top: 3px; bottom: 3px;
    width: 5px;
    border-radius: 3px;
    background: var(--red);
}

/* Botão de destaque "Ver mais" abaixo de cada seção */
.shop-section-more {
    display: flex;
    justify-content: center;
    margin: 22px 0 10px;
}
.shop-section-more .btn {
    min-width: 280px;
    box-shadow: var(--shadow);
}
.shop-section-more .btn i { transition: transform .15s ease; }
.shop-section-more .btn:hover i { transform: translateX(3px); }

/* Cabeçalho de seção com "Ver mais" */
.shop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 26px 2px 14px;
}
.shop-section-head h2 { font-size: 19px; font-weight: 800; margin: 0; }
.shop-section-head .ver-mais {
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.shop-section-head .ver-mais:hover { color: var(--red-dark); }
.shop-section-head .ver-mais i { width: 16px; height: 16px; }

/* Paginação */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 8px;
}
.shop-pagination-info { font-weight: 700; color: var(--ink-2); }
.product-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s, transform .08s;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb .noimg { color: var(--line); width: 48px; height: 48px; }
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.badge-stock { background: var(--green-soft); color: #1f7a38; }
.badge-nostock { background: rgba(0,0,0,.55); color: #fff; }
.badge-combo { background: var(--red); color: #fff; letter-spacing: .03em; }

.product-body { padding: 12px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-name {
    font-size: 12px; /* celular */
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
}
.product-price { font-size: 18px; font-weight: 800; color: var(--red); margin-top: auto; }
.product-price small { font-size: 12px; font-weight: 600; color: var(--ink-3); }
.product-price-hidden { font-size: 13px; color: var(--ink-3); font-weight: 600; margin-top: auto; }

.product-add {
    margin-top: 2px;
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: 1.5px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.product-add:hover { background: var(--bg); }
.product-add:disabled { background: #d8d8db; color: #8a8a8e; cursor: not-allowed; }
.product-add i { width: 17px; height: 17px; }

/* ---------- Detalhe do produto ---------- */
.product-detail {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}
.product-detail-img { aspect-ratio: 1/1; background: #faf7f7; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-body { padding: 20px; }
.product-detail-body h1 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.product-detail-sku { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; }
.product-detail-price { font-size: 30px; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.product-detail-desc { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin-bottom: 20px; white-space: pre-line; }
.product-detail-desc h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); margin-bottom: 6px; }

/* ---------- Seletor de quantidade ---------- */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
}
.qty-control button {
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    font-size: 22px;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-control button:active { background: var(--bg); }
.qty-control input {
    width: 48px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-detail-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ---------- Carrinho ---------- */
.cart-layout { display: grid; gap: 16px; }
.cart-items { display: flex; flex-direction: column; gap: 10px; }
.cart-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
}
.cart-item-img {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    background: #faf7f7;
    object-fit: cover;
}
.cart-item-info { min-width: 0; }
.cart-item-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cart-item-price { color: var(--ink-3); font-size: 13px; margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-item-subtotal { font-weight: 800; color: var(--red); font-size: 16px; white-space: nowrap; }
.cart-remove { background: none; border: none; color: var(--ink-3); display: flex; align-items: center; gap: 4px; font-size: 13px; padding: 6px; }
.cart-remove:hover { color: var(--red); }
.cart-remove i { width: 16px; height: 16px; }

.cart-summary {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    position: sticky;
    top: 76px;
    height: fit-content;
}
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--ink-2); padding: 6px 0; }
.summary-row.total { font-size: 20px; font-weight: 800; color: var(--ink); border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }
.summary-row.total span:last-child { color: var(--red); }
.summary-muted { color: var(--ink-3); font-size: 13px; }

/* ---------- Estado vazio ---------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--ink-3);
}
.empty-state i { width: 56px; height: 56px; color: var(--line); margin: 0 auto 14px; }
.empty-state p { font-size: 16px; margin-bottom: 18px; }

/* ---------- Formulários / Cartões ---------- */
.shop-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}
.shop-card h2 { font-size: 18px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.shop-card h2 i { width: 20px; height: 20px; color: var(--red); }

.auth-wrap { max-width: 440px; margin: 24px auto; }
.auth-wrap .shop-logo-center { text-align: center; margin-bottom: 24px; }
.auth-wrap .shop-logo-center img { width: auto; height: 76px; max-width: 100%; margin: 0 auto 12px; object-fit: contain; }
.auth-wrap h1 { text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.auth-alt { text-align: center; margin-top: 18px; color: var(--ink-2); font-size: 14px; }
.auth-alt a { color: var(--red); font-weight: 700; }

.form-group { margin-bottom: 14px; }
.form-row { display: grid; gap: 12px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form-label .req { color: var(--red); }
.form-control {
    width: 100%;
    height: 50px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-size: 16px; /* >=16px evita zoom no iOS */
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .15s;
}
textarea.form-control { height: auto; padding: 12px 14px; resize: vertical; }
.form-control:focus { border-color: var(--red-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; gap: 16px; }
.address-display { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.address-display strong { color: var(--ink); }
#card-container { margin: 10px 0 4px; min-height: 90px; }
.sq-note { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.sq-note i { width: 14px; height: 14px; }

/* ---------- Pedidos / Conta ---------- */
.order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.order-row:last-child { border-bottom: none; }
.order-meta { font-size: 13px; color: var(--ink-3); }
.order-id { font-weight: 700; font-size: 15px; }
.order-total { font-weight: 800; color: var(--red); }
.status-pill { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.status-processando { background: rgba(176,106,0,.12); color: var(--amber); }
.status-concluido { background: var(--green-soft); color: #1f7a38; }
.status-cancelado { background: rgba(181,68,63,.1); color: var(--red-dark); }

.success-box { text-align: center; max-width: 480px; margin: 40px auto; }
.success-box .success-icon {
    width: 84px; height: 84px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.success-box .success-icon i { width: 44px; height: 44px; }
.success-box h1 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.success-box p { color: var(--ink-2); margin-bottom: 8px; }
.success-order { font-size: 18px; font-weight: 800; color: var(--red); margin: 14px 0 24px; }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-3); font-size: 14px; margin-bottom: 14px; }
.back-link:hover { color: var(--red); }
.back-link i { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.shop-footer { background: #fff; border-top: 1px solid var(--line); margin-top: 40px; }
.shop-footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px 16px; text-align: center; }
.shop-footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; color: var(--red); margin-bottom: 12px; }
.shop-footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.shop-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 14px; }
.shop-footer-nav a { color: var(--ink-2); font-size: 14px; }
.shop-footer-nav a:hover { color: var(--red); }
.shop-footer-copy { color: var(--ink-3); font-size: 13px; }

/* ---------- Bottom nav (mobile) ---------- */
.shop-bottomnav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid var(--line);
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.shop-bottomnav a {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 0;
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 600;
}
.shop-bottomnav a:hover { color: var(--red); }
.shop-bottomnav i { width: 22px; height: 22px; }
.shop-bottomnav-cart .shop-bottomnav-badge { top: 4px; right: 50%; margin-right: -22px; }

/* No celular/tablet (com bottom nav), esconde os ícones de Entrar e Carrinho
   do cabeçalho — eles já estão no rodapé. Mantém o seletor de idioma. */
@media (max-width: 899px) {
    .shop-header-actions .shop-icon-btn { display: none; }
}

/* ============================================================
   Tablet / Desktop
   ============================================================ */
@media (min-width: 600px) {
    .shop-logo .logo-mobile { display: none; }
    .shop-logo .logo-desktop { display: block; height: 46px; width: auto; }
    .shop-icon-label { display: block; }
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .shop-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product-name { font-size: 14px; min-height: 38px; }
    .product-detail { display: grid; grid-template-columns: 1fr 1fr; }
    .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
    .form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 900px) {
    body { padding-bottom: 0; }
    .shop-bottomnav { display: none; }
    .shop-main { padding: 24px 16px; }
    .shop-grid { grid-template-columns: repeat(4, 1fr); }
    .shop-grid-5 { grid-template-columns: repeat(5, 1fr); }
    .cart-layout { grid-template-columns: 1fr 340px; align-items: start; }
    .checkout-grid { grid-template-columns: 1fr 360px; align-items: start; }
    .shop-hero { padding: 40px 32px; }
    .shop-hero h1 { font-size: 30px; }
}
