﻿.aguara-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.25rem 0.8rem;
  border-radius: var(--aguara-radius-pill);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.aguara-badge--highlight {
  color: var(--aguara-orange-dark);
  background: rgba(255, 138, 61, 0.14);
}

.aguara-badge--accent {
  color: var(--aguara-green-dark);
  background: rgba(126, 217, 87, 0.18);
}

.aguara-badge--neutral {
  color: var(--aguara-text);
  background: rgba(43, 43, 43, 0.08);
}

.aguara-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(231, 225, 214, 0.82);
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(16px);
  transition: background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.aguara-header.is-scrolled {
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 34px rgba(43, 43, 43, 0.07);
  border-bottom-color: rgba(231, 225, 214, 0.96);
}

.aguara-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.1rem;
  min-height: 72px;
}

.aguara-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.aguara-brand__asset,
.custom-logo-link img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.aguara-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--aguara-white);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--aguara-orange), var(--aguara-green));
  border-radius: 16px;
  box-shadow: var(--aguara-shadow-soft);
}

.aguara-brand__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.aguara-brand__text strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.aguara-brand__text small {
  color: var(--aguara-text-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.aguara-header__quick-actions {
  display: none;
}

.aguara-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--aguara-white);
  border: 1px solid var(--aguara-border);
  border-radius: 16px;
  box-shadow: none;
}

.aguara-header__toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: var(--aguara-text);
  border-radius: 999px;
}

.aguara-header__toggle span:last-child {
  margin-bottom: 0;
}

.aguara-header__panel {
  min-width: 0;
}

.aguara-header__panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) auto;
  align-items: center;
  gap: 0.85rem;
}

.aguara-header__panel-inner > * {
  min-width: 0;
}

.aguara-header__panel-top {
  display: none;
}

.aguara-header__panel-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.aguara-header__close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--aguara-white);
  border: 1px solid var(--aguara-border);
  border-radius: 16px;
}

.aguara-header__nav,
.aguara-header__search {
  min-width: 0;
}

.aguara-header__search .aguara-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.23rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 225, 214, 0.88);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.aguara-header__search .aguara-search-form__field {
  min-height: 40px;
  padding: 0.66rem 0.88rem;
  color: var(--aguara-text);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.aguara-header__search .aguara-search-form__button {
  min-width: 70px;
  min-height: 36px;
  padding-inline: 0.86rem;
  color: var(--aguara-white);
  background: linear-gradient(135deg, var(--aguara-orange), var(--aguara-orange-dark));
  border-radius: 14px;
  box-shadow: none;
}

.aguara-menu,
.aguara-footer-menu,
.aguara-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aguara-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.aguara-menu a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--aguara-text);
  font-size: 0.97rem;
  font-weight: 800;
}

.aguara-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--aguara-green), var(--aguara-orange));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.aguara-menu a:hover::after,
.aguara-menu a:focus-visible::after,
.aguara-menu .current-menu-item > a::after,
.aguara-menu .current_page_item > a::after {
  transform: scaleX(1);
}

.aguara-header__panel-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.aguara-header__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--aguara-text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.aguara-header__utility-link:hover,
.aguara-header__utility-link:focus-visible {
  color: var(--aguara-text);
}

.aguara-header__utility-link--cart {
  min-height: 36px;
  padding: 0.42rem 0.78rem;
  color: var(--aguara-text);
  background: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.18);
  border-radius: var(--aguara-radius-pill);
  box-shadow: none;
}

.aguara-header__mobile-shop {
  display: none;
  color: var(--aguara-orange-dark);
  background: rgba(255, 138, 61, 0.08);
  border: 1px solid rgba(255, 138, 61, 0.18);
  box-shadow: none;
}

.aguara-header__mobile-shop:hover,
.aguara-header__mobile-shop:focus-visible {
  color: var(--aguara-orange-dark);
  background: rgba(255, 138, 61, 0.12);
}

.aguara-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.58rem 0.95rem;
  color: var(--aguara-text);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 225, 214, 0.9);
  border-radius: var(--aguara-radius-pill);
  box-shadow: none;
}

.aguara-pill-link--cart {
  background: rgba(255, 138, 61, 0.08);
  border-color: rgba(255, 138, 61, 0.18);
}

.aguara-pill-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  padding: 0 0.35rem;
  color: var(--aguara-white);
  font-size: 0.74rem;
  background: linear-gradient(135deg, var(--aguara-orange), var(--aguara-orange-dark));
  border-radius: 999px;
}

.aguara-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(43, 43, 43, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 0;
}

.aguara-category-grid,
.aguara-benefit-grid,
.aguara-testimonial-grid,
.aguara-product-grid {
  display: grid;
  gap: 1.25rem;
}

.aguara-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aguara-benefit-grid,
.aguara-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.aguara-category-card,
.aguara-benefit-card,
.aguara-testimonial-card,
.aguara-product-card,
.aguara-info-card,
.aguara-accordion-item,
.aguara-cta-banner,
.aguara-story-card,
.aguara-contact-card {
  background: var(--aguara-white);
  border: 1px solid rgba(231, 225, 214, 0.92);
  border-radius: var(--aguara-radius-lg);
  box-shadow: var(--aguara-shadow-soft);
}

.aguara-category-card,
.aguara-benefit-card,
.aguara-testimonial-card,
.aguara-info-card,
.aguara-story-card,
.aguara-contact-card {
  position: relative;
  padding: 1.45rem;
  overflow: hidden;
}

.aguara-category-card,
.aguara-benefit-card,
.aguara-product-card,
.aguara-cta-banner {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.aguara-category-card:hover,
.aguara-benefit-card:hover,
.aguara-product-card:hover,
.aguara-cta-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(43, 43, 43, 0.11);
}

.aguara-category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  opacity: 0.92;
}

.aguara-category-card {
  display: grid;
  align-content: space-between;
  min-height: 228px;
}

.aguara-category-card__body {
  display: grid;
  gap: 0.35rem;
}

.aguara-category-card--green::before,
.aguara-category-card--green-dark::before {
  background: linear-gradient(90deg, var(--aguara-green), rgba(126, 217, 87, 0.2));
}

.aguara-category-card--orange::before,
.aguara-category-card--orange-dark::before {
  background: linear-gradient(90deg, var(--aguara-orange), rgba(255, 138, 61, 0.22));
}

.aguara-category-card__eyebrow,
.aguara-benefit-card__kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--aguara-text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aguara-category-card h3,
.aguara-benefit-card h3,
.aguara-product-card__title,
.aguara-testimonial-card__author,
.aguara-info-card strong,
.aguara-cta-banner h2,
.aguara-story-card h3,
.aguara-contact-card strong {
  margin: 0;
  font-family: Nunito, Inter, sans-serif;
  font-weight: 800;
}

.aguara-category-card h3,
.aguara-benefit-card h3,
.aguara-testimonial-card__author,
.aguara-story-card h3,
.aguara-contact-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.aguara-category-card p,
.aguara-benefit-card p,
.aguara-testimonial-card__quote,
.aguara-info-card span,
.aguara-story-card p,
.aguara-contact-card span {
  margin: 0.75rem 0 0;
  color: var(--aguara-text-soft);
}

.aguara-category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--aguara-text);
}

.aguara-category-card__link span[aria-hidden="true"] {
  color: var(--aguara-orange-dark);
}

.aguara-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.aguara-product-card__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 1.25rem;
  background: linear-gradient(180deg, #fffefb 0%, #f4fbef 100%);
}

.aguara-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aguara-product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.aguara-product-card__placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 24%, rgba(126, 217, 87, 0.18), transparent 34%),
    radial-gradient(circle at 24% 86%, rgba(255, 138, 61, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 241, 1));
}

.aguara-product-card__placeholder-glow {
  position: absolute;
  inset: 12% 16%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(231, 225, 214, 0.85);
}

.aguara-product-card__placeholder-brand,
.aguara-product-card__placeholder-wordmark {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: min(68%, 170px);
}

.aguara-product-card__placeholder-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.aguara-product-card__placeholder-wordmark {
  color: var(--aguara-orange-dark);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.aguara-product-card__placeholder-mascot {
  position: absolute;
  right: -2%;
  bottom: -3%;
  width: min(46%, 128px);
  height: auto;
  opacity: 0.22;
}

.aguara-product-card__placeholder-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  color: var(--aguara-text);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 225, 214, 0.9);
  border-radius: 999px;
}

.aguara-product-card__content {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 1.1rem;
}

.aguara-product-card__category {
  color: var(--aguara-text-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.aguara-product-card__title {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.16;
  font-size: 1.14rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.aguara-product-card__title a {
  display: inline-block;
}

.aguara-product-card__meta-note {
  color: var(--aguara-green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aguara-product-card__footer {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.aguara-product-card__price,
.price {
  color: var(--aguara-text);
  font-size: 1.1rem;
  font-weight: 900;
}

.aguara-product-card__cta {
  width: fit-content;
  min-height: 42px;
  padding: 0.75rem 1rem;
}

.aguara-product-card--featured-home {
  min-height: 100%;
}

.aguara-product-card--featured-home .aguara-product-card__content {
  padding: 1.3rem;
}

.aguara-accordion-item {
  overflow: hidden;
}

.aguara-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--aguara-text);
  font-weight: 800;
  text-align: left;
  background: transparent;
}

.aguara-accordion__content {
  padding: 0 1.2rem 1.2rem;
  color: var(--aguara-text-soft);
}

.aguara-info-grid {
  display: grid;
  gap: 1rem;
}

.aguara-info-grid--product {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aguara-info-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.aguara-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.85rem;
}

.aguara-cta-banner h2 {
  font-size: clamp(1.45rem, 1.8vw, 2.2rem);
  line-height: 1.08;
}

.aguara-cta-banner__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.aguara-footer {
  margin-top: 3.6rem;
  background: var(--aguara-white);
  border-top: 1px solid var(--aguara-border);
}

.aguara-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  padding: 2.3rem 0 2rem;
}

.aguara-footer__brand p {
  max-width: 32ch;
  margin: 1rem 0 0;
  color: var(--aguara-text-soft);
}

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

.aguara-footer__section {
  display: grid;
  gap: 0.9rem;
}

.aguara-footer__heading {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aguara-footer-menu,
.aguara-footer-links {
  display: grid;
  gap: 0.7rem;
}

.aguara-footer-menu a,
.aguara-footer-links a {
  color: var(--aguara-text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.aguara-footer-menu a:hover,
.aguara-footer-links a:hover,
.aguara-footer-links a:focus-visible {
  color: var(--aguara-text);
}

.aguara-footer__bottom {
  border-top: 1px solid rgba(231, 225, 214, 0.9);
}

.aguara-footer__bottom .aguara-container {
  padding: 1rem 0 1.25rem;
}

.aguara-footer__bottom p {
  margin: 0;
  color: var(--aguara-text-soft);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .aguara-header__panel-inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) auto;
    gap: 0.9rem;
  }

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

  .aguara-benefit-grid,
  .aguara-testimonial-grid,
  .aguara-info-grid--product,
  .aguara-footer__navs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .aguara-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 66px;
  }

  .aguara-brand__asset,
  .custom-logo-link img {
    height: 44px;
  }

  .aguara-brand__text strong {
    font-size: 0.93rem;
  }

  .aguara-brand__text small {
    display: none;
  }

  .aguara-header__quick-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
  }

  .aguara-header__cart-quick,
  .aguara-header__toggle {
    display: inline-flex;
  }

  .aguara-header__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 59;
    width: min(90vw, 360px);
    padding: calc(1rem + env(safe-area-inset-top)) 1rem 1rem;
    background: rgba(255, 253, 249, 0.98);
    border-left: 1px solid rgba(231, 225, 214, 0.9);
    box-shadow: -18px 0 36px rgba(43, 43, 43, 0.14);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .aguara-header.is-open .aguara-header__panel {
    transform: translateX(0);
  }

  .aguara-header.is-open .aguara-header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .aguara-header__panel-inner {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    height: 100%;
  }

  .aguara-header__panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .aguara-menu {
    display: grid;
    gap: 0.2rem;
  }

  .aguara-menu a {
    padding: 0.88rem 0;
    border-bottom: 1px solid rgba(231, 225, 214, 0.9);
  }

  .aguara-menu a::after {
    display: none;
  }

  .aguara-header__search {
    order: -1;
    width: 100%;
  }

  .aguara-header__panel-actions {
    display: grid;
    justify-content: stretch;
    gap: 0.75rem;
  }

  .aguara-header__mobile-shop {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .aguara-header__utility-link,
  .aguara-header__utility-link--cart {
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 0.95rem;
    background: var(--aguara-white);
    border: 1px solid rgba(231, 225, 214, 0.92);
    border-radius: var(--aguara-radius-pill);
  }

  .aguara-product-card__cta {
    width: 100%;
  }

  .aguara-cta-banner,
  .aguara-footer__inner,
  .aguara-footer__navs,
  .aguara-benefit-grid,
  .aguara-testimonial-grid,
  .aguara-info-grid--product {
    grid-template-columns: 1fr;
  }

  .aguara-footer__inner {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .aguara-category-grid,
  .aguara-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .aguara-benefit-grid,
  .aguara-testimonial-grid,
  .aguara-info-grid--product {
    grid-template-columns: 1fr;
  }

  .aguara-category-card,
  .aguara-benefit-card,
  .aguara-testimonial-card,
  .aguara-info-card,
  .aguara-story-card,
  .aguara-contact-card,
  .aguara-cta-banner {
    padding: 1.15rem;
  }

  .aguara-product-card__content {
    padding: 0.95rem;
  }

  .aguara-product-card__title {
    font-size: 1rem;
  }

  .aguara-product-card__price {
    font-size: 1rem;
  }

  .aguara-footer__bottom .aguara-container {
    padding-bottom: 1.4rem;
  }
}
