/* ======================================================
  ANIMAIS & CIA - HOME PRINCIPAL FINAL
  Premium, leve e com vitrine expandida na mesma página
====================================================== */

:root {
  --green-dark: #006b22;
  --green-main: #0a9238;
  --green-mid: #13a947;
  --green-light: #d9f4df;
  --green-soft: #f0faf2;
  --green-ultra: #f7fcf8;
  --text: #24402b;
  --muted: #6b7d70;
  --white: #ffffff;
  --danger: #ff3b3b;
  --yellow: #ffbf2f;
  --ink: #102717;
  --shadow: 0 18px 42px rgba(0, 0, 0, .075);
  --soft-shadow: 0 8px 22px rgba(0, 0, 0, .045);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  text-rendering: optimizeSpeed;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

i {
  line-height: 1;
}

.section-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.category-section,
.benefits-strip,
.products-section,
.how-section,
.delivery-section,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.product-card,
.category-card,
.benefit-card,
.step-card,
.delivery-image,
.map-card,
.store-showcase,
.home-products-panel {
  contain: layout paint;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(10, 146, 56, .08);
}

.light-tag {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.btn {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn-primary {
  background: var(--green-main);
  color: white;
  box-shadow: 0 8px 18px rgba(10, 146, 56, .16);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--green-dark);
  border: 1px solid rgba(0, 107, 34, .16);
}

.btn-secondary:hover {
  border-color: rgba(10, 146, 56, .32);
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--green-dark);
}

/* ======================================================
  HEADER
====================================================== */

.site-header {
  transition: box-shadow .2s ease, background .2s ease;
}

.header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-main);
  color: white;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(10, 146, 56, .2);
}

.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.mobile-header-cart .cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  border: 2px solid white;
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid rgba(0,107,34,.08);
  padding: 12px 20px 18px;
}

.mobile-menu.active {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  color: var(--text);
  font-weight: 900;
  font-size: 15px;
  padding: 8px 0;
}

.mobile-search-panel {
  display: none;
  padding: 14px 18px 18px;
  background: #fff;
  border-top: 1px solid rgba(0,107,34,.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.06);
  gap: 10px;
}

.mobile-search-panel.active {
  display: flex;
}

.mobile-search-panel input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 2px solid rgba(10,146,56,.18);
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  outline: 0;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(10,146,56,.08);
}

.mobile-search-panel input:focus {
  border-color: rgba(10,146,56,.55);
}

.mobile-search-panel button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green-main);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(10,146,56,.22);
}

/* ======================================================
  HERO
====================================================== */

.shop-hero {
  position: relative;
}

.shop-hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow i {
  color: var(--green-main);
}

.store-search:focus-within {
  border-color: rgba(10,146,56,.55);
  box-shadow: 0 20px 48px rgba(10,146,56,.18), 0 0 0 5px rgba(10,146,56,.08);
}

.store-search i {
  color: var(--green-main);
  font-size: 18px;
  margin-right: 12px;
}

.store-search input::placeholder {
  color: rgba(107,125,112,.78);
}

.store-search button {
  box-shadow: 0 10px 22px rgba(10,146,56,.22);
  transition: background .22s ease, transform .22s ease;
}

.store-search button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.store-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.store-benefits span {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,107,34,.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0,0,0,.035);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-benefits i {
  color: var(--green-main);
}

.store-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.offer-card,
.mini-product-card {
  background: white;
  border: 1px solid rgba(0,107,34,.08);
  box-shadow: var(--soft-shadow);
}

.main-offer {
  grid-column: 1 / -1;
  min-height: 230px;
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.32), transparent 28%),
    linear-gradient(135deg, #17a84a, #006b22);
  color: white;
  display: grid;
  align-content: end;
}

.main-offer span {
  width: fit-content;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.main-offer h2 {
  font-size: 27px;
  line-height: 1.04;
  letter-spacing: -.7px;
  max-width: 440px;
}

.main-offer p {
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  font-weight: 700;
}

.main-offer a {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 900;
}

.mini-product-card {
  min-height: 116px;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  align-content: end;
}

.mini-product-card i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.mini-product-card strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.mini-product-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 3px;
}

/* ======================================================
  SEÇÕES
====================================================== */

.section-heading {
  text-align: center;
}

.section-heading h2,
.products-top h2,
.how-copy h2,
.delivery-card h2,
.contact-copy h2,
.home-products-head h2 {
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -.8px;
}

.section-heading p,
.products-top p,
.how-copy p,
.delivery-card p,
.home-products-head p {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

/* ======================================================
  CATEGORIAS
====================================================== */

.category-section {
  background: white;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.category-card {
  min-height: 132px;
  border: 1px solid rgba(0,107,34,.08);
  background: linear-gradient(180deg, #fff, var(--green-ultra));
  border-radius: 24px;
  padding: 18px;
  color: var(--text);
  box-shadow: var(--soft-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.category-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 15px;
}

.category-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.category-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  line-height: 1.25;
}

.category-card:hover i {
  background: var(--green-main);
  color: white;
}

/* ======================================================
  BENEFÍCIOS
====================================================== */

.benefits-strip {
  background: var(--green-soft);
}

.benefits-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  background: white;
  border: 1px solid rgba(0,107,34,.07);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-card > i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 21px;
  flex: 0 0 auto;
}

.benefit-card h2 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 6px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
  font-weight: 700;
}

/* ======================================================
  PRODUTOS
====================================================== */

.compact-products {
  background:
    radial-gradient(circle at 90% 8%, rgba(10,146,56,.06), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

.products-top {
  display: grid;
  gap: 22px;
}

.desktop-view-all {
  display: none;
}

.products-grid,
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  background: white;
  border: 1px solid rgba(0,107,34,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 30%, rgba(217,244,223,.85), transparent 52%),
    var(--green-soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 9px;
  top: 9px;
  background: white;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.product-content {
  padding: 13px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  color: var(--green-main);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .35px;
  margin-bottom: 6px;
}

.product-card h3 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
  min-height: 34px;
}

.product-desc {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  min-height: 43px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
  color: var(--yellow);
  font-size: 10px;
}

.rating span {
  color: var(--muted);
  font-weight: 900;
}

.price-row {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.price {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.old-price {
  color: #9aa89e;
  font-size: 11px;
  font-weight: 800;
  text-decoration: line-through;
}

.add-cart-btn {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--green-main);
  color: white;
  min-height: 39px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 22px rgba(10,146,56,.18);
}

.add-cart-btn:hover {
  background: var(--green-dark);
}

.view-all-wrap {
  margin: 30px auto 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.view-all-wrap .btn {
  width: 100%;
}

.view-all-wrap p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

/* ======================================================
  VITRINE COMPLETA NA HOME
====================================================== */

.home-products-panel {
  margin-top: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(10,146,56,.07), transparent 28%),
    #ffffff;
  border: 1px solid rgba(0,107,34,.08);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.055);
}

.home-products-panel[hidden] {
  display: none;
}

.home-products-head {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

.home-products-head h2 {
  font-size: 32px;
  line-height: 1.05;
}

.home-products-head p {
  font-size: 15px;
  margin-top: 10px;
}

.home-products-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.home-search-box {
  height: 54px;
  background: #fff;
  border: 2px solid rgba(10,146,56,.16);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  box-shadow: 0 14px 32px rgba(10,146,56,.09), 0 4px 12px rgba(0,0,0,.035);
}

.home-search-box:focus-within {
  border-color: rgba(10,146,56,.58);
  box-shadow: 0 18px 40px rgba(10,146,56,.14), 0 0 0 5px rgba(10,146,56,.08);
}

.home-search-box i {
  color: var(--green-main);
  font-size: 16px;
}

.home-search-box input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  min-width: 0;
}

.home-search-box input::placeholder {
  color: rgba(107,125,112,.75);
}

.home-products-toolbar select {
  height: 54px;
  background: #fff;
  border: 2px solid rgba(10,146,56,.16);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 900;
  outline: 0;
  box-shadow: 0 14px 32px rgba(10,146,56,.09), 0 4px 12px rgba(0,0,0,.035);
}

.home-products-info {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.home-empty-state {
  display: none;
  text-align: center;
  padding: 34px 20px;
  background: var(--green-soft);
  border-radius: 24px;
  border: 1px solid rgba(0,107,34,.08);
}

.home-empty-state.active {
  display: block;
}

.home-products-actions {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}

.home-products-actions .btn {
  width: 100%;
}

/* ======================================================
  COMO COMPRAR
====================================================== */

.how-section {
  background: var(--green-soft);
}

.how-box {
  background: white;
  border-radius: 28px;
  padding: 28px 22px;
  display: grid;
  gap: 26px;
  box-shadow: 0 12px 28px rgba(0,0,0,.045);
}

.steps-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  background: var(--green-soft);
  border-radius: 22px;
  padding: 20px;
}

.step-card span {
  color: var(--green-main);
  font-size: 14px;
  font-weight: 950;
}

.step-card h3 {
  font-size: 18px;
  color: var(--ink);
  font-weight: 950;
  margin-top: 10px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.4;
  font-weight: 700;
  font-size: 14px;
  margin-top: 7px;
}

/* ======================================================
  ENTREGA
====================================================== */

.delivery-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, #0a9238, #005b1d);
  color: white;
}

.delivery-grid {
  display: grid;
  gap: 34px;
}

.delivery-card h2 {
  color: white;
}

.delivery-card p {
  color: rgba(255,255,255,.86);
}

.delivery-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.delivery-list div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 900;
  font-size: 15px;
}

.delivery-list i {
  margin-top: 3px;
}

.delivery-card .btn {
  width: 100%;
}

.delivery-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}

/* ======================================================
  CONTATO
====================================================== */

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
}

.contact-list p {
  color: var(--muted);
  line-height: 1.35;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,107,34,.07);
  padding-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.contact-list i {
  color: var(--green-main);
  margin-top: 3px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions .btn,
.delivery-card .btn,
.view-all-wrap .btn {
  min-height: 50px;
  padding: 0 18px;
}

.map-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* ======================================================
  CARRINHO
====================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.36);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: .24s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  height: 100vh;
  width: min(92vw, 430px);
  background: white;
  box-shadow: -18px 0 45px rgba(0,0,0,.14);
  transform: translateX(110%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-head {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,107,34,.1);
}

.cart-head span {
  font-size: 13px;
  color: var(--green-main);
  font-weight: 950;
}

.cart-head h2 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,107,34,.08);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--green-soft);
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h3 {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 5px;
}

.cart-item-info p {
  color: var(--green-dark);
  font-weight: 950;
  font-size: 14px;
}

.cart-item-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--green-soft);
  border-radius: 999px;
  padding: 4px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--green-dark);
  font-weight: 950;
}

.qty-control strong {
  width: 28px;
  text-align: center;
  font-size: 14px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 950;
  font-size: 13px;
}

.cart-empty {
  display: none;
  flex: 1;
  place-items: center;
  text-align: center;
  padding: 40px;
}

.cart-empty.active {
  display: grid;
}

.cart-empty i {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 30px;
  margin: 0 auto 16px;
}

.cart-empty h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.cart-empty p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 700;
}

.cart-bottom {
  border-top: 1px solid rgba(0,107,34,.1);
  padding: 20px 22px 22px;
}

.cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-line span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total-line strong {
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 950;
}

.cart-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  margin: 10px 0 16px;
}

.checkout-btn {
  width: 100%;
  border: 0;
  background: var(--green-main);
  color: white;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 18px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.checkout-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.clear-cart-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  margin-top: 11px;
  padding: 8px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 120px);
  z-index: 250;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(0,0,0,.2);
  transition: .26s ease;
  opacity: 0;
  pointer-events: none;
  max-width: calc(100vw - 30px);
  white-space: nowrap;
}

.toast.active {
  transform: translate(-50%, 0);
  opacity: 1;
}

.footer {
  background: #053d17;
  color: rgba(255,255,255,.8);
  padding: 28px 20px;
}

.footer-mobile-center {
  display: grid;
  gap: 6px;
  text-align: center;
}

.footer-mobile-center p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* ======================================================
  MOBILE
====================================================== */

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }

  .shop-hero-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero-copy {
    display: contents;
  }

  .eyebrow {
    order: 1;
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf6 100%);
    border: 1px solid rgba(10,146,56,.16);
    box-shadow: 0 12px 28px rgba(10,146,56,.12), inset 0 1px 0 rgba(255,255,255,.9);
  }

  .store-showcase {
    order: 2;
    display: contents;
  }

  .main-offer {
    order: 2;
    grid-column: 1 / -1;
    margin-top: -4px;
    margin-bottom: 4px;
  }

  .shop-hero-copy h1 {
    order: 3;
    grid-column: 1 / -1;
  }

  .shop-hero-copy p {
    order: 4;
    grid-column: 1 / -1;
  }

  .hero-actions {
    order: 5;
    grid-column: 1 / -1;
  }

  .mini-product-card {
    order: 6;
    width: 100%;
    min-height: 116px;
    text-align: center;
    justify-items: center;
    align-content: center;
  }

  .mini-product-card i {
    margin: 0 auto 14px;
  }

  .store-benefits {
    display: none;
  }

  .category-section {
    padding: 68px 0 48px;
  }

  .section-heading {
    margin: 0 auto 32px;
  }

  .section-heading h2,
  .products-top h2,
  .how-copy h2,
  .delivery-card h2,
  .contact-copy h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  .section-heading p,
  .products-top p,
  .how-copy p,
  .delivery-card p {
    font-size: 15px;
    margin-top: 12px;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 145px;
    padding: 18px 12px;
  }

  .category-card i {
    margin: 0 auto 14px;
  }

  .category-card strong,
  .category-card span {
    width: 100%;
    text-align: center;
  }

  .category-card span {
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-strip {
    padding: 42px 0;
  }

  .products-section {
    padding: 68px 0;
  }

  .products-top {
    margin-bottom: 26px;
  }

  .how-section {
    padding: 62px 0;
  }

  .delivery-section {
    padding: 68px 0;
  }

  .contact {
    padding: 68px 0;
  }

  .product-card,
  .category-card,
  .benefit-card,
  .step-card {
    box-shadow: 0 6px 14px rgba(0,0,0,.04);
  }

  .btn:hover,
  .product-card:hover,
  .category-card:hover {
    transform: none;
  }

  .product-content {
    min-height: 178px;
  }

  .product-card h3 {
    min-height: 48px;
    font-size: 13.5px;
  }

  .home-products-panel {
    margin-top: 28px;
    border-radius: 26px;
    padding: 18px;
  }

  .home-products-head {
    text-align: center;
    justify-items: center;
  }

  .home-products-head .section-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .home-products-head h2 {
    font-size: 28px;
  }

  .home-products-head p {
    font-size: 14px;
  }

  .home-products-toolbar {
    gap: 10px;
  }

  .home-search-box,
  .home-products-toolbar select {
    height: 50px;
  }

  .home-products-info {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .products-grid,
  .home-products-grid {
    gap: 10px;
  }

  .product-content {
    min-height: 174px;
    padding: 11px;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .product-desc {
    font-size: 11px;
  }

  .price {
    font-size: 17px;
  }
}

/* ======================================================
  DESKTOP
====================================================== */

@media (min-width: 769px) {
  .section-container {
    padding: 0 32px;
  }

  .header-cart {
    padding: 13px 18px;
    font-size: 14px;
  }

  .store-benefits {
    grid-template-columns: repeat(3, max-content);
    margin-top: 6px;
  }

  .store-benefits span {
    padding: 10px 13px;
  }

  .store-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .main-offer {
    min-height: 330px;
    border-radius: 38px;
    padding: 34px;
  }

  .main-offer h2 {
    font-size: 36px;
  }

  .mini-product-card {
    min-height: 142px;
    border-radius: 26px;
    padding: 22px;
  }

  .mini-product-card i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .category-section {
    padding: 102px 0 78px;
  }

  .section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
  }

  .section-heading h2,
  .products-top h2,
  .how-copy h2,
  .delivery-card h2,
  .contact-copy h2 {
    font-size: 42px;
    line-height: 1.05;
  }

  .section-heading p,
  .products-top p,
  .how-copy p,
  .delivery-card p {
    font-size: 18px;
    margin-top: 14px;
  }

  .category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .category-card {
    min-height: 172px;
    border-radius: 26px;
    padding: 22px 16px;
  }

  .category-card i {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10,146,56,.24);
    box-shadow: 0 16px 38px rgba(0,0,0,.07);
  }

  .benefits-strip {
    padding: 60px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .benefit-card {
    padding: 24px;
  }

  .products-section {
    padding: 94px 0;
  }

  .products-top {
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
  }

  .desktop-view-all {
    display: inline-flex;
    padding: 0 24px;
    min-height: 52px;
    white-space: nowrap;
  }

  .products-grid,
  .home-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .product-card {
    border-radius: 28px;
  }

  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10,146,56,.2);
    box-shadow: 0 16px 36px rgba(0,0,0,.075);
  }

  .product-content {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
    min-height: 46px;
  }

  .product-desc {
    min-height: 42px;
    font-size: 14px;
    line-height: 1.4;
  }

  .price {
    font-size: 24px;
  }

  .add-cart-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .view-all-wrap {
    margin-top: 38px;
    max-width: 640px;
  }

  .view-all-wrap .btn {
    width: auto;
    padding: 0 26px;
  }

  .home-products-panel {
    padding: 34px;
  }

  .home-products-head h2 {
    font-size: 38px;
  }

  .home-products-toolbar {
    grid-template-columns: 1fr 230px;
    align-items: center;
  }

  .home-products-actions .btn {
    width: auto;
    padding: 0 26px;
  }

  .how-section {
    padding: 90px 0;
  }

  .how-box {
    border-radius: 34px;
    padding: 48px;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .delivery-section {
    padding: 104px 0;
  }

  .delivery-grid {
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
  }

  .delivery-card .btn {
    width: auto;
    padding: 0 24px;
  }

  .delivery-image img {
    height: 430px;
    border-radius: 34px;
  }

  .contact {
    padding: 98px 0;
  }

  .contact-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-list p {
    font-size: 17px;
  }

  .contact-actions {
    display: flex;
    gap: 12px;
  }

  .contact-actions .btn {
    width: auto;
    padding: 0 24px;
  }

  .map-card img {
    height: 420px;
    border-radius: 32px;
  }

  .footer {
    padding: 28px 0;
  }

  .footer-mobile-center {
    max-width: 1180px;
    padding: 0 32px;
    margin: 0 auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .footer-mobile-center p {
    font-size: 14px;
  }
}

/* ======================================================
  PERFORMANCE E ACESSIBILIDADE
====================================================== */

.product-card {
  contain: layout paint style;
}

@supports (content-visibility: auto) {
  .product-card {
    content-visibility: auto;
    contain-intrinsic-size: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ======================================================
  LINK DISCRETO PARA PÁGINA 2 / LOJA COMPLETA
====================================================== */

.nav-store-link {
  color: var(--green-dark) !important;
  background: var(--green-soft);
  border: 1px solid rgba(0, 107, 34, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
}

.nav-store-link:hover {
  background: var(--green-main);
  color: #ffffff !important;
}

.mobile-store-link {
  color: var(--green-dark) !important;
  background: var(--green-soft);
  border: 1px solid rgba(0, 107, 34, 0.10);
  border-radius: 16px;
  padding: 12px 14px !important;
  text-align: center;
}

.home-products-page-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green-dark);
  background: rgba(217, 244, 223, 0.55);
  border: 1px solid rgba(0, 107, 34, 0.10);
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 900;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.home-products-page-link:hover {
  background: var(--green-main);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .home-products-page-link {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    line-height: 1.25;
  }
}

/* ======================================================
  VITRINE NA HOME - SEM BUSCA/FILTRO
====================================================== */

.home-products-toolbar,
.home-search-box,
.home-products-toolbar select {
  display: none !important;
}

.home-products-head {
  max-width: 720px;
}

.home-products-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(0,107,34,.08);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .home-products-head {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .home-products-info {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

/* ======================================================
  AJUSTE FINAL - HOME SÓ COM 4 DESTAQUES + LOJA COMPLETA
====================================================== */

.home-products-panel,
.home-products-head,
.home-products-info,
.home-products-grid,
.home-products-actions,
.home-products-page-link {
  display: none !important;
}

.view-all-wrap .btn,
.desktop-view-all {
  cursor: pointer;
}

@media (max-width: 768px) {
  .products-top p,
  .view-all-wrap p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
