/*
Theme Name: PetShop (Hello Elementor Child)
Theme URI: https://websbarcelona.com/
Description: Tema hijo personalizado para PetShop — tienda online de productos para mascotas.
Author: Webs Barcelona
Template: hello-elementor
Version: 1.0.0
Text Domain: peludos-child
*/

/* ============================================
   Design Tokens — PetShop
   ============================================ */
:root {
    --green-primary: #6BBD3C;
    --green-dark: #4FA224;
    --green-darker: #1F4E1F;
    --green-soft: #EBF7DC;
    --green-bg: #F5FAEB;

    --pink-primary: #E76C8A;
    --pink-soft: #FCE7E8;
    --pink-bg: #FBEEF1;

    --orange-primary: #F0A040;
    --orange-soft: #FDF1E0;

    --blue-primary: #4A90E2;
    --blue-soft: #E8F1FB;

    --yellow-soft: #FDF5D9;
    --purple-soft: #F0E4F7;
    --teal-soft: #DCF4F4;

    --text-dark: #1A1A1A;
    --text-body: #444;
    --text-muted: #777;
    --border: #EAEAEA;
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 6px 20px rgba(0,0,0,.07);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.10);

    --container: 1180px;
    --transition: .25s ease;

    --font-base: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Reset / base
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-primary); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 800; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px; border-radius: var(--radius-pill);
    font-weight: 700; font-size: .95rem;
    transition: var(--transition); cursor: pointer; text-decoration: none;
}
.btn-green   { background: var(--green-primary); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-orange  { background: var(--orange-primary); color: #fff; }
.btn-orange:hover { background: #D88A2C; color: #fff; transform: translateY(-2px); }
.btn-blue    { background: var(--blue-primary); color: #fff; }
.btn-blue:hover { background: #3576C5; color: #fff; transform: translateY(-2px); }
.btn-pink    { background: var(--pink-primary); color: #fff; }
.btn-pink:hover { background: #C95775; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }

/* ============================================
   Top bar
   ============================================ */
.topbar {
    background: var(--green-darker);
    color: #fff;
    font-size: .85rem;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 44px; gap: 24px;
}
.topbar__shipping { display: flex; align-items: center; gap: 8px; }
.topbar__shipping svg { width: 18px; height: 18px; }
.topbar__links { display: flex; gap: 22px; align-items: center; }
.topbar__links a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar__links a:hover { color: #C9F09D; }
.topbar__cart {
    position: relative; display: inline-flex; align-items: center; gap: 4px;
}
.topbar__cart-count {
    position: absolute; top: -8px; right: -12px;
    background: var(--green-primary); color: #fff;
    border-radius: 50%; width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background: #fff;
    padding: 18px 0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}
.site-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.site-logo__icon {
    width: 44px; height: 44px;
    background: var(--green-primary);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.site-logo__text { line-height: 1.05; }
.site-logo__name {
    font-weight: 900; font-size: 1.5rem;
    color: var(--text-dark);
}
.site-logo__name b { color: var(--green-primary); }
.site-logo__tag {
    font-size: .75rem; color: var(--text-muted);
    display: block;
}

/* ============================================
   Megamenu nav
   ============================================ */
.main-nav { display: flex; justify-content: center; }
.main-nav__list {
    display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.main-nav__list > li { position: relative; }
.main-nav__list > li > a {
    color: var(--text-dark); font-weight: 700; font-size: .95rem;
    padding: 8px 0; display: inline-block; position: relative;
}
.main-nav__list > li > a:hover { color: var(--green-primary); }
.main-nav__list > li.current > a,
.main-nav__list > li.active > a { color: var(--green-primary); }
.main-nav__list > li.current > a::after,
.main-nav__list > li.active > a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%;
    transform: translateX(-50%); width: 20px; height: 3px;
    background: var(--green-primary); border-radius: 3px;
}

/* megamenu dropdown */
.megamenu {
    position: absolute; top: calc(100% + 16px); left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(820px, 92vw);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}
.main-nav__list > li:hover > .megamenu,
.main-nav__list > li:focus-within > .megamenu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.megamenu__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.megamenu__col h4 {
    font-size: .8rem; color: var(--green-primary);
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 2px solid var(--green-soft);
    padding-bottom: 8px; margin-bottom: 10px;
}
.megamenu__col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.megamenu__col a {
    color: var(--text-body); font-size: .9rem; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    padding: 4px 0;
}
.megamenu__col a:hover { color: var(--green-primary); transform: translateX(3px); }
.megamenu__feature {
    grid-column: 3; background: var(--green-soft);
    border-radius: var(--radius-md); padding: 18px;
    display: flex; flex-direction: column; gap: 8px;
    align-self: start;
}
.megamenu__feature strong { color: var(--text-dark); font-size: 1.05rem; }
.megamenu__feature span { color: var(--text-muted); font-size: .85rem; }

/* search */
.header-search {
    position: relative; max-width: 340px; width: 100%;
}
.header-search input {
    width: 100%; padding: 12px 48px 12px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: .9rem; outline: none;
    transition: var(--transition);
    background: var(--bg-soft);
    font-family: inherit;
}
.header-search input:focus { border-color: var(--green-primary); background: #fff; }
.header-search button {
    position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    background: var(--green-primary); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.header-search button:hover { background: var(--green-dark); }

/* mobile toggler */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--text-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================
   Hero
   ============================================ */
.hero {
    background: linear-gradient(120deg, var(--green-soft) 0%, #F5FAEB 100%);
    border-radius: var(--radius-xl);
    margin: 24px auto 0;
    overflow: hidden;
    position: relative;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 56px 56px;
    gap: 24px;
    min-height: 360px;
    position: relative;
}
.hero__copy h1 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; }
.hero__copy h1 .accent { color: var(--green-primary); display: block; }
.hero__copy p.lead {
    font-size: 1.1rem; color: var(--text-body); margin: 0 0 24px;
}
.hero__badges {
    display: flex; gap: 18px; flex-wrap: wrap; margin: 24px 0 28px;
}
.hero__badge { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--text-body); font-weight: 600; }
.hero__badge svg { width: 22px; height: 22px; color: var(--green-primary); }
.hero__visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero__blob {
    position: absolute; width: 380px; height: 380px;
    background: #C5E997; border-radius: 50%; z-index: 1;
    filter: blur(0px);
    right: 0; top: 0;
}
.hero__pets {
    position: relative; z-index: 2;
    width: 100%; max-width: 480px;
}
.hero__pets img { width: 100%; }
.hero__paws {
    position: absolute; opacity: .35;
    color: #B5DD7E;
    pointer-events: none;
}
.hero__paws--1 { top: 12%; left: 8%; transform: rotate(-15deg); }
.hero__paws--2 { top: 60%; left: 32%; transform: rotate(20deg); }
.hero__paws--3 { top: 18%; right: 32%; transform: rotate(15deg); }
.hero__paws--4 { bottom: 12%; right: 6%; transform: rotate(-10deg); }

/* ============================================
   Categories ring
   ============================================ */
.section { padding: 64px 0; }
.section__title { text-align: center; margin-bottom: 40px; }

.cat-ring {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text-dark);
    transition: var(--transition);
}
.cat-card__circle {
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: var(--transition);
    position: relative;
}
.cat-card__circle img { width: 78%; height: 78%; object-fit: cover; border-radius: 50%; }
.cat-card:hover .cat-card__circle { transform: scale(1.06) rotate(-3deg); box-shadow: var(--shadow-md); }
.cat-card__label { font-weight: 700; font-size: .98rem; }

/* per-cat pastel bg */
.cat--perros  .cat-card__circle { background: var(--yellow-soft); }
.cat--gatos   .cat-card__circle { background: var(--pink-soft); }
.cat--peces   .cat-card__circle { background: var(--blue-soft); }
.cat--aves    .cat-card__circle { background: var(--green-soft); }
.cat--roedores .cat-card__circle { background: var(--purple-soft); }
.cat--ofertas .cat-card__circle { background: #DFF1D5; }
.cat--ofertas .cat-card__circle::after {
    content: '%'; position: absolute;
    font-size: 3rem; font-weight: 900; color: var(--green-primary);
    line-height: 1;
}
.cat--ofertas .cat-card__circle img { display: none; }

/* ============================================
   Three feature cards
   ============================================ */
.feature-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 16px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}
.feature-card h3 { font-size: 1.5rem; line-height: 1.15; margin: 0 0 6px; }
.feature-card h3 span { display: block; font-style: normal; font-weight: 900; }
.feature-card .btn { margin-top: 14px; align-self: flex-start; }
.feature-card__img { width: 130px; height: 130px; object-fit: contain; }

.feature--green    { background: var(--green-soft); }
.feature--green    h3 span { color: var(--green-primary); }
.feature--orange   { background: var(--orange-soft); }
.feature--orange   h3 span { color: var(--orange-primary); }
.feature--blue     { background: var(--blue-soft); }
.feature--blue     h3 span { color: var(--blue-primary); }
.feature-card__paw {
    position: absolute; top: 12px; right: 16px;
    opacity: .35; width: 26px;
}

/* ============================================
   Grooming + booking section
   ============================================ */
.grooming {
    background: var(--pink-soft);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr .9fr;
    gap: 36px;
    align-items: center;
}
.grooming__copy h2 {
    color: var(--text-dark); display: flex; align-items: center; gap: 12px;
}
.grooming__copy h2 .scissor {
    color: var(--pink-primary); font-size: 1.5rem;
}
.grooming__list { list-style: none; padding: 0; margin: 14px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.grooming__list li { display: flex; align-items: center; gap: 10px; color: var(--text-body); font-weight: 500; }
.grooming__list li::before {
    content: ''; width: 18px; height: 18px;
    background: var(--pink-primary);
    border-radius: 50%;
    display: inline-block; flex: none;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}
.grooming__photo img { border-radius: var(--radius-lg); width: 100%; }

.booking {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.booking h3 {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
}
.booking h3 .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--pink-soft); border-radius: 10px;
    color: var(--pink-primary);
}
.booking__field { margin-bottom: 14px; }
.booking__field label {
    display: block; font-size: .82rem; font-weight: 600;
    color: var(--text-dark); margin-bottom: 6px;
}
.booking__field select,
.booking__field input {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: .92rem; font-family: inherit;
    background: var(--bg-soft); color: var(--text-dark);
}
.booking__field select:focus,
.booking__field input:focus { border-color: var(--pink-primary); outline: none; background: #fff; }
.booking .btn { width: 100%; margin-top: 6px; }

.grooming__trust {
    display: flex; flex-direction: column; gap: 18px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon {
    width: 42px; height: 42px;
    background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-primary);
    box-shadow: var(--shadow-sm);
}
.trust-item__text strong { display: block; color: var(--text-dark); font-size: .98rem; }
.trust-item__text span { color: var(--text-muted); font-size: .88rem; }

/* ============================================
   Stats bar
   ============================================ */
.stats {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats__item {
    display: flex; align-items: center; gap: 14px;
}
.stats__icon {
    width: 44px; height: 44px;
    background: var(--green-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary);
}
.stats__text strong { display: block; font-size: 1.05rem; color: var(--text-dark); }
.stats__text span { color: var(--text-muted); font-size: .88rem; }

/* ============================================
   Newsletter + footer
   ============================================ */
.newsletter-row {
    background: var(--green-soft);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.1fr .7fr 1.4fr;
    gap: 30px;
    align-items: center;
}
.newsletter h3 { font-size: 1.3rem; }
.newsletter__form {
    display: flex; gap: 8px;
    background: #fff; padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}
.newsletter__form input {
    flex: 1; border: 0; outline: none;
    padding: 10px 18px; font-size: .9rem; background: transparent; font-family: inherit;
}
.newsletter__form button {
    background: var(--green-primary); color: #fff;
    padding: 10px 22px; border-radius: var(--radius-pill);
    font-weight: 700; cursor: pointer;
}
.newsletter__form button:hover { background: var(--green-dark); }
.newsletter__dog img { width: 100%; max-width: 220px; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.footer-cols h4 { color: var(--text-dark); font-size: 1rem; margin-bottom: 12px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-cols a { color: var(--text-body); font-size: .9rem; }
.footer-cols a:hover { color: var(--green-primary); }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-row a {
    width: 38px; height: 38px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}
.social-row a:hover {
    background: var(--green-primary); color: #fff;
    transform: translateY(-3px);
}

.site-footer {
    padding: 0 0 24px;
    border-top: 1px solid var(--border);
    margin-top: 36px;
}
.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
    font-size: .85rem; color: var(--text-muted);
}
.footer-bottom__pay {
    display: flex; gap: 10px; align-items: center;
}
.pay-pill {
    background: #fff; border: 1px solid var(--border);
    padding: 6px 12px; border-radius: 8px;
    font-weight: 800; font-size: .75rem;
    color: var(--text-dark); letter-spacing: .5px;
}

/* ============================================
   Product grid (shop / homepage)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
}
.product-card__img {
    aspect-ratio: 1/1; background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card__img img {
    width: 80%; height: 80%; object-fit: contain;
    transition: var(--transition);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card__brand { color: var(--green-primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.product-card__title {
    font-size: .98rem; font-weight: 700;
    color: var(--text-dark); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 2.6em;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--green-primary); }
.product-card__price {
    color: var(--green-primary); font-weight: 800; font-size: 1.1rem;
    margin-top: auto; padding-top: 6px;
}
.product-card__price small { color: var(--text-muted); font-weight: 500; font-size: .75rem; }
.product-card__cta {
    margin-top: 10px;
    background: var(--bg-soft); color: var(--text-dark);
    padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: .8rem; font-weight: 700; text-align: center;
    transition: var(--transition);
}
.product-card:hover .product-card__cta { background: var(--green-primary); color: #fff; }

/* ============================================
   Mobile drawer
   ============================================ */
.mobile-drawer {
    position: fixed; top: 0; right: -100%;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 24px 22px;
    transition: right .3s ease;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.mobile-drawer.is-open { right: 0; }
.mobile-drawer__close {
    width: 40px; height: 40px;
    margin-left: auto; display: flex;
    align-items: center; justify-content: center;
    color: var(--text-dark);
}
.mobile-drawer ul {
    list-style: none; padding: 0; margin: 16px 0 0;
    display: flex; flex-direction: column; gap: 2px;
}
.mobile-drawer ul a {
    display: block; padding: 14px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-dark); font-weight: 600;
}
.mobile-drawer ul a:hover { background: var(--green-soft); color: var(--green-primary); }
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 199;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .site-header__inner { gap: 18px; }
    .main-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .header-search { max-width: 100%; }
    .hero__inner { padding: 40px 32px; }
    .cat-ring { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .feature-row { grid-template-columns: 1fr; }
    .grooming { grid-template-columns: 1fr; padding: 32px 24px; }
    .grooming__trust { flex-direction: row; flex-wrap: wrap; justify-content: space-around; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .newsletter-row { grid-template-columns: 1fr; }
    .newsletter__dog { display: none; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .topbar__inner { font-size: .75rem; gap: 8px; }
    .topbar__shipping { display: none; }
    .site-logo__name { font-size: 1.2rem; }
    .site-logo__tag { font-size: .65rem; }
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
    .hero__copy h1 { font-size: 2rem; }
    .hero__badges { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__blob { width: 240px; height: 240px; }
    .cat-ring { grid-template-columns: repeat(2, 1fr); }
    .cat-card__circle { width: 92px; height: 92px; }
    .stats { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 44px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card__title { font-size: .88rem; min-height: 2.4em; }
}

/* ============================================
   WooCommerce overrides
   ============================================ */
.woocommerce-page .container,
body.woocommerce-cart .container,
body.woocommerce-checkout .container {
    padding-top: 36px; padding-bottom: 56px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem; font-weight: 700; color: var(--text-dark);
}
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--green-primary) !important; color: #fff !important;
    border-radius: var(--radius-pill) !important; font-weight: 700 !important;
    padding: 10px 22px !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--green-dark) !important;
}
.woocommerce span.price,
.woocommerce-Price-amount { color: var(--green-primary); font-weight: 800; }
.woocommerce-info, .woocommerce-message {
    border-top-color: var(--green-primary) !important;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--green-primary) !important; }
.woocommerce-product-gallery__image img { border-radius: var(--radius-md); }

/* page banner */
.page-banner {
    background: linear-gradient(120deg, var(--green-soft), var(--green-bg));
    padding: 56px 0; text-align: center;
    margin-bottom: 36px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.page-banner h1 { margin: 0; color: var(--text-dark); }
.page-banner .breadcrumbs {
    margin-top: 8px; color: var(--text-muted); font-size: .9rem;
}
.page-banner .breadcrumbs a { color: var(--green-primary); }
