@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --storefront-red: #c8161f;
    --storefront-red-dark: #971118;
    --storefront-red-soft: #f4c2c5;
    --storefront-blue: #1d3f9c;
    --storefront-black: #111111;
    --storefront-cream: #faf7f3;
    --storefront-line: rgba(17, 17, 17, 0.1);
    --storefront-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background: #fffdfa;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow,
.brand-kicker,
.storefront-brand-tagline,
.storefront-tag {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.12em;
}

.site-header-storefront {
    background: linear-gradient(180deg, #090909 0%, #151213 52%, #110d0e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.storefront-topbar {
    padding: 0.75rem 0;
    background: linear-gradient(90deg, #22070a, #471015, #6f121b);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.storefront-topbar-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.storefront-topbar-track::-webkit-scrollbar {
    display: none;
}

.storefront-topbar-item {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.storefront-topbar-icon,
.storefront-support-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.storefront-topbar-icon svg,
.storefront-support-icon svg,
.storefront-search-icon svg,
.storefront-icon-link span svg,
.storefront-whatsapp svg {
    width: 1.2rem;
    height: 1.2rem;
}

.storefront-topbar-item strong,
.storefront-support-item strong {
    display: block;
    font-size: 0.92rem;
}

.storefront-topbar-item span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.storefront-header-main {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.storefront-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.storefront-brand-logo {
    width: 94px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(17, 17, 17, 0.12));
}

.storefront-brand-copy {
    display: flex;
    flex-direction: column;
}

.storefront-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 800;
    color: #f8f1e8;
}

.storefront-brand-tagline {
    font-size: 0.84rem;
    text-transform: uppercase;
    color: rgba(238, 225, 210, 0.84);
    font-weight: 700;
}

.storefront-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.storefront-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    min-width: 0;
    color: #fff7ef;
}

.storefront-search input::placeholder {
    color: rgba(255, 247, 239, 0.62);
}

.storefront-search button {
    border: 0;
    border-radius: 12px;
    background: var(--storefront-red);
    color: #fff;
    padding: 0.8rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.storefront-search-icon {
    color: #f4ece2;
    display: inline-grid;
    place-items: center;
}

.storefront-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    background: #161112;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
    padding: 0.6rem;
    z-index: 25;
}

.storefront-search-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.8rem;
    padding: 0.55rem;
    border-radius: 14px;
}

.storefront-search-item:hover {
    background: rgba(200, 22, 31, 0.14);
}

.storefront-search-item img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.storefront-search-item strong {
    display: block;
    font-size: 0.94rem;
    color: #fff7ef;
}

.storefront-search-item span {
    display: block;
    color: rgba(255, 247, 239, 0.68);
    font-size: 0.82rem;
}

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

.storefront-icon-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    min-width: 64px;
    padding: 0.65rem 0.55rem;
    border-radius: 14px;
    color: #fff7ef;
}

.storefront-icon-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.storefront-icon-link small {
    font-size: 0.72rem;
    color: rgba(255, 247, 239, 0.74);
}

.storefront-icon-link em,
.storefront-cart-link strong {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--storefront-red);
    color: #fff;
    font-style: normal;
    font-size: 0.72rem;
}

.storefront-cart-link strong {
    font-size: 0.68rem;
}

.storefront-b2b-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--storefront-red);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(200, 22, 31, 0.28);
}

.storefront-nav-shell {
    position: relative;
    z-index: 45;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.site-header-storefront.is-nav-hidden .storefront-nav-shell {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-0.7rem);
    border-top-color: transparent;
    pointer-events: none;
}

.storefront-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.85rem 0;
}

.storefront-nav > a,
.storefront-nav-item > a,
.storefront-mega-toggle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.03rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    color: #f8f1e8;
}

.storefront-nav > a:hover,
.storefront-nav-item > a:hover {
    color: #f4c2c5;
}

.storefront-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 32;
}

.storefront-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.95rem;
}

.storefront-mega-toggle {
    border: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: transparent;
    cursor: pointer;
    color: #f8f1e8;
    position: relative;
}

.storefront-mega-toggle::before {
    content: '+';
    font-size: 1.1rem;
}

.storefront-mega-toggle[aria-expanded="true"]::before {
    content: '-';
}

.storefront-mega-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.05rem);
    min-width: 420px;
    padding: 1rem;
    border-radius: 24px;
    background: #161112;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 80;
}

.storefront-nav-item:hover .storefront-mega-panel,
.storefront-nav-item.is-open .storefront-mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.storefront-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.storefront-mega-group h3 {
    margin: 0 0 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #f4c2c5;
}

.storefront-mega-group a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(255, 247, 239, 0.78);
}

.storefront-mega-group a:hover {
    color: #ffffff;
}

.storefront-nav-toggle {
    display: none;
    justify-self: end;
}

.site-header-storefront .nav-toggle span {
    background: #f8f1e8;
}

.page-hero-storefront .page-hero-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(135deg, #101010, #3c0f14 55%, #7e1622 100%);
    color: #fff;
}

.page-hero-b2b .page-hero-panel {
    background: linear-gradient(135deg, #111, #132953 65%, #c8161f);
}

.storefront-split-layout,
.storefront-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
}

.storefront-aside-list p {
    margin-bottom: 0.9rem;
}

.storefront-status-card {
    margin-top: 1.2rem;
}

.storefront-product-card,
.storefront-home-card,
.storefront-category-visual,
.storefront-editorial-panel,
.storefront-info-card,
.storefront-review-card,
.storefront-empty-review,
.storefront-guide-card,
.storefront-promo-card,
.storefront-dark-card {
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--storefront-shadow);
}

.storefront-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(200, 22, 31, 0.1);
    color: var(--storefront-red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.storefront-home-hero {
    padding: 2.4rem 0 3.5rem;
}

.storefront-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.storefront-hero-copy {
    padding: clamp(1.8rem, 4vw, 3.2rem);
    min-height: 560px;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 204, 178, 0.2), transparent 28%),
        linear-gradient(135deg, #111 0%, #26080c 45%, #8f1420 100%);
}

.storefront-hero-copy h1,
.storefront-newsletter-card h2,
.storefront-dark-card h2,
.storefront-editorial-panel h2,
.storefront-section-title h2,
.storefront-cta-box h2,
.storefront-product-hero h1,
.storefront-category-copy h1 {
    margin: 0.4rem 0 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
}

.storefront-hero-copy h1 {
    font-size: clamp(3rem, 8vw, 5.7rem);
    max-width: 10ch;
}

.storefront-hero-copy p,
.storefront-dark-card p,
.storefront-editorial-panel p {
    color: rgba(255, 255, 255, 0.84);
}

.storefront-hero-tags,
.storefront-mini-badges,
.storefront-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.storefront-tag,
.storefront-mini-badges span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.storefront-hero-actions,
.storefront-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.storefront-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.storefront-stat-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.storefront-stat-card strong,
.storefront-guide-spec strong {
    display: block;
    margin-bottom: 0.35rem;
}

.storefront-hero-side {
    display: grid;
    gap: 1rem;
}

.storefront-dark-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, #1a1a1a, #111);
    color: #fff;
}

.storefront-dark-card img,
.storefront-category-visual img,
.storefront-editorial-image picture img,
.storefront-product-hero-gallery img,
.storefront-product-gallery-thumbs img,
.storefront-product-card img,
.storefront-search-item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.storefront-dark-card img {
    border-radius: 20px;
    aspect-ratio: 1 / 1;
}

.storefront-section {
    padding: 4rem 0;
}

.storefront-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.storefront-section-title h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.storefront-section-title p {
    max-width: 40rem;
    color: #5f5f5f;
}

.storefront-benefits-bar {
    background: var(--storefront-red);
    color: #fff;
    border-radius: 30px;
    padding: 1rem 1.2rem;
}

.storefront-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.storefront-benefit {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.storefront-benefit .storefront-support-icon {
    border-color: rgba(255, 255, 255, 0.2);
}

.storefront-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.storefront-product-card {
    overflow: hidden;
}

.storefront-product-card .product-card-media {
    position: relative;
    display: block;
}

.storefront-product-card .product-card-media img {
    height: 270px;
}

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

.storefront-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    margin: 0.7rem 0 1rem;
    color: #626262;
    font-size: 0.84rem;
}

.storefront-rating-empty {
    color: #777;
    font-size: 0.84rem;
}

.storefront-price-stack {
    display: grid;
    gap: 0.15rem;
}

.storefront-price-compare {
    color: #777;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.storefront-visual-grid,
.storefront-use-grid,
.storefront-guide-grid,
.storefront-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.storefront-category-showcase-header {
    align-items: stretch;
    margin-bottom: 1.6rem;
}

.storefront-category-showcase-copy {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
}

.storefront-category-showcase-copy p {
    margin: 0;
    color: #5f5f5f;
}

.storefront-category-showcase-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.storefront-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.storefront-carousel-button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: #161112;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.storefront-carousel-button:hover {
    transform: translateY(-1px);
    background: var(--storefront-red);
    color: #fff;
}

.storefront-category-carousel {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
}

.storefront-category-carousel::-webkit-scrollbar {
    display: none;
}

.storefront-category-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    width: 100%;
    min-width: 100%;
    justify-content: flex-start;
}

.storefront-category-slide {
    flex: 0 0 calc((100% - 3rem) / 4);
    max-width: calc((100% - 3rem) / 4);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
}

.storefront-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
}

.storefront-category-visual {
    overflow: hidden;
}

.storefront-category-visual img {
    height: 340px;
}

.storefront-category-visual-copy,
.storefront-info-card,
.storefront-guide-card,
.storefront-promo-card {
    padding: 1rem;
}

.storefront-category-visual-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 1.2rem 1rem 1.35rem;
}

.storefront-category-visual-copy p {
    margin: 0;
    line-height: 1.6;
}

.storefront-category-visual h3,
.storefront-info-card h3,
.storefront-guide-card h3,
.storefront-blog-card h3,
.storefront-product-summary h2 {
    margin: 0.25rem 0 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.storefront-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    gap: 1.2rem;
}

.storefront-editorial-panel,
.storefront-black-angus-grid {
    padding: 1.4rem;
}

.storefront-black-angus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.storefront-editorial-image picture img {
    border-radius: 22px;
    aspect-ratio: 0.85 / 1;
}

.storefront-editorial-product {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--storefront-shadow);
}

.storefront-editorial-product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.storefront-editorial-product-copy {
    padding: 1rem;
}

.storefront-editorial-product-copy h3 {
    margin: 0.35rem 0 0.45rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.storefront-editorial-product-copy p {
    margin: 0;
    color: #5d5d5d;
    font-weight: 700;
}

.storefront-dark-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #191919, #0f0f0f);
    color: #fff;
}

.storefront-dark-section .storefront-section-title p,
.storefront-dark-section .storefront-rating-empty,
.storefront-dark-section .price-note {
    color: rgba(255, 255, 255, 0.74);
}

.storefront-dark-section .storefront-product-card,
.storefront-dark-section .storefront-review-card,
.storefront-dark-section .storefront-empty-review {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.storefront-review-card,
.storefront-empty-review {
    padding: 1.4rem;
}

.storefront-newsletter-inner {
    position: relative;
    z-index: 1;
}

.storefront-footer-newsletter {
    position: relative;
    margin-top: 2rem;
    padding: 5rem 0;
    background:
        radial-gradient(circle at top left, rgba(200, 22, 31, 0.2), transparent 24%),
        radial-gradient(circle at bottom right, rgba(244, 194, 197, 0.18), transparent 22%),
        linear-gradient(135deg, #120d0e 0%, #2a1114 48%, #5b1219 100%);
}

.storefront-footer-overlay {
    position: absolute;
    inset: 0;
}

.storefront-newsletter-card {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    box-shadow: 0 20px 52px rgba(17, 17, 17, 0.18);
}

.storefront-newsletter-card h2 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.storefront-newsletter-form {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.storefront-checkbox {
    display: flex;
    align-items: start;
    gap: 0.6rem;
    text-align: left;
}

.storefront-support-strip {
    margin-bottom: 0;
    background: var(--storefront-red);
    color: #fff;
}

.storefront-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.storefront-support-item {
    display: flex;
    gap: 0.85rem;
    align-items: start;
}

.storefront-support-item p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.storefront-footer {
    margin-top: 0;
    background: #111;
    color: #f5f1ea;
    padding-top: 3rem;
}

.storefront-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 1.5rem;
}

.storefront-footer a {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(245, 241, 234, 0.82);
}

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

.storefront-brand-badge {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.storefront-brand-logo-footer {
    width: 82px;
    flex: 0 0 auto;
}

.storefront-brand-badge strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    color: #fff;
}

.storefront-brand-badge span {
    color: rgba(245, 241, 234, 0.72);
}

.storefront-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0 6rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.storefront-payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.storefront-payment-list span {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.storefront-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.26);
    z-index: 40;
}

.storefront-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 38;
    background: rgba(17, 17, 17, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.storefront-mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.6rem 0.4rem 0.55rem;
    color: #fff;
    font-size: 0.68rem;
}

.storefront-mobile-bar-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
}

.storefront-mobile-bar-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.storefront-mobile-bar a small {
    font-size: 0.68rem;
    color: inherit;
}

.storefront-mobile-bar-icon em {
    position: absolute;
    top: -0.35rem;
    right: -0.55rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.2rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--storefront-red);
    color: #fff;
    font-style: normal;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
}

.storefront-shop-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.5rem;
}

.storefront-filter-sidebar {
    position: sticky;
    top: 170px;
    align-self: start;
    padding: 1.2rem;
}

.storefront-filter-group + .storefront-filter-group {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--storefront-line);
}

.storefront-filter-group h3 {
    margin: 0 0 0.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.storefront-filter-options {
    display: grid;
    gap: 0.55rem;
}

.storefront-filter-check {
    display: block;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.storefront-filter-check:hover {
    background: rgba(200, 22, 31, 0.05);
}

.storefront-filter-check.is-active {
    background: rgba(200, 22, 31, 0.08);
    border-color: rgba(200, 22, 31, 0.16);
    color: var(--storefront-red);
    font-weight: 700;
}

.storefront-cta-box {
    padding: 1.8rem;
}

.storefront-cta-box h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.storefront-filter-check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #444;
}

.storefront-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.storefront-toolbar-count {
    color: #666;
}

.storefront-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.storefront-view-toggle {
    display: inline-flex;
    border: 1px solid var(--storefront-line);
    border-radius: 14px;
    overflow: hidden;
}

.storefront-view-toggle a {
    padding: 0.65rem 0.85rem;
    background: #fff;
    color: #444;
}

.storefront-view-toggle a.is-active {
    background: var(--storefront-red);
    color: #fff;
}

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

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

.storefront-product-list .storefront-product-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

.storefront-product-list .product-card-media img {
    height: 100%;
}

.storefront-pagination {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2rem;
}

.storefront-pagination a,
.storefront-pagination span {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--storefront-line);
    background: #fff;
}

.storefront-pagination .is-current {
    background: var(--storefront-red);
    color: #fff;
    border-color: var(--storefront-red);
}

.storefront-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1.4rem;
}

.storefront-product-hero-gallery,
.storefront-product-summary {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--storefront-shadow);
    overflow: hidden;
}

.storefront-product-hero-gallery {
    padding: 1rem;
}

.storefront-product-hero-gallery img {
    border-radius: 22px;
    aspect-ratio: 1 / 0.82;
}

.storefront-product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.storefront-product-gallery-thumbs img {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
}

.storefront-product-summary {
    padding: 1.35rem;
}

.storefront-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.84rem;
}

.storefront-breadcrumbs span::after {
    content: '/';
    margin-left: 0.5rem;
    color: #bbb;
}

.storefront-breadcrumbs span:last-child::after {
    display: none;
}

.storefront-product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 1rem 0;
}

.storefront-product-specs div,
.storefront-guide-spec {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.04);
}

.storefront-product-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 0.75fr;
    gap: 1.4rem;
}

.storefront-panel {
    padding: 1.35rem;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--storefront-shadow);
}

.storefront-panel h2,
.storefront-panel h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.storefront-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1200px) {
    .storefront-product-grid,
    .storefront-related-grid,
    .storefront-visual-grid,
    .storefront-use-grid,
    .storefront-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .storefront-header-main,
    .storefront-product-hero,
    .storefront-product-panels,
    .storefront-editorial-layout,
    .storefront-support-grid,
    .storefront-footer-grid,
    .storefront-split-layout,
    .storefront-shop-layout {
        grid-template-columns: 1fr;
    }

    .storefront-header-main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .storefront-brand {
        grid-column: 1 / 2;
    }

    .storefront-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .storefront-header-actions {
        justify-self: end;
    }

    .storefront-filter-sidebar {
        position: static;
    }

    .storefront-hero-shell,
    .storefront-benefits-grid,
    .storefront-hero-stats,
    .storefront-black-angus-grid,
    .storefront-guide-grid {
        grid-template-columns: 1fr;
    }

    .storefront-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .storefront-category-slide {
        flex-basis: calc((100% - 2rem) / 3);
        max-width: calc((100% - 2rem) / 3);
    }
}

@media (max-width: 860px) {
    .site-header-storefront.is-nav-hidden .storefront-nav-shell {
        overflow: visible;
        max-height: none;
        opacity: 1;
        transform: none;
        border-top-color: rgba(255, 255, 255, 0.08);
        pointer-events: auto;
    }

    .storefront-nav-toggle {
        display: flex;
    }

    .storefront-nav-shell:has(.storefront-nav.is-open) {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background: linear-gradient(180deg, #151213 0%, #110d0e 100%);
        padding-bottom: 2rem;
        z-index: 60;
    }

    body.storefront-nav-open {
        overflow: hidden;
    }

    .storefront-header-actions {
        gap: 0.2rem;
    }

    .storefront-icon-link small,
    .storefront-cart-link small {
        display: none;
    }

    .storefront-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0.4rem 0 1rem;
    }

    .storefront-nav.is-open {
        display: flex;
    }

    .storefront-nav > a,
    .storefront-nav-item {
        padding: 0.25rem 0;
    }

    .storefront-nav-item {
        flex-wrap: wrap;
    }

    .storefront-nav-item::after {
        display: none;
    }

    .storefront-mega-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.6rem;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .storefront-nav-item.is-open .storefront-mega-panel {
        display: block;
    }

    .storefront-mega-grid {
        grid-template-columns: 1fr;
    }

    .storefront-product-list .storefront-product-card {
        grid-template-columns: 1fr;
    }

    .storefront-category-showcase-actions {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .storefront-brand-logo {
        width: 78px;
    }

    .storefront-brand-name {
        font-size: 1.45rem;
    }

    .storefront-header-actions {
        display: none;
    }

    .storefront-search {
        display: none;
    }

    .storefront-header-main {
        grid-template-columns: 1fr auto;
    }

    .storefront-product-grid,
    .storefront-visual-grid,
    .storefront-use-grid,
    .storefront-blog-grid,
    .storefront-related-grid {
        grid-template-columns: 1fr;
    }

    .storefront-mobile-bar {
        display: flex;
    }

    .storefront-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 6rem;
    }

    .storefront-whatsapp {
        bottom: 5.4rem;
    }

    .storefront-footer-newsletter {
        padding: 3rem 0;
    }

    .storefront-newsletter-card {
        padding: 1.35rem;
    }

    .storefront-category-slide {
        flex-basis: calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }

    .storefront-category-showcase-copy {
        max-width: none;
    }

    .storefront-category-showcase-actions {
        justify-content: space-between;
    }

    .storefront-carousel-button {
        width: 44px;
        height: 44px;
        font-size: 1.45rem;
    }
}
