@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  --primary-green: #0d382f;
  --primary-green-dark: #072a22;
  --primary-green-light: #154c40;
  --primary-orange: #f15b24;
  --primary-orange-hover: #dd4b16;
  --accent-cream: #fbf9f4;
  --accent-sand: #f5eedf;
  --text-main: #1a202c;
  --text-muted: #718096;
  --border-color: #ede8dc;
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --max-w: 1380px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--accent-cream);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lock-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: all .2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* -------------------------------------------------------------
   1. TOP TICKER BAR
   ------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-green);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.top-bar__item .icon {
  font-size: 0.95rem;
}

.top-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.22);
}

/* -------------------------------------------------------------
   2. MAIN HEADER
   ------------------------------------------------------------- */
.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.main-header__logo img {
  width: 190px;
  height: auto;
}

/* Search Bar (Capsule Modern) */
.search-form {
  flex: 1;
  max-width: 540px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-form__input {
  width: 100%;
  height: 44px;
  padding: 0 52px 0 1.35rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-main);
  outline: none;
  transition: all .2s ease;
}

.search-form__input:focus {
  background: #ffffff;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(241, 91, 36, 0.12);
}

.search-form__input::placeholder {
  color: #94a3b8;
}

.search-form__btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 34px;
  height: 34px;
  background-color: var(--primary-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}

.search-form__btn:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.05);
}

/* Header User Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-main);
}

.header-action-btn__icon-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background .2s, color .2s;
}

.header-action-btn:hover .header-action-btn__icon-wrap {
  background: #fdeee7;
  color: var(--primary-orange);
}

.header-action-btn__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary-orange);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.header-action-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-action-btn__title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.header-action-btn__subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: all .2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background: var(--accent-cream);
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}



/* -------------------------------------------------------------
   4. HERO BANNER CAROUSEL
   ------------------------------------------------------------- */
.hero-carousel-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 1600 / 640; /* 5:2 */
  width: 100%;
  background-color: #f7f5ef;
}

.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hero-slide a,
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.hero-carousel__btn:hover {
  background: #ffffff;
  color: var(--primary-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(241, 91, 36, 0.35);
}

.hero-carousel__btn svg {
  display: block;
  transition: transform .2s ease;
}

.hero-carousel__btn--prev { left: 2rem; }
.hero-carousel__btn--next { right: 2rem; }
.hero-carousel__btn--prev:hover svg { transform: translateX(-2px); }
.hero-carousel__btn--next:hover svg { transform: translateX(2px); }

.hero-carousel__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  transition: all .25s ease;
  cursor: pointer;
  padding: 0;
}

.hero-carousel__dot.is-active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

/* -------------------------------------------------------------
   5. COMPRE POR CATEGORIA
   ------------------------------------------------------------- */
.categories-section {
  padding: 1.5rem 0 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-header__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.section-header__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4a5568;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-header__link:hover {
  color: var(--primary-orange);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  group: true;
}

.category-card__circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #ece6db;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 0.65rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.category-card:hover .category-card__circle {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(241, 91, 36, 0.15);
  border-color: var(--primary-orange);
}

.category-card:hover .category-card__circle img {
  transform: scale(1.1);
}

.category-card__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.25;
  transition: color .2s ease;
}

.category-card:hover .category-card__name {
  color: var(--primary-orange);
}

/* -------------------------------------------------------------
   6. PRODUTOS EM DESTAQUE (VITRINE)
   ------------------------------------------------------------- */
.products-section {
  padding: 1rem 0 3rem;
}

.products-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.filter-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4a5568;
  transition: all .2s ease;
}

.filter-pill:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.filter-pill.is-active {
  background: var(--primary-orange);
  color: #ffffff;
  border-color: var(--primary-orange);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid #ede8dc;
  border-radius: var(--radius-md);
  padding: 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #dfd8c9;
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 24px;
}

.product-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.product-badge--orange { background: var(--primary-orange); color: #ffffff; }
.product-badge--red { background: #e53e3e; color: #ffffff; }
.product-badge--green { background: #38a169; color: #ffffff; }
.product-badge--blue { background: #3182ce; color: #ffffff; }

.fav-btn {
  font-size: 1.15rem;
  color: #a0aec0;
  transition: transform .2s ease, color .2s ease;
  line-height: 1;
}

.fav-btn:hover {
  color: #e53e3e;
  transform: scale(1.2);
}

.fav-btn.is-favorited {
  color: #e53e3e;
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
}

.product-card__img-wrap img {
  max-width: 100%;
  max-height: 165px;
  object-fit: contain;
  transition: transform .3s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 0.5rem;
}

.product-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3rem;
  margin-bottom: 0.35rem;
  cursor: pointer;
}

.product-card__title:hover {
  color: var(--primary-orange);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: #f6ad55;
  letter-spacing: 1px;
}

.rating-count {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.7rem;
}

.product-pricing {
  margin-top: auto;
  margin-bottom: 0.85rem;
}

.price-old {
  font-size: 0.75rem;
  color: #a0aec0;
  text-decoration: line-through;
  font-weight: 600;
}

.price-current {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin: 0.15rem 0;
}

.price-installment {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-add-cart {
  width: 100%;
  height: 40px;
  background-color: var(--primary-orange);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 3px 8px rgba(241, 91, 36, 0.2);
}

.btn-add-cart:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(241, 91, 36, 0.3);
}

.btn-text-short {
  display: none;
}

.btn-text-full {
  display: inline;
}

/* -------------------------------------------------------------
   7. BANNERS MEIO DO SITE (MID-PAGE BANNERS)
   ------------------------------------------------------------- */
.mid-banners-section {
  padding: 1.5rem 0 2.5rem;
}

.mid-banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.mid-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}

.mid-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.mid-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mid-banner-card:hover img {
  transform: scale(1.02);
}

.mid-banner-card--full {
  width: 100%;
}

/* -------------------------------------------------------------
   8. TRUST & BENEFITS BADGES
   ------------------------------------------------------------- */
.trust-bar-section {
  padding: 1rem 0 2.5rem;
}

.trust-bar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.8rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.trust-item__text h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-item__text p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   9. NOSSO PET SHOP (PHYSICAL STORE & LOCATION)
   ------------------------------------------------------------- */
.store-section {
  padding: 1.5rem 0 4rem;
}

.store-card {
  background-color: var(--primary-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 1.5fr;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  min-height: 440px;
}

.store-card__map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  background: #203a34;
}

.store-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.store-card__info {
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-badge {
  display: inline-block;
  background: rgba(241, 91, 36, 0.22);
  color: #ff9166;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  width: fit-content;
}

.store-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.store-card__desc {
  font-size: 0.88rem;
  color: #d1fae5;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.store-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.location-item__icon {
  font-size: 1.35rem;
  color: var(--primary-orange);
  line-height: 1;
  margin-top: 2px;
}

.location-item__text h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.location-item__text p {
  font-size: 0.82rem;
  color: #d1fae5;
  line-height: 1.4;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background-color: var(--primary-orange);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  width: fit-content;
  box-shadow: 0 4px 14px rgba(241, 91, 36, 0.4);
  transition: all .2s ease;
}

.btn-map:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 91, 36, 0.5);
}

.store-card__media {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-green-dark);
  color: #ffffff;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand__logo img {
  width: 175px;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer-brand__text {
  font-size: 0.82rem;
  color: #a7f3d0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all .2s ease;
}

.social-link:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-nav__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav__link {
  font-size: 0.8rem;
  color: #a7f3d0;
  transition: color .2s ease;
}

.footer-nav__link:hover {
  color: var(--primary-orange);
}

/* Newsletter Col */
.footer-newsletter__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-newsletter__desc {
  font-size: 0.78rem;
  color: #a7f3d0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.newsletter-form {
  position: relative;
  margin-bottom: 0.75rem;
}

.newsletter-input {
  width: 100%;
  height: 44px;
  padding: 0 46px 0 1rem;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-main);
  outline: none;
}

.newsletter-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  background-color: var(--primary-orange);
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-btn:hover {
  background-color: var(--primary-orange-hover);
}

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #a7f3d0;
  cursor: pointer;
}

.newsletter-checkbox input {
  margin-top: 2px;
  accent-color: var(--primary-orange);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: #6ee7b7;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a:hover {
  color: #ffffff;
}

/* -------------------------------------------------------------
   11. CART DRAWER & MODAL DE PRODUTO
   ------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 92vw);
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-drawer__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.cart-drawer__close {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.cart-drawer__close:hover {
  color: var(--text-main);
}

.cart-drawer__shipping {
  background: var(--accent-sand);
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a4b35;
}

.cart-drawer__shipping-bar {
  width: 100%;
  height: 6px;
  background: #e2d7c5;
  border-radius: var(--radius-full);
  margin-top: 0.4rem;
  overflow: hidden;
}

.cart-drawer__shipping-fill {
  height: 100%;
  background: var(--primary-orange);
  width: 0%;
  transition: width .3s ease;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1ece1;
  align-items: center;
}

.cart-item__thumb {
  width: 70px;
  height: 70px;
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 4px;
  object-fit: contain;
  background: #fff;
}

.cart-item__details {
  flex: 1;
}

.cart-item__name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.cart-item__price {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-orange);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

.qty-btn:hover {
  background: #f4ede2;
}

.cart-item__remove {
  color: #a0aec0;
  font-size: 1.1rem;
  margin-left: auto;
}

.cart-item__remove:hover {
  color: #e53e3e;
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cart-summary-row--total {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background-color: var(--primary-orange);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(241, 91, 36, 0.3);
}

.btn-checkout:hover {
  background-color: var(--primary-orange-hover);
}

/* -------------------------------------------------------------
   QUICK VIEW PRODUCT MODAL (HIGH-END LUXURY DESIGN)
   ------------------------------------------------------------- */
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(820px, 92vw);
  background: #ffffff;
  border-radius: 20px;
  z-index: 1000;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  z-index: 20;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}

.product-modal__close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.product-modal__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  max-height: 86vh;
}

/* Coluna Esquerda: Showcase do Produto */
.product-modal__media {
  background: #f8fafc;
  border-right: 1px solid #f1f5f9;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.product-modal__img-box {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.product-modal__img-box img {
  max-height: 250px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.06));
}

.modal-trust-strip {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.modal-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.modal-trust-pill .trust-icon {
  font-size: 0.85rem;
}

/* Coluna Direita: Informações & Ações */
.product-modal__info {
  padding: 1.75rem 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  padding-right: 2rem;
}

.product-modal__cat {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-fav-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all .2s ease;
}

.modal-fav-icon-btn:hover,
.modal-fav-icon-btn.is-active {
  background: #fef2f2;
  border-color: #fecaca;
  transform: scale(1.1);
}

.product-modal__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0.15rem 0 0.25rem;
}

.product-modal__reviews {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.product-modal__reviews .stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.product-modal__reviews .rating-text {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* Pricing Clean */
.modal-pricing-clean {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.65rem;
}

.price-row-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}

.price-row-top .price-old {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-row-top .pix-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
}

.price-row-main {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}

.price-row-main .price-current {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-row-main .price-installment {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

.modal-pricing-clean .price-pix {
  font-size: 0.74rem;
  font-weight: 700;
  color: #166534;
}

.product-modal__desc {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-modal__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  padding: 0;
}

.product-modal__specs li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  color: #334155;
}

.product-modal__specs li span {
  color: #16a34a;
  font-weight: 800;
}

/* Action Row */
.modal-action-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.modal-qty-picker {
  display: flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  height: 40px;
}

.modal-qty-picker .qty-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: background .15s;
}

.modal-qty-picker .qty-btn:hover {
  background: #e2e8f0;
  color: var(--primary-orange);
}

.modal-qty-picker input {
  width: 34px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0f172a;
}

.btn-modal-cart {
  flex: 1;
  height: 40px;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 8px;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(241, 91, 36, 0.25);
  transition: all .2s ease;
  cursor: pointer;
  border: none;
}

.btn-modal-cart:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(241, 91, 36, 0.35);
}

.btn-whatsapp-elegant {
  width: 100%;
  height: 36px;
  background-color: #0f766e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
  margin-bottom: 0.5rem;
}

.btn-whatsapp-elegant:hover {
  background-color: #115e59;
  transform: translateY(-1px);
}

.modal-shipping-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  text-align: center;
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-green-dark);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-lg);
  z-index: 1010;
  transform: translateY(100px);
  opacity: 0;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* -------------------------------------------------------------
   MOBILE NAVIGATION DRAWER
   ------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86%;
  max-width: 340px;
  background: #ffffff;
  z-index: 1002;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s ease;
  will-change: transform;
  visibility: hidden;
  overflow: hidden;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #edf2f7;
  background: #ffffff;
}

.mobile-drawer__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer__close:hover,
.mobile-drawer__close:active {
  background: #fee2e2;
  color: #dc2626;
  transform: rotate(90deg);
}

.mobile-drawer__content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.15rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer__welcome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
}

.welcome-avatar {
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(241, 91, 36, 0.15);
}

.welcome-text {
  display: flex;
  flex-direction: column;
}

.welcome-text strong {
  font-size: 0.85rem;
  color: var(--primary-green-dark);
}

.welcome-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mobile-drawer__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.drawer-action-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-action-card:hover,
.drawer-action-card:active {
  background: #ffffff;
  border-color: var(--primary-orange);
  box-shadow: 0 3px 10px rgba(241, 91, 36, 0.12);
}

.drawer-action-card__icon {
  font-size: 1.25rem;
}

.drawer-action-card__info {
  display: flex;
  flex-direction: column;
}

.drawer-action-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.drawer-action-card__sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mobile-drawer__section-title {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.mobile-drawer__section-title span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.mobile-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-drawer__list li {
  opacity: 0;
  transform: translateX(-12px);
}

.mobile-drawer.is-open .mobile-drawer__list li {
  animation: drawerItemEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.028s);
}

@keyframes drawerItemEnter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.18s ease;
}

.mobile-drawer__link:hover,
.mobile-drawer__link:active {
  background: rgba(241, 91, 36, 0.08);
  color: var(--primary-orange);
}

.mobile-drawer__link.is-active {
  background: var(--accent-cream);
  color: var(--primary-green);
  font-weight: 800;
}

.drawer-link__icon {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}

.drawer-link__text {
  flex: 1;
}

.drawer-link__arrow {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 700;
}

.drawer-link__badge {
  font-size: 0.62rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
}

.drawer-link__badge--orange {
  background: #ffedd5;
  color: #c2410c;
}

.mobile-drawer__services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-service-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-service-btn--grooming {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.drawer-service-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.drawer-service-btn .service-icon {
  font-size: 1.25rem;
}

.drawer-service-btn .service-text {
  display: flex;
  flex-direction: column;
}

.drawer-service-btn .service-text strong {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.drawer-service-btn .service-text span {
  font-size: 0.68rem;
  opacity: 0.85;
}

.mobile-drawer__store-info {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.35;
}

/* -------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .main-header__inner {
    gap: 1rem;
  }
  .search-form {
    max-width: 380px;
  }
  .header-action-btn__text {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mid-banners-row {
    grid-template-columns: 1fr;
  }
  .store-card {
    grid-template-columns: 1fr;
  }
  .store-card__map {
    min-height: 280px;
  }
  .store-card__media {
    min-height: 260px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .main-header__logo img {
    width: 135px;
    height: auto;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .search-form {
    display: none;
  }

  /* 2. Hero Carousel Mobile: Proporção 1086/1448 (3:4 retrato) */
  .hero-carousel {
    aspect-ratio: 1086 / 1448 !important;
    border-radius: 0;
    margin: 0 0 1.25rem;
    box-shadow: none;
  }

  .hero-slide picture,
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-carousel__btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
  }

  .hero-carousel__btn--prev { left: 0.5rem; }
  .hero-carousel__btn--next { right: 0.5rem; }
  .hero-carousel__dots { bottom: 0.65rem; }

  /* 3. Compre por Categoria: Carrossel horizontal deslizável suave por toque */
  .categories-section {
    padding: 0.75rem 0 1rem;
  }

  .categories-section .section-header {
    margin-bottom: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .categories-section .section-header__title {
    font-size: 1.05rem;
  }

  .categories-section .section-header__link {
    font-size: 0.68rem;
  }

  .categories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    padding: 0.15rem 0.25rem 0.5rem;
    margin: 0 -0.25rem;
  }

  .categories-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 54px;
    scroll-snap-align: start;
    text-align: center;
    padding: 0.1rem 0;
    cursor: pointer;
  }

  .category-card__circle {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.25rem;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #f1f5f9;
  }

  .category-card__circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .category-card__name {
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 4. Vitrine de Produtos: Cabeçalho com pílulas em linha horizontal única */
  .products-section {
    padding: 0.75rem 0 1.5rem;
  }

  .products-section .section-header {
    margin-bottom: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .products-section .section-header__title {
    font-size: 1.05rem;
  }

  .products-section .section-header__subtitle {
    font-size: 0.7rem;
  }

  .products-section .section-header__link {
    font-size: 0.68rem;
    margin-top: 0.1rem;
  }

  .products-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.3rem;
    padding: 0.1rem 0.15rem 0.5rem;
    margin-bottom: 0.5rem;
  }

  .products-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.25rem 0.6rem;
    font-size: 0.62rem;
    white-space: nowrap;
    border-radius: 12px;
  }

  /* 5. Grid de Produtos no Celular: 3 COLUNAS com imagens destacadas e textos otimizados */
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.35rem !important;
  }

  .product-card {
    padding: 0.35rem 0.25rem 0.45rem !important;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
  }

  .product-card__top {
    min-height: 16px !important;
    margin-bottom: 2px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .product-badge {
    font-size: 0.42rem !important;
    font-weight: 800 !important;
    padding: 1px 3px !important;
    border-radius: 3px !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    max-width: 62px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
  }

  .product-card .fav-btn {
    font-size: 0.68rem !important;
    line-height: 1 !important;
  }

  .product-card__img-wrap {
    width: 100% !important;
    height: 108px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 2px !important;
    margin: 0.1rem 0 0.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent;
  }

  .product-card__img-wrap img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-size: 0.56rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    min-height: 1.3rem !important;
    max-height: 1.3rem !important;
    margin-bottom: 0.12rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-rating {
    margin-bottom: 0.12rem !important;
    gap: 1px !important;
  }

  .product-rating .stars {
    font-size: 0.48rem !important;
    letter-spacing: -1px !important;
  }

  .product-rating .rating-count {
    display: none !important;
  }

  .product-pricing {
    margin-top: auto;
    margin-bottom: 0.25rem !important;
  }

  .price-old {
    font-size: 0.46rem !important;
    min-height: 0.58rem !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
  }

  .price-current {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
  }

  .price-installment {
    font-size: 0.44rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .product-card .btn-add-cart {
    height: 24px !important;
    font-size: 0.54rem !important;
    font-weight: 700 !important;
    padding: 0 0.2rem !important;
    border-radius: 4px !important;
    gap: 0.2rem !important;
    margin-top: auto;
  }

  .btn-text-full {
    display: none !important;
  }

  .btn-text-short {
    display: inline !important;
  }

  /* 6. Remoção dos Banners do Meio do Site no Mobile */
  .mid-banners-section {
    display: none !important;
  }

  /* 7. Barra de Confiança e Rodapé no Mobile */
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Modal de Produto no Mobile */
  .product-modal {
    width: 94vw;
    max-height: 92vh;
    border-radius: 16px;
    overflow-y: auto;
  }

  .product-modal__grid {
    grid-template-columns: 1fr;
    max-height: none;
    padding: 0;
  }

  .product-modal__media {
    padding: 1.25rem 1rem 1rem;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .product-modal__img-box {
    min-height: 170px;
  }

  .product-modal__img-box img {
    max-height: 170px;
  }

  .product-modal__info {
    padding: 1.25rem 1.15rem 1.5rem;
    max-height: none;
  }

  .product-modal__title {
    font-size: 1.15rem;
  }

  .price-row-main .price-current {
    font-size: 1.35rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .hero-carousel__btn {
    width: 32px;
    height: 32px;
  }

  .hero-carousel__btn svg {
    width: 18px;
    height: 18px;
  }

  .products-grid {
    gap: 0.25rem !important;
  }

  .product-card {
    padding: 0.28rem 0.2rem 0.35rem !important;
  }

  .product-card__img-wrap {
    height: 102px !important;
    padding: 2px !important;
    margin: 0.1rem 0 0.2rem !important;
  }

  .product-badge {
    font-size: 0.4rem !important;
    max-width: 58px !important;
    padding: 1px 3px !important;
  }

  .product-card__title {
    font-size: 0.54rem !important;
    min-height: 1.25rem !important;
    max-height: 1.25rem !important;
    line-height: 1.15 !important;
  }

  .price-old {
    font-size: 0.44rem !important;
  }

  .price-current {
    font-size: 0.72rem !important;
  }

  .price-installment {
    font-size: 0.42rem !important;
  }

  .product-card .btn-add-cart {
    height: 23px !important;
    font-size: 0.52rem !important;
    padding: 0 0.15rem !important;
  }
}
