/* =========================================================
HOME PAGE CSS
Only homepage sections should remain here.
Shared global styles now live in theme.css
========================================================= */

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: var(--green);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobDrift 12s ease-in-out infinite alternate;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--green-light);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  bottom: -80px;
  left: 10%;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: var(--green-mid);
  top: 40%;
  right: 30%;
  animation-delay: -8s;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero-tag::before {
  content: "✦";
  font-size: 0.6rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.7);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeUp 0.6s 1s forwards;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(60, 122, 87, 0.4), rgba(26, 58, 42, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--cream);
}

.hero-img-placeholder .icon {
  font-size: 5rem;
  opacity: 0.4;
}

.hero-img-placeholder span {
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  animation: float 4s ease-in-out infinite;
}

.float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.float-card-1 {
  bottom: -24px;
  left: -24px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 24px;
  right: -24px;
  animation-delay: -2s;
}

.fc-sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

/* ─── TRUST BELT ─────────────────────────────────────────────────────── */
.trust-belt {
  background: var(--cream-dark);
  border-top: 1px solid rgba(26, 58, 42, 0.08);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
  padding: 28px 24px;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: var(--gold);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon img{
    max-width: 65%;
}

.why-feat-icon img{
    max-width: 65%;
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── SECTION COMMON ─────────────────────────────────────────────────── */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: "—";
  opacity: 0.4;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── CATEGORIES ─────────────────────────────────────────────────────── */
.categories-section {
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
}

.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card:hover .cat-bg {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.9) 0%, rgba(26, 58, 42, 0.2) 60%, transparent 100%);
  transition: opacity var(--transition);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(26, 58, 42, 0.96) 0%, rgba(26, 58, 42, 0.4) 70%, transparent 100%);
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--cream);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cat-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}

.cat-count {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.05em;
}

.cat-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* .cat-1 .cat-bg {
  background: linear-gradient(135deg, #2d5a40 0%, #1a3a2a 100%);
}

.cat-2 .cat-bg {
  background: linear-gradient(135deg, #3d5c30 0%, #253820 100%);
}

.cat-3 .cat-bg {
  background: linear-gradient(135deg, #1a4035 0%, #0d2518 100%);
}

.cat-4 .cat-bg {
  background: linear-gradient(135deg, #3a3a2a 0%, #1e1e12 100%);
} */

/* ─── PRODUCTS ───────────────────────────────────────────────────────── */
.products-section {
  background: var(--cream);
}

.products-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
  border: 1.5px solid rgba(26, 58, 42, 0.2);
  background: transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

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

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 42, 0.07);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.14);
}

.product-img-wrap {
  position: relative;
  background: var(--cream);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist:hover {
  color: #e05252;
  background: #fff0f0;
}

.product-body {
  padding: 16px 18px 20px;
}

.product-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 2.8em;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
}

.product-original {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-saving {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2a7a42;
  background: #e8f5ed;
  padding: 2px 7px;
  border-radius: 99px;
}

.btn-add-cart {
  width: 100%;
  background: var(--green);
  color: var(--cream);
  padding: 11px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

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

.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}

/* ─── QUOTE BANNER ───────────────────────────────────────────────────── */
.quote-section {
  background: var(--green);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--green-light);
  border-radius: 50%;
  opacity: 0.1;
  top: -200px;
  right: -200px;
  filter: blur(60px);
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-inner .section-tag {
  color: var(--gold-light);
}

.quote-inner .section-tag::before,
.quote-inner .section-tag::after {
  color: rgba(232, 201, 122, 0.4);
}

.quote-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}

.quote-title em {
  font-style: italic;
  color: var(--gold-light);
}

.quote-sub {
  color: rgba(245, 240, 232, 0.65);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quote-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.quote-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.85rem;
}

.quote-perk span:first-child {
  color: var(--gold-light);
  font-size: 1rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--green);
  padding: 15px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

/* ─── WHY SECTION ────────────────────────────────────────────────────── */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content .section-header {
  text-align: left;
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(26, 58, 42, 0.07);
  transition: all var(--transition);
  cursor: default;
}

.why-feature:hover {
  background: var(--cream);
  border-color: rgba(26, 58, 42, 0.15);
  transform: translateX(4px);
}

.why-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: var(--gold);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}

.why-feat-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-img-card {
  border-radius: 20px;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(26, 58, 42, 0.1);
  box-shadow: 0 14px 34px rgba(26, 58, 42, 0.14);
}

.why-img-card:nth-child(2) {
  margin-top: 40px;
}

.why-img-card .wic-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to bottom, rgba(12, 24, 18, 0.34) 0%, rgba(12, 24, 18, 0.14) 28%, rgba(12, 24, 18, 0.03) 52%, rgba(12, 24, 18, 0.38) 100%);
  pointer-events: none;
}

.wic-1 .wic-bg {
  background:
    linear-gradient(to bottom, rgba(12, 24, 18, 0.32) 0%, rgba(12, 24, 18, 0.13) 30%, rgba(12, 24, 18, 0.03) 54%, rgba(12, 24, 18, 0.35) 100%);
}

.wic-2 .wic-bg {
  background:
    linear-gradient(to bottom, rgba(10, 20, 16, 0.34) 0%, rgba(10, 20, 16, 0.15) 32%, rgba(10, 20, 16, 0.03) 56%, rgba(10, 20, 16, 0.38) 100%);
}

.wic-3 .wic-bg {
  background:
    linear-gradient(to bottom, rgba(8, 18, 14, 0.34) 0%, rgba(8, 18, 14, 0.15) 30%, rgba(8, 18, 14, 0.03) 56%, rgba(8, 18, 14, 0.38) 100%);
}

.wic-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream-dark);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── GOOGLE REVIEWS ─────────────────────────────────────────────────── */
.google-reviews-section {
  background: var(--cream-dark);
  padding: 72px 24px;
}

.google-reviews-wrap {
  background: #ffffff;
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(26, 58, 42, 0.06);
  padding: 30px;
}

.google-reviews-wrap .section-header {
  margin-bottom: 24px;
}

.google-reviews-plugin {
  border-radius: 14px;
  overflow: hidden;
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(26, 58, 42, 0.07);
  position: relative;
  transition: all var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 58, 42, 0.1);
}

.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  opacity: 0.4;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── NEWSLETTER ─────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--cream);
  padding: 60px 24px;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner .section-title {
  margin-bottom: 8px;
  margin-top: 0px;
}

.quote-inner .quote-title {
  margin-bottom: 8px;
  margin-top: 0px;
}

.section-header .section-title{
  margin-bottom: 8px;
  margin-top: 0px;
}

.newsletter-inner .section-sub {
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(26, 58, 42, 0.2);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--green);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  background: var(--green);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--green-mid);
}

.newsletter-form.is-loading button {
  opacity: 0.75;
  cursor: wait;
}

.newsletter-feedback {
  margin: 10px 2px 0;
  font-size: 0.82rem;
  line-height: 1.4;
  min-height: 1.2em;
}

.newsletter-feedback.is-success {
  color: #2a7a42;
}

.newsletter-feedback.is-error {
  color: #b42318;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    margin-top: 40px;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
  }

  .quote-perks {
    flex-direction: column;
    gap: 12px;
  }

  .why-visual {
    grid-template-columns: 1fr;
  }

  .why-img-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

.btn-out-of-stock {
	background: #b7b7b7;
	color: #ffffff;
	opacity: 0.8;
	cursor: not-allowed;
	pointer-events: none;
}