@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,400&family=Nunito:wght@300;400;600;700;800;900&family=JetBrains+Mono:wght@400;700&family=Fredoka+One&family=Playfair+Display:wght@400;700&family=Caveat:wght@400;700&display=swap');

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --bark: #1E0F08;
  --bark2: #2C1810;
  --bark3: #3D2418;
  --terra: #C4603A;
  --terra2: #E07A50;
  --gold: #D4A847;
  --gold2: #F0C96A;
  --moss: #3D6B45;
  --moss2: #5A8F64;
  --cream: #FDF8F2;
  --sand: #E8D5B0;
  --sand2: #F5EDD8;
  --muted: #8A7464;
  --pink: #E8A0A0;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
body {
  background: var(--bark);
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

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

/* ═══════════════════════════════════════
   STICKY NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 24, 16, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 71, 0.2);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--terra); color: white; border-color: var(--terra); }
.nav-link.special { color: var(--terra2); border-color: rgba(196,96,58,0.4); }
.nav-link.special:hover { background: var(--terra); color: white; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav-icon-btn {
  background: transparent;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-icon-btn:hover { border-color: var(--terra); color: var(--terra2); }

.nav-cart-btn {
  background: var(--terra);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cart-btn:hover { background: var(--terra2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bark2);
  border-bottom: 1px solid rgba(212,168,71,0.2);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { text-align: center; padding: 0.7rem; font-size: 0.9rem; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem 4rem 5rem;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(196,96,58,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(61,107,69,0.15) 0%, transparent 50%),
    var(--bark);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,96,58,0.15);
  border: 1px solid rgba(196,96,58,0.4);
  color: var(--terra2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .terra { color: var(--terra); }

.hero-sub {
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-product-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,71,0.2);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.3s;
}
.hero-product-card:hover { transform: rotate(0deg) scale(1.02); }

.hero-product-emoji { font-size: 5rem; display: block; margin-bottom: 0.5rem; }
.hero-product-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900; color: var(--bark); }
.hero-product-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--terra); margin-top: 0.3rem; }
.hero-price-chip {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--terra);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
}

.hero-stars { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--terra);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section {
  padding: 5rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 4rem;
}

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

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
}
.section-title .gold { color: var(--gold); }
.section-title .terra { color: var(--terra); }

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   GRIDS
═══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ═══════════════════════════════════════
   CATEGORY CARDS
═══════════════════════════════════════ */
.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.cat-card:hover {
  background: rgba(196,96,58,0.1);
  border-color: rgba(196,96,58,0.4);
  transform: translateY(-4px);
}
.cat-emoji { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
.cat-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; }
.cat-count { font-size: 0.75rem; color: var(--muted); }
.cat-link { font-size: 0.75rem; font-weight: 700; color: var(--terra); margin-top: 0.8rem; display: inline-block; }

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.product-card:hover {
  border-color: rgba(212,168,71,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-img img { transform: scale(1.05); }

.pet-switcher {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  background: rgba(30,15,8,0.75);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 0.25rem 0.4rem;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.product-card:hover .pet-switcher { opacity: 1; }
.pet-tab {
  background: transparent;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  border-radius: 12px;
  transition: all 0.15s;
  line-height: 1;
  opacity: 0.55;
}
.pet-tab:hover { opacity: 1; transform: scale(1.15); }
.pet-tab.active { opacity: 1; background: rgba(196,96,58,0.35); }

.product-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.badge-bestseller { background: rgba(212,168,71,0.9); color: var(--bark); }
.badge-new { background: rgba(61,107,69,0.9); color: white; }
.badge-trending { background: rgba(196,96,58,0.9); color: white; }

.wishlist-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30,15,8,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}
.wishlist-btn:hover { transform: scale(1.2); }
.wishlist-btn.active { color: var(--pink); }

.product-info { padding: 1.2rem; }
.product-name { font-weight: 800; font-size: 0.92rem; color: var(--cream); margin-bottom: 0.5rem; line-height: 1.3; }
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}
.product-price .original { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-left: 0.4rem; }

.product-cta {
  width: 100%;
  background: var(--terra);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.6rem;
  border-radius: 10px;
  transition: all 0.2s;
  text-align: center;
  display: block;
}
.product-cta:hover { background: var(--terra2); }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.hiw-section {
  background: rgba(196,96,58,0.06);
  border-top: 1px solid rgba(196,96,58,0.15);
  border-bottom: 1px solid rgba(196,96,58,0.15);
}

.step-card { text-align: center; padding: 1rem; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  opacity: 0.6;
}
.step-icon { font-size: 2.5rem; margin: 0.5rem 0; }
.step-title { font-weight: 800; font-size: 1rem; color: var(--cream); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; max-width: 220px; margin: 0 auto; }

/* ═══════════════════════════════════════
   REVIEW CARDS
═══════════════════════════════════════ */
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.8rem;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.review-text { font-size: 0.88rem; color: var(--sand); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: 0.78rem; font-weight: 800; color: var(--terra); }

/* ═══════════════════════════════════════
   EMAIL CAPTURE
═══════════════════════════════════════ */
.email-banner {
  background: var(--terra);
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.email-banner-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.email-banner-text p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 0.4rem; }

.email-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.email-input {
  background: white;
  border: none;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  min-width: 260px;
  color: var(--bark);
}
.email-input::placeholder { color: var(--muted); }
.email-submit {
  background: var(--bark);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  white-space: nowrap;
  transition: all 0.2s;
}
.email-submit:hover { background: var(--bark2); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bark);
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  margin-bottom: 0.7rem;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; font-weight: 300; }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--terra); border-color: var(--terra); }

.footer-col-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.footer-link { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; transition: color 0.2s; font-weight: 300; }
.footer-link:hover { color: var(--terra2); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  animation: bounce 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding: 8rem 4rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.page-hero-sub { color: var(--muted); font-size: 1rem; font-weight: 300; }

/* ═══════════════════════════════════════
   SHOP FILTERS
═══════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--terra); color: var(--terra2); }
.filter-pill.active { background: var(--terra); border-color: var(--terra); color: white; }

.sort-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 10px;
  margin-left: auto;
  cursor: pointer;
}
.sort-select option { background: var(--bark2); }

/* ═══════════════════════════════════════
   PAGINATION
═══════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { background: var(--terra); border-color: var(--terra); color: white; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

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

@media (max-width: 900px) {
  .nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; text-align: center; }
  .hero-sub { max-width: 100%; font-size: 1.05rem; }
  .hero-btns { justify-content: center; flex-direction: column; width: 100%; gap: 1rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-visual { display: none; }

  .section { padding: 3rem 1.5rem; }
  .section-full { padding: 3rem 1.5rem; }
  .email-banner { padding: 2.5rem 1.5rem; text-align: center; justify-content: center; }
  .email-form { justify-content: center; flex-direction: column; width: 100%; }
  .email-input, .email-btn { width: 100%; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .email-input { min-width: 100%; }
  .page-hero { padding: 5rem 1.5rem 2rem; text-align: center; }
  .page-hero-title { font-size: 2.2rem; }
}
