/* ============================================================
   Energishop — Home Page Styles
   Prefix: esh-  |  Colors: #111 / #FFD100 / #FFF
   Section order: Hero > Categorias > Banner > Marcas > Produtos >
   Ver Todos > Novidades > Sobre > WhatsApp CTA > Blog > Cat Carousel
   ============================================================ */

/* ---- Tokens ---- */
:root {
    --esh-black: #111;
    --esh-yellow: #FFD100;
    --esh-white: #FFF;
    --esh-gray-50: #FAFAFA;
    --esh-gray-100: #F5F5F5;
    --esh-gray-200: #E5E5E5;
    --esh-gray-400: #A3A3A3;
    --esh-gray-600: #525252;
    --esh-gray-800: #262626;
    --esh-radius: 12px;
    --esh-radius-sm: 8px;
    --esh-shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --esh-shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --esh-shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --esh-transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Resets for Astra/Elementor leaks ---- */
.esh-section a { text-decoration: none; color: inherit; }
.esh-section img { max-width: 100%; height: auto; display: block; }

/* Force Astra container to be block on front page */
body.home .site-content > .ast-container,
body.home #content > .ast-container,
body.page-template-default.home .ast-container {
    display: block !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
body.home #primary {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}
body.home .site-content {
    padding-top: 0 !important;
}

/* ---- Container ---- */
.esh-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.esh-blog .esh-container,
.esh-novidades .esh-container {
    overflow: visible;
}

/* ---- Section ---- */
.esh-section {
    padding: 64px 0;
}
.esh-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800 !important;
    color: var(--esh-black);
    text-align: center;
    margin: 0 0 8px;
    line-height: 1.2;
}
.esh-section__title--left {
    text-align: left;
}
.esh-section__subtitle {
    font-size: 1rem;
    color: var(--esh-gray-600);
    text-align: center;
    margin: 0 0 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ---- Buttons ---- */
.esh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: var(--esh-transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}
.esh-btn--primary {
    background: var(--esh-yellow);
    color: var(--esh-black);
    border-color: var(--esh-yellow);
}
.esh-btn--primary:hover {
    background: var(--esh-black);
    color: var(--esh-yellow);
    border-color: var(--esh-black);
    transform: translateY(-2px);
    box-shadow: var(--esh-shadow-md);
}
.esh-btn--outline {
    background: transparent;
    color: var(--esh-black);
    border-color: var(--esh-black);
}
.esh-btn--outline:hover {
    background: var(--esh-black);
    color: var(--esh-yellow);
    transform: translateY(-2px);
    box-shadow: var(--esh-shadow-md);
}

/* ============================================================
   1. HERO SLIDER
   ============================================================ */
.esh-hero {
    position: relative;
    width: 100%;
    height: clamp(420px, 55vh, 600px);
    overflow: hidden;
    background: var(--esh-black);
}
.esh-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides — crossfade + subtle scale */
.esh-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transform: scale(1.04);
    transition: opacity 600ms ease, transform 600ms ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.esh-hero__slide--active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

/* Overlay — directional gradient: dark left, transparent right */
.esh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, .75) 0%,
        rgba(0, 0, 0, .4) 50%,
        rgba(0, 0, 0, .15) 100%
    );
}

/* Content — left-aligned */
.esh-hero__content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 550px;
    padding: 0 24px 0 clamp(80px, 8vw, 120px);
}
.esh-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 800 !important;
    color: var(--esh-white);
    margin: 0 0 14px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    letter-spacing: -0.02em;
}
.esh-hero__subtitle {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, .85);
    margin: 0 0 28px;
    line-height: 1.55;
    max-width: 460px;
}

/* CTA — pill, yellow → black on hover */
.esh-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--esh-yellow);
    color: var(--esh-black);
    font-weight: 800;
    font-size: .95rem;
    border-radius: 50px;
    border: 2px solid var(--esh-yellow);
    transition: var(--esh-transition);
    text-decoration: none;
    letter-spacing: .02em;
}
.esh-hero__cta:hover {
    background: var(--esh-black);
    color: var(--esh-yellow);
    border-color: var(--esh-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 209, 0, .35);
}

/* Arrows — glassmorphism circles */
.esh-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .15);
    color: var(--esh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--esh-transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    font-size: 0;
    line-height: 1;
}
.esh-hero__arrow svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.esh-hero__arrow:hover {
    background: var(--esh-yellow);
    color: var(--esh-black);
    border-color: var(--esh-yellow);
    transform: translateY(-50%) scale(1.08);
}
.esh-hero__arrow:active {
    transform: translateY(-50%) scale(.96);
}
.esh-hero__arrow--prev { left: 24px; }
.esh-hero__arrow--next { right: 24px; }

/* Dots — pill shape for active */
.esh-hero__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    align-items: center;
}
.esh-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: var(--esh-transition);
    padding: 0;
}
.esh-hero__dot--active {
    width: 24px;
    border-radius: 4px;
    background: var(--esh-yellow);
}

/* ============================================================
   2. CATEGORY CARDS
   ============================================================ */
.esh-cats {
    background: var(--esh-gray-50);
}
.esh-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.esh-cats__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    border-radius: var(--esh-radius);
    background: var(--esh-white);
    border: 1px solid var(--esh-gray-200);
    transition: var(--esh-transition);
    position: relative;
    overflow: hidden;
}
.esh-cats__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--esh-yellow);
    transform: scaleX(0);
    transition: var(--esh-transition);
}
.esh-cats__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--esh-shadow-lg);
    border-color: transparent;
}
.esh-cats__card:hover::after {
    transform: scaleX(1);
}
.esh-cats__card-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--esh-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.esh-cats__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.esh-cats__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--esh-black);
    margin: 0 0 6px;
}
.esh-cats__card-desc {
    font-size: .85rem;
    color: var(--esh-gray-600);
    margin: 0 0 12px;
    line-height: 1.4;
    flex-grow: 1;
}
.esh-cats__card-arrow {
    font-size: .85rem;
    font-weight: 600;
    color: var(--esh-yellow);
    transition: var(--esh-transition);
}
.esh-cats__card:hover .esh-cats__card-arrow {
    color: var(--esh-black);
    letter-spacing: .05em;
}
.esh-cats__card:hover .esh-cats__card-title,
.esh-cats__card:hover .esh-cats__card-desc {
    color: var(--esh-black) !important;
}

/* ============================================================
   3. BANNER
   ============================================================ */
.esh-banner {
    padding: 40px 0;
}
.esh-banner__link {
    display: block;
    border-radius: var(--esh-radius);
    overflow: hidden;
    transition: var(--esh-transition);
}
.esh-banner__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--esh-shadow-lg);
}
.esh-banner__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   4. BRANDS CAROUSEL
   ============================================================ */
.esh-brands {
    padding: 48px 0;
    background: var(--esh-gray-50);
    overflow: hidden;
}
.esh-brands__track {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    animation: esh-brands-scroll 50s linear infinite;
    width: max-content;
}
.esh-brands__track:hover {
    animation-play-state: paused;
}
.esh-brands__item {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--esh-white);
    border-radius: var(--esh-radius-sm);
    padding: 4px;
    border: 1px solid var(--esh-gray-200);
    transition: var(--esh-transition);
}
.esh-brands__item:hover {
    border-color: var(--esh-yellow);
    box-shadow: var(--esh-shadow-sm);
    transform: translateY(-2px);
}
.esh-brands__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .55;
    transition: var(--esh-transition);
}
.esh-brands__item:hover .esh-brands__logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes esh-brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   5. PRODUCTS GRID
   ============================================================ */
.esh-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.esh-products__card {
    display: flex;
    flex-direction: column;
    border-radius: var(--esh-radius);
    background: var(--esh-white);
    border: 1px solid var(--esh-gray-200);
    overflow: hidden;
    transition: var(--esh-transition);
}
.esh-products__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--esh-shadow-md);
    border-color: var(--esh-yellow);
}
.esh-products__card-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--esh-gray-100);
}
.esh-products__card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
    padding: 12px;
}
.esh-products__card:hover .esh-products__card-img {
    transform: scale(1.06);
}
.esh-products__card-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--esh-black);
    margin: 12px 14px 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esh-products__card-price {
    font-size: .95rem;
    font-weight: 800;
    color: var(--esh-black);
    padding: 0 14px 8px;
}
.esh-products__card-price del {
    color: var(--esh-gray-400);
    font-weight: 500;
    font-size: .8rem;
}
.esh-products__card-price ins {
    text-decoration: none;
    color: var(--esh-black);
}
.esh-products__card-btn {
    display: block;
    text-align: center;
    padding: 10px 14px;
    margin: auto 14px 14px;
    background: var(--esh-yellow);
    color: var(--esh-black);
    font-size: .82rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--esh-transition);
}
.esh-products__card:hover .esh-products__card-btn {
    background: var(--esh-black);
    color: var(--esh-yellow);
}
.esh-products__actions {
    text-align: center;
    margin-top: 32px;
}

/* ============================================================
   7. NOVIDADES — Horizontal Scroll
   ============================================================ */
.esh-novidades {
    background: var(--esh-gray-50);
}
.esh-novidades__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.esh-novidades__scroll::-webkit-scrollbar { display: none; }
.esh-novidades__card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    border-radius: var(--esh-radius);
    background: var(--esh-white);
    border: 1px solid var(--esh-gray-200);
    overflow: hidden;
    transition: var(--esh-transition);
}
.esh-novidades__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--esh-shadow-md);
    border-color: var(--esh-yellow);
}
.esh-novidades__card-img-wrap {
    aspect-ratio: 1;
    background: var(--esh-gray-100);
    overflow: hidden;
}
.esh-novidades__card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .4s ease;
}
.esh-novidades__card:hover .esh-novidades__card-img {
    transform: scale(1.06);
}
.esh-novidades__card-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--esh-black);
    margin: 10px 12px 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esh-novidades__card-price {
    font-size: .9rem;
    font-weight: 800;
    color: var(--esh-black);
    padding: 0 12px 12px;
}
.esh-novidades__card-price del {
    color: var(--esh-gray-400);
    font-weight: 500;
    font-size: .78rem;
}
.esh-novidades__card-price ins {
    text-decoration: none;
}

/* ============================================================
   8. ABOUT
   ============================================================ */
.esh-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.esh-about__image-wrap {
    border-radius: var(--esh-radius);
    overflow: hidden;
    box-shadow: var(--esh-shadow-lg);
}
.esh-about__image {
    width: 100%;
    height: auto;
    display: block;
}
.esh-about__desc {
    font-size: 1rem;
    color: var(--esh-gray-600);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* ============================================================
   9. WHATSAPP CTA
   ============================================================ */
.esh-whatsapp-cta {
    background: var(--esh-gray-50);
    padding: 48px 0;
    text-align: center;
}
.esh-whatsapp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: #25D366;
    color: var(--esh-white);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .04em;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--esh-transition);
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.esh-whatsapp-cta__btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(37,211,102,.45);
    background: #20bd5a;
    color: var(--esh-white);
}
.esh-whatsapp-cta__icon {
    flex-shrink: 0;
}

/* ============================================================
   10. BLOG — Horizontal Scroll
   ============================================================ */
.esh-blog__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.esh-blog__scroll::-webkit-scrollbar { display: none; }
.esh-blog__card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: var(--esh-radius);
    background: var(--esh-white);
    border: 1px solid var(--esh-gray-200);
    overflow: hidden;
    transition: var(--esh-transition);
}
.esh-blog__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--esh-shadow-md);
}
.esh-blog__card-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.esh-blog__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.esh-blog__card:hover .esh-blog__card-img {
    transform: scale(1.05);
}
.esh-blog__card-body {
    padding: 16px;
}
.esh-blog__card-date {
    font-size: .78rem;
    color: var(--esh-gray-400);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.esh-blog__card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--esh-black);
    margin: 6px 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esh-blog__card-excerpt {
    font-size: .82rem;
    color: var(--esh-gray-600);
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esh-blog__card-more {
    font-size: .85rem;
    font-weight: 600;
    color: var(--esh-black);
    transition: var(--esh-transition);
}
.esh-blog__card:hover .esh-blog__card-more {
    color: var(--esh-yellow);
}

/* Blog & Novidades Carousel Arrows (injected via JS) */
.esh-blog__arrow,
.esh-novidades__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--esh-gray-200);
    background: var(--esh-white);
    color: var(--esh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--esh-transition);
    box-shadow: var(--esh-shadow-sm);
    padding: 0;
}
.esh-blog__arrow:hover,
.esh-novidades__arrow:hover {
    background: var(--esh-yellow);
    border-color: var(--esh-yellow);
    color: var(--esh-black);
    box-shadow: var(--esh-shadow-md);
}
.esh-blog__arrow:active,
.esh-novidades__arrow:active {
    transform: translateY(-50%) scale(.93);
}
.esh-blog__arrow--prev,
.esh-novidades__arrow--prev { left: -8px; }
.esh-blog__arrow--next,
.esh-novidades__arrow--next { right: -8px; }

/* ============================================================
   11. CATEGORY CAROUSEL
   ============================================================ */
.esh-catcarousel {
    background: var(--esh-gray-50);
}
.esh-catcarousel__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.esh-catcarousel__scroll::-webkit-scrollbar { display: none; }
.esh-catcarousel__item {
    flex: 0 0 180px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--esh-radius);
    background: var(--esh-white);
    border: 1px solid var(--esh-gray-200);
    transition: var(--esh-transition);
}
.esh-catcarousel__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--esh-shadow-md);
    border-color: var(--esh-yellow);
}

/* Cluster: overlapping product image circles */
.esh-catcarousel__cluster {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    height: 64px;
    position: relative;
}
.esh-catcarousel__circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--esh-white);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    background: var(--esh-gray-100);
    position: relative;
}
.esh-catcarousel__circle--1 { z-index: 3; }
.esh-catcarousel__circle--2 { z-index: 2; margin-left: -16px; }
.esh-catcarousel__circle--3 { z-index: 1; margin-left: -16px; }

.esh-catcarousel__circle--placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--esh-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esh-gray-400);
}

.esh-catcarousel__name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--esh-black);
    line-height: 1.3;
    margin-bottom: 2px;
}
.esh-catcarousel__count {
    font-size: .78rem;
    color: var(--esh-gray-400);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .esh-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .esh-blog__card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .esh-section {
        padding: 44px 0;
    }
    .esh-section__subtitle {
        margin-bottom: 28px;
    }
    .esh-cats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .esh-cats__card {
        padding: 24px 16px 20px;
    }
    .esh-cats__card-img-wrap {
        width: 72px;
        height: 72px;
    }
    .esh-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .esh-about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .esh-about .esh-section__title--left {
        text-align: center;
    }
    .esh-about__desc {
        text-align: center;
    }
    .esh-about__text {
        text-align: center;
    }
    .esh-blog__card {
        flex: 0 0 260px;
    }
    .esh-hero {
        height: clamp(300px, 52vh, 400px);
    }
    .esh-hero__title {
        font-size: clamp(1.2rem, 3vw, 1.7rem) !important;
    }
    .esh-hero__slide {
        justify-content: center;
    }
    .esh-hero__content {
        text-align: center;
        padding: 0 24px;
        max-width: 480px;
    }
    .esh-hero__subtitle {
        max-width: 100%;
    }
    .esh-hero__arrow { display: none; }
    .esh-blog__arrow,
    .esh-novidades__arrow { display: none; }
    .esh-novidades__card {
        flex: 0 0 200px;
    }
    .esh-catcarousel__item {
        flex: 0 0 150px;
    }
    .esh-brands__item {
        flex: 0 0 110px;
        height: 64px;
        padding: 8px;
    }
    .esh-brands__track {
        gap: 24px;
    }
    .esh-whatsapp-cta__btn {
        padding: 14px 32px;
        font-size: .95rem;
    }
}

@media (max-width: 480px) {
    .esh-cats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .esh-cats__card-img-wrap {
        width: 60px;
        height: 60px;
    }
    .esh-products__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .esh-hero {
        height: clamp(260px, 60vw, 340px);
    }
    .esh-hero__title {
        font-size: clamp(.875rem, 4.5vw, 1.1rem) !important;
    }
    .esh-hero__subtitle {
        font-size: .9rem;
        margin-bottom: 20px;
    }
    .esh-hero__cta {
        padding: 12px 32px;
        font-size: .88rem;
    }
    .esh-blog__card {
        flex: 0 0 240px;
    }
    .esh-novidades__card {
        flex: 0 0 180px;
    }
}
