:root {
    --store-ink: #0f172a;
    --store-muted: #64748b;
    --store-line: #e2e8f0;
    --store-soft: #f8fafc;
    --store-accent: #10b981;
    --store-accent-dark: #047857;
    --store-blue: #2563eb;
    --store-radius: 18px;
    --store-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.storefront-body {
    margin: 0;
    color: var(--store-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.store-shell {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.store-announcement {
    color: #dbeafe;
    background: var(--store-ink);
    font-size: .76rem;
}

.store-announcement-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.store-announcement a {
    color: #e2e8f0;
    text-decoration: none;
}

.store-announcement a:hover { color: #fff; }

.store-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--store-line);
    backdrop-filter: blur(16px);
}

.store-header-main {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.store-brand {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--store-ink);
    text-decoration: none;
}

.store-brand-logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--store-line);
    border-radius: 15px;
}

.store-brand-logo img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain;
}

.store-brand-copy { min-width: 0; }
.store-brand-copy strong,
.store-brand-copy small { display: block; }
.store-brand-copy strong { max-width: 180px; overflow: hidden; font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.store-brand-copy small { margin-top: 2px; color: var(--store-muted); font-size: .7rem; }

.store-search {
    height: 48px;
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
    background: var(--store-soft);
    border: 1px solid var(--store-line);
    border-radius: 14px;
}

.store-search > i { margin-left: 16px; color: #94a3b8; }
.store-search input { min-width: 0; flex: 1; height: 100%; padding: 0 12px; background: transparent; border: 0; outline: 0; font-size: .84rem; }
.store-search button { height: 100%; padding: 0 22px; color: #fff; background: var(--store-ink); border: 0; font-size: .78rem; font-weight: 700; }

.store-header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.store-contact-button { display: flex; align-items: center; gap: 10px; color: var(--store-ink); text-decoration: none; }
.store-contact-button > i { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--store-accent); border-radius: 13px; font-size: 1.1rem; }
.store-contact-button span,
.store-contact-button small { display: block; }
.store-contact-button span { font-size: .77rem; font-weight: 750; }
.store-contact-button small { color: var(--store-muted); font-size: .62rem; font-weight: 500; }
.store-menu-button { width: 44px; height: 44px; display: grid; place-items: center; background: #fff; border: 1px solid var(--store-line); border-radius: 12px; font-size: 1.35rem; }

.store-navigation-wrap { border-top: 1px solid #f1f5f9; }
.store-navigation { min-height: 48px; align-items: center; }
.store-nav-links { display: flex; align-items: center; gap: 2px; }
.store-nav-links > a,
.store-nav-dropdown {
    display: inline-flex;
    align-items: center;
    min-height: 47px;
    padding: 0 13px;
    color: #475569;
    background: transparent;
    border: 0;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 650;
    white-space: nowrap;
}
.store-nav-links > a:hover,
.store-nav-links > a.active,
.store-nav-dropdown:hover { color: var(--store-accent-dark); }
.store-nav-links > a.active { box-shadow: inset 0 -2px var(--store-accent); }
.store-dropdown-menu { max-height: 360px; overflow-y: auto; border-color: var(--store-line); border-radius: 12px; box-shadow: var(--store-shadow); }
.store-dropdown-menu .dropdown-item { padding: 9px 15px; font-size: .76rem; }

.store-section { padding: 76px 0; }
.store-section-soft { background: var(--store-soft); }
.store-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.store-eyebrow { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 8px; color: var(--store-accent-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-section-heading h1,
.store-section-heading h2 { margin: 0; font-weight: 800; letter-spacing: -.035em; }
.store-section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.store-section-heading p { max-width: 620px; margin: 8px 0 0; color: var(--store-muted); font-size: .88rem; }
.store-section-link { display: inline-flex; align-items: center; gap: 7px; color: var(--store-ink); text-decoration: none; font-size: .78rem; font-weight: 750; white-space: nowrap; }
.store-section-link:hover { color: var(--store-accent-dark); }

.store-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 52%, #ecfdf5 100%); }
.store-hero::before,
.store-hero::after { content: ""; position: absolute; border-radius: 999px; filter: blur(4px); }
.store-hero::before { width: 360px; height: 360px; top: -220px; left: -100px; background: rgba(37, 99, 235, .11); }
.store-hero::after { width: 420px; height: 420px; right: -180px; bottom: -260px; background: rgba(16, 185, 129, .12); }
.store-hero-inner { position: relative; z-index: 1; min-height: 580px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-block: 70px; }
.store-hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; color: #1e40af; background: rgba(255,255,255,.78); border: 1px solid #bfdbfe; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.store-hero h1 { max-width: 680px; margin: 18px 0; font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 850; letter-spacing: -.065em; line-height: .98; }
.store-hero h1 span { color: var(--store-accent-dark); }
.store-hero-copy > p { max-width: 590px; margin: 0; color: #475569; font-size: clamp(.95rem, 1.4vw, 1.12rem); line-height: 1.7; }
.store-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.store-primary-button,
.store-secondary-button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 21px; border-radius: 13px; text-decoration: none; font-size: .8rem; font-weight: 750; }
.store-primary-button { color: #fff; background: var(--store-ink); box-shadow: 0 12px 25px rgba(15,23,42,.16); }
.store-primary-button:hover { color: #fff; background: #1e293b; transform: translateY(-1px); }
.store-secondary-button { color: var(--store-ink); background: #fff; border: 1px solid var(--store-line); }
.store-secondary-button:hover { color: var(--store-accent-dark); border-color: #a7f3d0; }
.store-hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #475569; font-size: .72rem; }
.store-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.store-hero-trust i { color: var(--store-accent-dark); }

.store-hero-products { position: relative; min-height: 420px; }
.store-hero-product { position: absolute; overflow: hidden; background: #fff; border: 1px solid rgba(226,232,240,.9); border-radius: 24px; box-shadow: 0 28px 70px rgba(15,23,42,.14); }
.store-hero-product img { width: 100%; height: 100%; padding: 15px; object-fit: contain; }
.store-hero-product.primary { width: 64%; height: 75%; right: 4%; top: 3%; z-index: 2; }
.store-hero-product.secondary { width: 43%; height: 48%; left: 0; bottom: 0; z-index: 3; }
.store-hero-product.tertiary { width: 35%; height: 36%; right: 0; bottom: -2%; z-index: 4; }
.store-hero-badge { position: absolute; left: 19%; top: 4%; z-index: 5; padding: 10px 13px; color: #065f46; background: rgba(255,255,255,.95); border: 1px solid #a7f3d0; border-radius: 13px; box-shadow: 0 10px 25px rgba(15,23,42,.08); font-size: .7rem; font-weight: 800; }

/* HERO administrable: slider de banners */
.store-banner-hero {
    overflow: hidden;
    background: #eef2f7;
    border-bottom: 1px solid var(--store-line);
}

.store-banner-hero .carousel,
.store-banner-hero .carousel-inner,
.store-banner-hero .carousel-item {
    width: 100%;
}

.store-banner-link {
    display: block;
    width: 100%;
}

.store-banner-image {
    width: 100%;
    height: clamp(280px, 33.85vw, 650px);
    display: block;
    object-fit: cover;
    object-position: center;
}

.store-banner-control {
    width: clamp(54px, 7vw, 110px);
    opacity: 1;
}

.store-banner-arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
    backdrop-filter: blur(6px);
    font-size: 1.25rem;
    transition: transform .18s ease, background .18s ease;
}

.store-banner-control:hover .store-banner-arrow {
    background: rgba(15, 23, 42, .78);
    transform: scale(1.06);
}

.store-banner-indicators {
    gap: 6px;
    margin-bottom: 14px;
}

.store-banner-indicators [data-bs-target] {
    width: 24px;
    height: 5px;
    margin: 0;
    background: rgba(255, 255, 255, .8);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 1px 6px rgba(15, 23, 42, .2);
}

.store-benefits { position: relative; z-index: 4; margin-top: -28px; }
.store-benefits-inner { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--store-line); border-radius: 18px; box-shadow: var(--store-shadow); }
.store-benefit { display: flex; align-items: center; gap: 13px; padding: 22px 25px; }
.store-benefit + .store-benefit { border-left: 1px solid var(--store-line); }
.store-benefit i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--store-accent-dark); background: #ecfdf5; border-radius: 12px; }
.store-benefit strong,
.store-benefit small { display: block; }
.store-benefit strong { font-size: .78rem; }
.store-benefit small { margin-top: 3px; color: var(--store-muted); font-size: .66rem; }

.store-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.store-category-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; color: var(--store-ink); background: #fff; border: 1px solid var(--store-line); border-radius: var(--store-radius); text-decoration: none; transition: .2s ease; }
.store-category-card:hover { color: var(--store-ink); border-color: #a7f3d0; box-shadow: var(--store-shadow); transform: translateY(-3px); }
.store-category-icon { width: 43px; height: 43px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--store-ink), #334155); border-radius: 13px; font-weight: 800; }
.store-category-card strong { display: block; font-size: .86rem; }
.store-category-card small { color: var(--store-muted); font-size: .67rem; }
.store-category-card > i { align-self: flex-end; color: #94a3b8; }

.store-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.store-product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--store-line); border-radius: var(--store-radius); transition: .2s ease; }
.store-product-card:hover { border-color: #cbd5e1; box-shadow: var(--store-shadow); transform: translateY(-3px); }
.store-product-image { position: relative; aspect-ratio: 1 / .82; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fff, #f8fafc); }
.store-product-image img { width: 100%; height: 100%; padding: 18px; object-fit: contain; transition: transform .3s ease; }
.store-product-card:hover .store-product-image img { transform: scale(1.035); }
.store-product-badge { position: absolute; left: 12px; top: 12px; padding: 5px 8px; color: #065f46; background: #d1fae5; border-radius: 999px; font-size: .57rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.store-product-content { padding: 16px; }
.store-product-category { display: block; margin-bottom: 6px; color: var(--store-muted); font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.store-product-title { min-height: 41px; display: -webkit-box; overflow: hidden; color: var(--store-ink); text-decoration: none; font-size: .82rem; font-weight: 750; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.store-product-title:hover { color: var(--store-accent-dark); }
.store-product-footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: 15px; }
.store-product-price small { display: block; margin-bottom: 2px; color: var(--store-muted); font-size: .57rem; }
.store-product-price strong { font-size: 1.08rem; letter-spacing: -.025em; }
.store-product-view { width: 36px; height: 36px; display: grid; place-items: center; color: var(--store-ink); background: var(--store-soft); border: 1px solid var(--store-line); border-radius: 10px; text-decoration: none; }
.store-product-view:hover { color: #fff; background: var(--store-ink); }

.store-cta { padding: 55px; color: #fff; background: linear-gradient(135deg, var(--store-ink), #1e293b); border-radius: 28px; box-shadow: 0 30px 70px rgba(15,23,42,.18); }
.store-cta h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.1rem); font-weight: 820; letter-spacing: -.05em; }
.store-cta p { max-width: 650px; margin: 12px 0 0; color: #cbd5e1; }
.store-cta .store-secondary-button { margin-top: 24px; }

.store-page-hero { padding: 58px 0 46px; background: linear-gradient(135deg, #f8fafc, #eff6ff); border-bottom: 1px solid var(--store-line); }
.store-breadcrumb { margin-bottom: 10px; color: var(--store-muted); font-size: .7rem; }
.store-breadcrumb a { color: inherit; text-decoration: none; }
.store-page-hero h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 820; letter-spacing: -.05em; }
.store-page-hero p { max-width: 620px; margin: 10px 0 0; color: var(--store-muted); }

.store-catalog-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 15px; margin-bottom: 20px; }
.store-filter-search { min-height: 47px; display: flex; align-items: center; overflow: hidden; background: #fff; border: 1px solid var(--store-line); border-radius: 13px; }
.store-filter-search i { margin-left: 15px; color: #94a3b8; }
.store-filter-search input { min-width: 0; flex: 1; height: 45px; padding: 0 12px; border: 0; outline: 0; font-size: .8rem; }
.store-filter-search button { align-self: stretch; padding: 0 18px; color: #fff; background: var(--store-ink); border: 0; font-size: .75rem; font-weight: 750; }
.store-sort { min-height: 47px; padding: 0 35px 0 13px; border-color: var(--store-line); border-radius: 13px; font-size: .76rem; }
.store-category-filters { display: flex; gap: 8px; margin-bottom: 27px; padding-bottom: 6px; overflow-x: auto; scrollbar-width: none; }
.store-category-filters::-webkit-scrollbar { display: none; }
.store-category-filter { display: inline-flex; align-items: center; min-height: 35px; padding: 0 13px; color: #475569; background: #fff; border: 1px solid var(--store-line); border-radius: 999px; text-decoration: none; font-size: .68rem; font-weight: 700; white-space: nowrap; }
.store-category-filter:hover,
.store-category-filter.active { color: #fff; background: var(--store-ink); border-color: var(--store-ink); }
.store-results-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--store-muted); font-size: .72rem; }
.store-empty { padding: 70px 20px; color: var(--store-muted); text-align: center; background: var(--store-soft); border: 1px dashed #cbd5e1; border-radius: var(--store-radius); }
.store-empty i { display: block; margin-bottom: 12px; font-size: 2rem; }
.store-pagination .pagination { gap: 5px; justify-content: center; margin: 36px 0 0; }
.store-pagination .page-link { min-width: 38px; height: 38px; display: grid; place-items: center; color: var(--store-ink); border-color: var(--store-line); border-radius: 10px !important; font-size: .72rem; }
.store-pagination .active > .page-link { color: #fff; background: var(--store-ink); border-color: var(--store-ink); }

.store-product-detail { padding: 65px 0 80px; }
.store-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr); gap: 65px; align-items: start; }
.store-detail-image { position: sticky; top: 165px; aspect-ratio: 1 / .82; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fff, #f8fafc); border: 1px solid var(--store-line); border-radius: 26px; }
.store-detail-image img { width: 100%; height: 100%; padding: 35px; object-fit: contain; }
.store-detail-info .store-product-category { margin-bottom: 10px; }
.store-detail-info h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 830; letter-spacing: -.055em; line-height: 1.05; }
.store-detail-price { margin: 24px 0 8px; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 850; letter-spacing: -.045em; }
.store-detail-availability { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #065f46; background: #d1fae5; border-radius: 999px; font-size: .67rem; font-weight: 750; }
.store-detail-description { margin-top: 28px; padding-top: 25px; color: #475569; border-top: 1px solid var(--store-line); line-height: 1.75; }
.store-detail-data { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.store-detail-data div { padding: 13px; background: var(--store-soft); border: 1px solid var(--store-line); border-radius: 12px; }
.store-detail-data small,
.store-detail-data strong { display: block; }
.store-detail-data small { color: var(--store-muted); font-size: .58rem; text-transform: uppercase; }
.store-detail-data strong { margin-top: 4px; font-size: .72rem; }
.store-detail-actions { display: grid; gap: 10px; margin-top: 25px; }
.store-whatsapp-button { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; background: #16a34a; border-radius: 13px; text-decoration: none; font-size: .8rem; font-weight: 800; }
.store-whatsapp-button:hover { color: #fff; background: #15803d; }
.store-back-button { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--store-ink); background: #fff; border: 1px solid var(--store-line); border-radius: 12px; text-decoration: none; font-size: .75rem; font-weight: 700; }

.store-content-card { padding: 34px; background: #fff; border: 1px solid var(--store-line); border-radius: 20px; box-shadow: var(--store-shadow); }
.store-content-card h1 { font-weight: 820; letter-spacing: -.04em; }
.store-content-card .form-control { min-height: 45px; border-color: var(--store-line); border-radius: 11px; }

.store-whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1020; width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: #22c55e; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 12px 30px rgba(22,163,74,.32); text-decoration: none; font-size: 1.35rem; }
.store-whatsapp-float:hover { color: #fff; transform: translateY(-2px); }

.store-footer { padding: 62px 0 22px; color: #cbd5e1; background: #0b1220; }
.store-footer-brand { display: flex; align-items: center; gap: 15px; }
.store-footer-brand img { width: 68px; height: 68px; padding: 7px; object-fit: contain; background: #fff; border-radius: 15px; }
.store-footer-brand strong,
.store-footer-brand span { display: block; }
.store-footer-brand strong { color: #fff; font-size: 1rem; }
.store-footer-brand span { max-width: 380px; margin-top: 5px; color: #94a3b8; font-size: .75rem; }
.store-footer h2 { margin: 0 0 14px; color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.store-footer .col-6 > a,
.store-footer .col-6 > span,
.store-footer .col-lg-4 > a,
.store-footer .col-lg-4 > span { display: block; margin: 8px 0; color: #94a3b8; text-decoration: none; font-size: .72rem; }
.store-footer a:hover { color: #fff !important; }
.store-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; color: #64748b; border-top: 1px solid #1e293b; font-size: .65rem; }

@media (max-width: 1199px) {
    .store-header-main { gap: 22px; }
    .store-brand { min-width: 195px; }
    .store-product-grid { grid-template-columns: repeat(3, 1fr); }
    .store-hero-inner { gap: 35px; }
}

@media (max-width: 991px) {
    .store-header-main { min-height: 74px; }
    .store-brand-logo { width: 49px; height: 49px; }
    .store-navigation { padding-block: 12px 16px; }
    .store-nav-links { align-items: stretch; flex-direction: column; }
    .store-nav-links > a,
    .store-nav-dropdown { min-height: 38px; padding: 0 4px; }
    .store-nav-links > a.active { box-shadow: none; color: var(--store-accent-dark); }
    .store-search-mobile { margin-top: 12px; }
    .store-hero-inner { min-height: auto; grid-template-columns: 1fr; padding-block: 60px 80px; }
    .store-hero-copy { max-width: 700px; }
    .store-hero-products { width: min(620px, 100%); margin-inline: auto; }
    .store-category-grid { grid-template-columns: repeat(2, 1fr); }
    .store-product-grid { grid-template-columns: repeat(2, 1fr); }
    .store-detail-grid { grid-template-columns: 1fr; gap: 35px; }
    .store-detail-image { position: static; }
}

@media (max-width: 767px) {
    .store-shell { width: min(100% - 26px, 1320px); }
    .store-announcement-inner { justify-content: center; text-align: center; }
    .store-brand { min-width: 0; }
    .store-brand-copy strong { max-width: 135px; font-size: .86rem; }
    .store-section { padding: 54px 0; }
    .store-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 22px; }
    .store-hero-inner { padding-block: 48px 72px; }
    .store-hero h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
    .store-hero-products { min-height: 340px; }
    .store-benefits { margin-top: -20px; }
    .store-benefits-inner { grid-template-columns: 1fr; }
    .store-benefit { padding: 17px 20px; }
    .store-benefit + .store-benefit { border-top: 1px solid var(--store-line); border-left: 0; }
    .store-category-grid { gap: 10px; }
    .store-category-card { min-height: 135px; padding: 16px; }
    .store-product-grid { gap: 10px; }
    .store-product-content { padding: 12px; }
    .store-product-title { min-height: 38px; font-size: .75rem; }
    .store-product-price strong { font-size: .91rem; }
    .store-product-view { width: 32px; height: 32px; }
    .store-cta { padding: 34px 24px; border-radius: 21px; }
    .store-page-hero { padding: 42px 0 34px; }
    .store-catalog-toolbar { grid-template-columns: 1fr; }
    .store-detail-grid { grid-template-columns: minmax(0, 1fr); }
    .store-detail-image { border-radius: 19px; }
    .store-detail-image img { padding: 22px; }
    .store-content-card { padding: 22px; }
    .store-footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
    .store-brand-copy small { display: none; }
    .store-hero-product.primary { width: 70%; }
    .store-hero-product.secondary { width: 48%; }
    .store-product-image img { padding: 11px; }
}
