/*
Theme Name: Pettropolis
Theme URI: https://pettropolis.de
Description: Premium Pet Shop Theme fuer pettropolis.de
Version: 2.0
Author: Pettropolis
Text Domain: pettropolis
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-brand:        #FF6B35;
  --color-brand-dark:   #e85520;
  --color-brand-deeper: #c44010;
  --color-brand-light:  #fff3ee;
  --color-brand-mid:    #ffcfb0;
  --color-brand-muted:  #ffe8d8;

  --color-dark:         #1a1a2e;
  --color-text:         #2c2c3e;
  --color-muted:        #666;
  --color-subtle:       #999;
  --color-border:       #f0e0d8;
  --color-border-light: #faf0eb;
  --color-bg:           #ffffff;
  --color-bg-soft:      #fffaf7;
  --color-bg-gray:      #f5f5f5;

  --color-success:      #2ECC71;
  --color-warning:      #e8a020;
  --color-danger:       #d94040;
  --color-info:         #2e7fc1;
  --color-sale:         #d94040;
  --color-new:          #2e7fc1;

  --font-display:  'Nunito', 'Segoe UI', sans-serif;
  --font-body:     'Nunito Sans', 'Segoe UI', sans-serif;

  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   26px;
  --text-2xl:  34px;
  --text-3xl:  44px;

  --weight-normal:  400;
  --weight-medium:  600;
  --weight-bold:    700;
  --weight-black:   800;

  --space-1:  4px;  --space-2:  8px;  --space-3:  12px; --space-4:  16px;
  --space-5:  20px; --space-6:  24px; --space-8:  32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px;

  --radius-sm:   6px;  --radius-md:   10px; --radius-lg:   16px;
  --radius-xl:   24px; --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 28px rgba(0,0,0,.11);
  --shadow-brand: 0 4px 16px rgba(255,107,53,.28);

  --ease:       cubic-bezier(.22,.68,0,1.2);
  --ease-plain: cubic-bezier(.4,0,.2,1);
  --dur-fast:   150ms;
  --dur-base:   220ms;
  --dur-slow:   360ms;

  --container:    1280px;
  --header-h:     68px;
  --topbar-h:     38px;
  --nav-h:        46px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-6); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-soft); }
::-webkit-scrollbar-thumb { background: var(--color-brand-mid); border-radius: var(--radius-full); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: var(--weight-bold);
  border-radius: var(--radius-full); cursor: pointer; border: none;
  transition: background var(--dur-base), transform var(--dur-fast), box-shadow var(--dur-base);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-brand); color: white;
  padding: 0 var(--space-6); height: 48px; font-size: var(--text-base);
}
.btn--primary:hover { background: var(--color-brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.btn--ghost {
  background: rgba(255,255,255,.15); color: white;
  padding: 0 var(--space-4); height: 40px; font-size: var(--text-sm);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--outline {
  background: transparent; color: var(--color-brand);
  border: 2px solid var(--color-brand);
  padding: 0 var(--space-5); height: 48px; font-size: var(--text-base);
}
.btn--outline:hover { background: var(--color-brand); color: white; }
.btn--sm { height: 36px; padding: 0 var(--space-4); font-size: var(--text-sm); }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-brand); color: white;
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: center; gap: var(--space-8);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
}
.topbar__item { display: flex; align-items: center; gap: var(--space-2); opacity: .92; }
.topbar__icon { width: 15px; height: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-bg);
  border-bottom: 1.5px solid var(--color-border);
  position: sticky; top: 0; z-index: 200;
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: var(--space-5);
}

/* Logo */
.logo { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.logo__text {
  font-family: var(--font-display); font-weight: var(--weight-black);
  font-size: var(--text-xl); color: var(--color-dark); letter-spacing: -.6px; line-height: 1;
}
.logo__dot { color: var(--color-brand); }
.logo__badge {
  background: var(--color-brand); color: white;
  font-size: 9px; font-weight: var(--weight-black);
  padding: 2px 7px; border-radius: var(--radius-sm);
  letter-spacing: .06em; align-self: flex-end; margin-bottom: 3px;
}

/* Search */
.search {
  flex: 1; display: flex; align-items: center;
  background: var(--color-bg-soft); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full); height: 44px; padding-inline: var(--space-4); gap: var(--space-3);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.search:focus-within { border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(255,107,53,.14); }
.search__input { flex: 1; border: none; background: transparent; font-size: var(--text-base); outline: none; color: var(--color-text); }
.search__input::placeholder { color: var(--color-subtle); }
.search__icon { color: var(--color-muted); width: 18px; height: 18px; flex-shrink: 0; }
.search__btn {
  background: var(--color-brand); color: white; border-radius: var(--radius-full);
  padding: 0 var(--space-4); height: 32px; font-size: var(--text-sm); font-weight: var(--weight-bold);
  display: flex; align-items: center; gap: var(--space-1);
}
.search__btn:hover { background: var(--color-brand-dark); }

/* Header Actions */
.header-action {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-md);
  color: var(--color-text); font-size: 10px; font-weight: var(--weight-medium);
  transition: background var(--dur-fast), color var(--dur-fast); position: relative;
}
.header-action:hover { background: var(--color-brand-light); color: var(--color-brand-dark); }
.header-action__icon { width: 22px; height: 22px; }
.header-action__badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--color-brand); color: white;
  font-size: 9px; font-weight: var(--weight-black);
  width: 16px; height: 16px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-bg);
}

/* Cart Button */
.cart-btn {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--color-brand); color: white;
  border-radius: var(--radius-full); padding: 0 var(--space-5) 0 var(--space-4);
  height: 44px; font-size: var(--text-base); font-weight: var(--weight-bold);
  font-family: var(--font-display); flex-shrink: 0;
  transition: background var(--dur-base), transform var(--dur-fast), box-shadow var(--dur-base);
}
.cart-btn:hover { background: var(--color-brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.cart-btn__icon { width: 20px; height: 20px; }
.cart-btn__count { background: rgba(255,255,255,.25); border-radius: var(--radius-full); padding: 1px 7px; font-size: var(--text-sm); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav { background: var(--color-bg); border-bottom: 1px solid var(--color-border-light); }
.nav__inner { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.nav__inner::-webkit-scrollbar { display: none; }
.nav__item {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 0 var(--space-4); height: var(--nav-h);
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  color: var(--color-text); white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.nav__item:hover, .nav__item--active { color: var(--color-brand-dark); border-bottom-color: var(--color-brand); }
.nav__badge { background: var(--color-brand); color: white; font-size: 10px; font-weight: var(--weight-black); padding: 1px 7px; border-radius: var(--radius-full); }
.nav__badge--sale { background: var(--color-sale); }
.nav__badge--new  { background: var(--color-new); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--color-dark); }
.hero__slides { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hero__slide {
  min-width: 100%; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: var(--space-16) 0; position: relative; overflow: hidden;
}
.hero__slide__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(18px) saturate(0.7); transform: scale(1.08); }
.hero__slide__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,18,8,.82) 0%, rgba(10,18,8,.65) 45%, rgba(10,18,8,.40) 100%);
}
.hero__slide-inner {
  position: relative; z-index: 1; padding-inline: var(--space-6);
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-12);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-brand); color: white;
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  padding: 4px var(--space-4); border-radius: var(--radius-full); margin-bottom: var(--space-4);
}
.hero__title { font-family: var(--font-display); font-size: clamp(28px,3.5vw,44px); font-weight: var(--weight-black); line-height: 1.2; color: white; margin-bottom: var(--space-4); }
.hero__title em { color: var(--color-brand); font-style: normal; }
.hero__sub { font-size: var(--text-base); color: rgba(255,255,255,.65); margin-bottom: var(--space-6); max-width: 460px; }
.hero__price-row { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero__price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--weight-black); color: var(--color-brand); }
.hero__old-price { font-size: var(--text-lg); color: rgba(255,255,255,.35); text-decoration: line-through; }
.hero__save { background: var(--color-sale); color: white; font-size: var(--text-sm); font-weight: var(--weight-black); padding: 2px 10px; border-radius: var(--radius-full); }
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-6); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,.1); }
.hero__trust-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: rgba(255,255,255,.55); }
.hero__trust-item strong { color: rgba(255,255,255,.85); }
.hero__product { display: flex; align-items: center; justify-content: center; position: relative; }
.hero__product-img { width: 300px; height: 300px; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.12); overflow: hidden; position: relative; }
.hero__product-img img { width: 100%; height: 100%; object-fit: cover; }
.hero__product-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--color-sale); color: white; font-size: var(--text-sm); font-weight: var(--weight-black); padding: 4px 12px; border-radius: var(--radius-full); }

/* Hero Controls */
.hero__ctrl {
  position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
  background: rgba(255,255,255,.15); color: white; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.hero__ctrl:hover { background: rgba(255,255,255,.25); }
.hero__ctrl--prev { left: var(--space-5); }
.hero__ctrl--next { right: var(--space-5); }
.hero__ctrl svg { width: 20px; height: 20px; }
.hero__dots { position: absolute; bottom: var(--space-5); left: 50%; transform: translateX(-50%); display: flex; gap: var(--space-2); z-index: 10; }
.hero__dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all var(--dur-base); }
.hero__dot--active { background: var(--color-brand); width: 24px; }
.hero__progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--color-brand); z-index: 10; transition: width .1s linear; }

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar { background: var(--color-dark); color: white; padding: var(--space-5) 0; }
.usp-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.usp-item { display: flex; align-items: center; gap: var(--space-4); }
.usp-item__icon { font-size: 2rem; flex-shrink: 0; }
.usp-item__title { font-weight: var(--weight-bold); font-size: var(--text-base); }
.usp-item__text { font-size: var(--text-sm); color: #aaa; margin-top: 2px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--space-8); }
.section-head__title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--weight-black); color: var(--color-dark); }
.section-head__sub { font-size: var(--text-sm); color: var(--color-muted); margin-top: var(--space-1); }
.section-head__link { display: flex; align-items: center; gap: var(--space-2); color: var(--color-brand); font-size: var(--text-sm); font-weight: var(--weight-bold); }
.section-head__link:hover { color: var(--color-brand-dark); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { padding: var(--space-16) 0; background: var(--color-bg-soft); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
.cat-card {
  background: var(--color-bg); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4); text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--dur-base) var(--ease);
  display: block; border: 1.5px solid transparent;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-brand); border-color: var(--color-brand-mid); }
.cat-card__icon { font-size: 3rem; margin-bottom: var(--space-3); display: block; }
.cat-card__name { font-weight: var(--weight-bold); font-size: var(--text-base); color: var(--color-dark); margin-bottom: var(--space-1); }
.cat-card:hover .cat-card__name { color: var(--color-brand); }
.cat-card__count { font-size: var(--text-sm); color: var(--color-muted); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { padding: var(--space-16) 0; }
.filter-bar { display: flex; gap: var(--space-2); margin-bottom: var(--space-8); flex-wrap: wrap; }
.filter-btn {
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border); background: var(--color-bg);
  font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--color-muted);
  transition: all var(--dur-fast); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--color-brand); border-color: var(--color-brand); color: white; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--color-bg); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--color-bg-soft);
}
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-plain); }
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }
.product-card__badges { position: absolute; top: var(--space-3); left: var(--space-3); display: flex; flex-direction: column; gap: var(--space-1); }
.badge { font-size: 10px; font-weight: var(--weight-black); padding: 2px 8px; border-radius: var(--radius-full); }
.badge--sale { background: var(--color-sale); color: white; }
.badge--new  { background: var(--color-new); color: white; }
.badge--brand { background: var(--color-dark); color: white; }
.product-card__fav {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: white; border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); color: var(--color-muted);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.product-card__fav:hover { color: var(--color-sale); transform: scale(1.1); }
.product-card__fav svg { width: 16px; height: 16px; }
.product-card__body { padding: var(--space-4); flex: 1; }
.product-card__brand { font-size: var(--text-xs); color: var(--color-brand); font-weight: var(--weight-bold); text-transform: uppercase; letter-spacing: .05em; margin-bottom: var(--space-1); }
.product-card__name { font-weight: var(--weight-bold); font-size: var(--text-base); color: var(--color-dark); margin-bottom: var(--space-3); line-height: 1.3; }
.product-card__stars { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.star { color: #f39c12; font-size: 13px; }
.product-card__rating-text { font-size: var(--text-xs); color: var(--color-muted); }
.product-card__price-row { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.product-card__price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-black); color: var(--color-brand); }
.product-card__old { font-size: var(--text-sm); color: var(--color-muted); text-decoration: line-through; }
.product-card__save { font-size: var(--text-xs); font-weight: var(--weight-black); background: rgba(217,64,64,.1); color: var(--color-sale); padding: 1px 6px; border-radius: var(--radius-full); }
.product-card__footer { padding: var(--space-3) var(--space-4) var(--space-4); }
.product-card__atc {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  background: var(--color-brand); color: white;
  border-radius: var(--radius-full); height: 42px;
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--weight-bold);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.product-card__atc:hover { background: var(--color-brand-dark); transform: scale(1.01); }
.product-card__atc svg { width: 16px; height: 16px; }

/* WooCommerce product overrides */
.woocommerce ul.products { margin: 0 !important; }
.woocommerce ul.products li.product { margin: 0 !important; }

/* ============================================================
   BANNER CTA
   ============================================================ */
.banner-cta { background: var(--color-dark); padding: var(--space-16) 0; }
.banner-cta__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-12); }
.banner-cta__tag { display: inline-block; background: var(--color-brand); color: white; font-size: var(--text-sm); font-weight: var(--weight-bold); padding: 3px var(--space-4); border-radius: var(--radius-full); margin-bottom: var(--space-4); }
.banner-cta__title { font-family: var(--font-display); font-size: clamp(24px,3vw,38px); font-weight: var(--weight-black); color: white; line-height: 1.2; margin-bottom: var(--space-4); }
.banner-cta__title em { color: var(--color-brand); font-style: normal; }
.banner-cta__sub { color: rgba(255,255,255,.6); font-size: var(--text-base); margin-bottom: var(--space-6); }
.banner-cta__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.banner-cta__visual { display: flex; align-items: center; justify-content: center; font-size: 8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-dark); color: white; padding-top: var(--space-16); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-12); }
.footer__brand-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black); margin-bottom: var(--space-4); }
.footer__brand-name span { color: var(--color-brand); }
.footer__desc { color: rgba(255,255,255,.5); font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--space-5); }
.footer__col-title { font-size: var(--text-sm); font-weight: var(--weight-black); text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: var(--space-4); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__link { font-size: var(--text-sm); color: rgba(255,255,255,.6); transition: color var(--dur-fast); }
.footer__link:hover { color: var(--color-brand); }
.footer__divider { border-color: rgba(255,255,255,.08); margin: var(--space-12) 0 var(--space-6); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--space-8); font-size: var(--text-sm); color: rgba(255,255,255,.3); }
.footer__payment-icons { display: flex; gap: var(--space-3); }
.payment-icon { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); padding: 3px 10px; border-radius: var(--radius-sm); font-size: var(--text-xs); font-weight: var(--weight-bold); }

/* ============================================================
   WOOCOMMERCE SHOP PAGE
   ============================================================ */
.woocommerce-page .content-area { max-width: var(--container); margin: 0 auto; padding: var(--space-12) var(--space-6); }
.woocommerce-products-header__title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--weight-black); color: var(--color-dark); margin-bottom: var(--space-8); }
.woocommerce ul.products li.product a img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-weight: var(--weight-bold) !important; font-size: var(--text-base) !important; }
.woocommerce ul.products li.product .price { color: var(--color-brand) !important; font-weight: var(--weight-black) !important; font-family: var(--font-display) !important; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--color-brand) !important; color: white !important;
  border-radius: var(--radius-full) !important; font-family: var(--font-display) !important;
  font-weight: var(--weight-bold) !important;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--color-brand-dark) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 768px) {
  .hero__slide-inner { grid-template-columns: 1fr; }
  .hero__product { display: none; }
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-cta__inner { grid-template-columns: 1fr; }
  .banner-cta__visual { display: none; }
  .topbar { gap: var(--space-4); font-size: 11px; }
  .header__inner { flex-wrap: wrap; height: auto; padding: var(--space-3) var(--space-4); }
  .search { order: 3; flex-basis: 100%; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
