/* ── RESET & ROOT ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #F4823A;
  --orange-dk: #D96A22;
  --orange-lt: #FFF0E6;
  --brown: #4A2C17;
  --brown-md: #7B4B2A;
  --brown-lt: #C49A6C;
  --cream: #FDF8F3;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --gray-lt: #F2EEEA;
  --text: #2A1A0E;
  --shadow: 0 4px 24px rgba(74, 44, 23, .10);
  --shadow-lg: 0 12px 48px rgba(74, 44, 23, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-lt);
  border-radius: 3px;
}

/* ── TOP BAR ───────────────────────────────────────── */
.topbar {
  background: var(--brown);
  color: var(--brown-lt);
  font-size: .78rem;
  letter-spacing: .06em;
  text-align: center;
  padding: .4rem 1rem;
  font-weight: 500;
}

.topbar span {
  color: var(--orange);
  font-weight: 600;
}

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(253, 248, 243, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 154, 108, .2);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}

.nav-logo .paw {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50% 50% 50% 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 10px rgba(244, 130, 58, .35);
  transition: transform .25s;
}

.nav-logo:hover .paw {
  transform: rotate(-10deg) scale(1.08);
}

.nav-logo .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brown);
  line-height: 1;
}

.nav-logo .brand em {
  color: var(--orange);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown-md);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width .25s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.btn-login {
  background: transparent;
  border: 1.5px solid var(--brown-lt);
  color: var(--brown);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.btn-login:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-cart {
  background: var(--orange);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  box-shadow: 0 3px 10px rgba(244, 130, 58, .4);
  transition: transform .2s, box-shadow .2s;
}

.btn-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 16px rgba(244, 130, 58, .5);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brown);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 5% 3rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background: url('images/start.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(42, 26, 14, .55) 0%,
      rgba(42, 26, 14, .35) 35%,
      rgba(42, 26, 14, .18) 60%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  z-index: 1;
  background: rgba(253, 248, 243, .45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 28px;
  padding: 2.5rem 2.8rem;
  box-shadow:
    0 8px 32px rgba(74, 44, 23, .12),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  max-width: 580px;
  animation: glassReveal .8s cubic-bezier(.4, 0, .2, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 240, 230, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--orange-dk);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(244, 130, 58, .3);
  animation: fadeUp .6s ease both;
  box-shadow: 0 2px 12px rgba(244, 130, 58, .15);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 1.2rem;
  animation: fadeUp .6s .1s ease both;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.2rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 20px rgba(244, 130, 58, .4);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 130, 58, .5);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown-lt);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
  animation: fadeUp .6s .4s ease both;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 16px;
  padding: .8rem 1.2rem;
  box-shadow: 0 4px 16px rgba(74, 44, 23, .08);
  transition: transform .25s, box-shadow .25s;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 44, 23, .14);
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--brown);
  line-height: 1;
}

.stat .lbl {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .8s .2s ease both;
  z-index: 1;
}

.hero-img-blob {
  width: min(520px, 90%);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #FDE8D4 0%, #F4C49A 55%, #E8A46A 100%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: morph 10s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.hero-dog-emoji {
  font-size: clamp(8rem, 16vw, 13rem);
  line-height: 1;
  filter: drop-shadow(0 20px 30px rgba(74, 44, 23, .2));
  animation: float 4s ease-in-out infinite;
}

.hero-float-tag {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: .65rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brown);
}

.hero-float-tag .icon {
  font-size: 1.2rem;
}

.tag-1 {
  top: 8%;
  left: -2%;
  animation: floatTag1 5s ease-in-out infinite;
}

.tag-2 {
  bottom: 14%;
  right: -4%;
  animation: floatTag2 6s 1s ease-in-out infinite;
}

.tag-3 {
  top: 42%;
  left: -8%;
  animation: floatTag1 4s 2s ease-in-out infinite;
}

/* ── SECTIONS ───────────────────────────────────────── */
.section {
  padding: 5rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .7rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  line-height: 1.2;
}

.section-sub {
  color: var(--gray);
  font-size: .98rem;
  margin-top: .6rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ── CATEGORIES ─────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.cat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 130, 58, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.cat-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  font-size: 3.8rem;
  display: block;
  margin-bottom: 1rem;
  transition: transform .3s;
}

.cat-card:hover .cat-icon {
  transform: scale(1.15) rotate(-5deg);
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: .45rem;
}

.cat-desc {
  font-size: .86rem;
  color: var(--gray);
  line-height: 1.55;
}

.cat-badge {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange-dk);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-top: .9rem;
  letter-spacing: .04em;
}

/* ── PRODUCTS ───────────────────────────────────────── */
.products-bg {
  background: var(--gray-lt);
}

.product-filters {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid rgba(196, 154, 108, .3);
  color: var(--brown-md);
  padding: .5rem 1.3rem;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  background: linear-gradient(135deg, #FDE8D4 0%, #F9D4AD 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.product-card:hover .product-img {
  background: linear-gradient(135deg, #F4C49A 0%, #E8A46A 100%);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
  letter-spacing: .05em;
}

.product-badge.sale {
  background: #E05252;
}

.product-badge.new {
  background: var(--brown-md);
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .95rem;
  transition: all .2s;
  color: var(--gray);
}

.product-wishlist:hover {
  background: #fff;
  color: #E05252;
  transform: scale(1.1);
}

.product-wishlist.loved {
  color: #E05252;
}

.product-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.product-meta {
  font-size: .75rem;
  color: var(--brown-lt);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .7rem;
}

.stars {
  color: var(--orange);
  font-size: .88rem;
  letter-spacing: .05em;
}

.rating-count {
  font-size: .78rem;
  color: var(--gray);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
}

.product-price .old {
  font-size: .82rem;
  font-weight: 400;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: .35rem;
}

.btn-add-cart {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 3px 10px rgba(244, 130, 58, .35);
  transition: all .25s;
}

.btn-add-cart:hover {
  background: var(--orange-dk);
  transform: scale(1.05);
}

.btn-add-cart.added {
  background: #3DAA6D;
  box-shadow: 0 3px 10px rgba(61, 170, 109, .35);
}

/* ── PROMO BANNER ───────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-md) 100%);
  padding: 4.5rem 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '🐾🐾🐾';
  position: absolute;
  right: 5%;
  bottom: -10px;
  font-size: 8rem;
  opacity: .07;
  letter-spacing: 1rem;
}

.promo-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: .8rem;
  line-height: 1.2;
}

.promo-title .highlight {
  color: var(--orange);
}

.promo-sub {
  color: rgba(255, 255, 255, .65);
  font-size: .96rem;
  line-height: 1.6;
}

.btn-promo {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(244, 130, 58, .4);
  transition: all .25s;
}

.btn-promo:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(244, 130, 58, .5);
}

/* ── TRUST STRIP ────────────────────────────────────── */
.trust-strip {
  background: var(--brown);
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .85);
}

.trust-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.trust-sub {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .15rem;
}

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform .3s;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-lt);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-lt), #F4C49A);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: .96rem;
  color: var(--brown);
}

.reviewer-dog {
  font-size: .8rem;
  color: var(--gray);
  margin-top: .15rem;
}

.review-stars {
  color: var(--orange);
  font-size: .88rem;
  margin-bottom: .8rem;
}

.review-text {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
}

.review-product {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-lt);
  font-size: .78rem;
  color: var(--brown-lt);
  font-weight: 600;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, .75);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.4rem;
}

.social-links {
  display: flex;
  gap: .7rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: rgba(255, 255, 255, .75);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: .65rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-contact p {
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .7rem;
}

.footer-contact .ic {
  color: var(--orange);
  flex-shrink: 0;
}

.newsletter {
  margin-top: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: .4rem;
  margin-top: .6rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: .6rem 1rem;
  color: #fff;
  font-size: .84rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form input:focus {
  border-color: var(--orange);
}

.newsletter-form button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}

.newsletter-form button:hover {
  background: var(--orange-dk);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

.footer-bottom .pay-icons {
  display: flex;
  gap: .5rem;
}

.pay-icon {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: .2rem .55rem;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

/* ── CART PANEL ─────────────────────────────────────── */
cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(42, 26, 14, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  width: min(400px, 95vw);
  background: var(--cream);
  box-shadow: -10px 0 50px rgba(0, 0, 0, .2);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-head {
  padding: 1.3rem 1.5rem;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

.cart-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: background .2s;
}

.cart-close:hover {
  background: rgba(255, 255, 255, .25);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(196, 154, 108, .2);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FDE8D4, #F4C49A);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.cart-item-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--brown);
}

.cart-item-price {
  font-size: .84rem;
  color: var(--orange);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .3rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-lt);
  background: none;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brown-md);
  display: grid;
  place-items: center;
  transition: all .2s;
}

.qty-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.qty-num {
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown);
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-lt);
  font-size: .9rem;
  transition: color .2s;
}

.cart-item-remove:hover {
  color: #E05252;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}

.cart-empty .empty-icon {
  font-size: 3.5rem;
  margin-bottom: .8rem;
}

.cart-footer {
  padding: 1.3rem 1.5rem;
  border-top: 1px solid rgba(196, 154, 108, .2);
  background: var(--white);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.btn-checkout {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .95rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(244, 130, 58, .4);
  transition: all .25s;
}

.btn-checkout:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

/* ── TOAST ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 3000;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 3000;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── MOBILE NAV ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 108, .2);
  padding-bottom: 1rem;
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brown);
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes glassReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.97);
    backdrop-filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    backdrop-filter: blur(18px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatTag1 {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatTag2 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes morph {

  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }

  33% {
    border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%;
  }

  66% {
    border-radius: 55% 45% 60% 40% / 45% 55% 50% 50%;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions .btn-login {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem 4% 3rem;
    text-align: center;
  }

  .hero::before {
    background: linear-gradient(180deg,
        rgba(42, 26, 14, .5) 0%,
        rgba(42, 26, 14, .35) 40%,
        rgba(42, 26, 14, .2) 70%,
        transparent 100%);
  }

  .hero-content {
    background: rgba(253, 248, 243, .55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, .5);
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-img-blob {
    width: min(320px, 80vw);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
    min-width: 90px;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .tag-3 {
    display: none;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 0 4%;
  }
}

/* ── PAYMENT MODAL ───────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 420px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform .3s;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.modal-head h3 {
  color: #4A2C17;
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #999;
  transition: color .2s;
}

.modal-close:hover {
  color: #4A2C17;
}

.modal-summary {
  background: #FDF8F3;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.2rem;
}

.modal-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .9rem;
  color: #4A2C17;
  border-bottom: 1px solid #f0e8e0;
}

.modal-summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  color: #F4823A;
  margin-top: .3rem;
  padding-top: .6rem;
}

.modal-section {
  margin-bottom: 1.2rem;
}

.modal-label {
  font-size: .85rem;
  font-weight: 700;
  color: #4A2C17;
  margin-bottom: .6rem;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border: 1.5px solid #e0d5cc;
  border-radius: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: #4A2C17;
  transition: all .2s;
}

.pay-option:hover {
  border-color: #F4823A;
  background: #FDF8F3;
}

.pay-option input[type="radio"] {
  accent-color: #F4823A;
}

.pay-option input[type="radio"]:checked+span {
  color: #F4823A;
  font-weight: 600;
}

.btn-place-order {
  width: 100%;
  padding: 14px;
  background: #F4823A;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
  font-family: 'DM Sans', sans-serif;
}

.btn-place-order:hover {
  background: #D96A22;
}

.btn-place-order:active {
  transform: scale(.98);
}

.btn-place-order:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ── MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 460px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform .3s;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-head h3 {
  color: #4A2C17;
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #4A2C17;
}

.modal-summary {
  background: #FDF8F3;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.modal-summary-item {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  font-size: .88rem;
  color: #4A2C17;
  border-bottom: 1px solid #f0e8e0;
}

.modal-summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: .95rem;
  color: #F4823A;
  padding-top: .5rem;
  margin-top: .2rem;
}

.modal-section {
  margin-bottom: 1rem;
}

.modal-label {
  font-size: .82rem;
  font-weight: 700;
  color: #4A2C17;
  margin-bottom: .5rem;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border: 1.5px solid #e0d5cc;
  border-radius: 10px;
  cursor: pointer;
  font-size: .88rem;
  color: #4A2C17;
  transition: all .2s;
}

.pay-option:hover {
  border-color: #F4823A;
  background: #FDF8F3;
}

.pay-option input[type="radio"] {
  accent-color: #F4823A;
}

.btn-place-order {
  width: 100%;
  padding: 13px;
  background: #F4823A;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-place-order:hover {
  background: #D96A22;
}

.btn-place-order:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ── REVIEWS LAYOUT ─────────────────────────────────── */

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.reviews-left {
  position: relative;
}

.rev_img {
  position: relative;
  background-image: url("./images/review.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(74, 44, 23, .15);
  overflow: visible;
}

/* OVERLAY CARD */
.overlay-card {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: #f07c4a;
  color: white;
  padding: 1.5rem;
  border-radius: 18px;
  width: 280px;
  box-shadow: 0 12px 30px rgba(240, 124, 74, .35);
  z-index: 2;
}

.overlay-stars {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  letter-spacing: 2px;
}

.overlay-card p {
  font-size: .9rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: .6rem;
  opacity: .95;
}

.overlay-card span {
  font-size: .82rem;
  font-weight: 700;
  opacity: .9;
  display: block;
}

/* RIGHT: TESTIMONIAL CARDS */
.reviews-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 2.2rem;
  box-shadow: 0 4px 20px rgba(74, 44, 23, .08);
  border: 1px solid rgba(196, 154, 108, .12);
  transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(74, 44, 23, .12);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.testimonial-author {
  font-size: .92rem;
  font-weight: 700;
  color: var(--orange);
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .rev_img {
    max-width: 400px;
    margin: 0 auto;
  }

  .overlay-card {
    left: 10px;
    bottom: -20px;
    width: 240px;
  }
}
