/* ════════════════════════════════════
   LUPI PET — main.css
   ════════════════════════════════════ */
:root {
  --orange:        #EE5804;
  --orange-light:  #FF7A2F;
  --orange-dark:   #C44500;
  --orange-pale:   #FFF0E8;
  --orange-soft:   #FFD9C2;
  --cream:         #FDF6F0;
  --gray:          #F5EDE6;
  --border:        #EDD9CA;
  --text:          #2D1A0E;
  --text-mid:      #6B3E26;
  --text-light:    #A0714F;
  --white:         #FFFFFF;
  --green-wa:      #25D366;
  --dark:          #2D1A0E;
  --shadow:        0 4px 24px rgba(238,88,4,0.10);
  --shadow-lg:     0 8px 40px rgba(238,88,4,0.15);
  --radius:        18px;
  --radius-sm:     10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', cursive;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 40px;
}
.section-header h2 { font-size: 1.8rem; font-weight: 800; }
.see-all {
  color: var(--orange); font-weight: 700; font-size: 0.95rem;
  transition: opacity .2s;
}
.see-all:hover { opacity: .7; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(238,88,4,.3);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238,88,4,.4);
}
.btn-outline {
  border: 2.5px solid var(--orange); color: var(--orange);
  padding: 12px 28px; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem;
  display: inline-block; transition: all .2s;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-whatsapp {
  background: var(--green-wa); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; display: flex; align-items: center;
  gap: 10px; width: 100%; justify-content: center;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

.btn-whatsapp-lg {
  background: var(--green-wa); color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.1rem;
  border: none; cursor: pointer; display: inline-flex; align-items: center;
  gap: 12px; transition: all .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-whatsapp-lg:hover { background: #1da851; transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,240,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--border);
  height: 68px; padding: 0 5%;
  display: flex; align-items: center; gap: 24px;
}
.nav-spacer { height: 68px; }

.nav-brand {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.brand-paw { font-size: 1.5rem; }
.brand-text {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.5px;
}
.brand-text span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  padding: 8px 16px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; color: var(--text-mid);
  transition: all .2s;
}
.nav-links li a:hover, .nav-links li a.active {
  background: var(--orange-pale); color: var(--orange);
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: 8px;
  color: var(--orange);
  transition: color .2s;
}
.cart-btn:hover { color: var(--orange-dark); }
.cart-icon { display: block; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--text); color: var(--white);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive;
}
.nav-toggle { display: none; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  padding: 60px 5%;
  gap: 60px; overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-pale) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { flex: 1; max-width: 580px; z-index: 1; }
.hero-badge {
  display: inline-block; background: var(--orange-pale);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 20px;
  border: 1.5px solid var(--orange-soft);
  animation: fadeUp .6s ease both;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 20px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.1rem; color: var(--text-mid); margin-bottom: 32px;
  max-width: 480px; animation: fadeUp .6s .2s ease both;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both; margin-bottom: 40px;
}
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  animation: fadeUp .6s .4s ease both;
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 1.4rem; font-weight: 800; color: var(--orange);
}
.stat span { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual {
  flex: 1; display: flex; align-items: center;
  justify-content: center; position: relative; z-index: 1;
}
.hero-blob {
  position: absolute; width: 380px; height: 380px;
  background: var(--orange-pale);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobMorph 8s ease-in-out infinite;
}
.hero-animal { position: relative; z-index: 2; }
.animal-card {
  background: var(--white); border-radius: 24px;
  padding: 28px 36px; text-align: center;
  box-shadow: var(--shadow-lg);
  display: inline-block;
  animation: float 4s ease-in-out infinite;
  border: 2px solid var(--border);
}
.animal-card-2 {
  position: absolute; bottom: -60px; right: -60px;
  animation: float 4s 2s ease-in-out infinite;
}
.animal-big { font-size: 5rem; display: block; }
.animal-bubble {
  position: absolute; top: -16px; right: -16px;
  background: var(--orange); color: var(--white);
  padding: 6px 12px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
}
.animal-bubble-2 {
  background: #C68E17 !important; top: auto; bottom: -16px; left: -20px; right: auto;
}

/* ── CATEGORIES ── */
.categories-section { background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
  border: 2px solid transparent;
  display: block;
}
.category-card:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.category-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.category-card p { font-size: 0.8rem; color: var(--text-light); }
.cat-arrow {
  display: block; color: var(--orange); font-weight: 700;
  margin-top: 10px; opacity: 0; transition: opacity .2s;
}
.category-card:hover .cat-arrow { opacity: 1; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden; position: relative;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.product-image {
  width: 100%;
  height: 180px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-emoji {
  font-size: 4rem; text-align: center;
  padding: 36px 24px 20px;
  background: var(--gray);
}
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-pet {
  font-size: 0.78rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px;
}
.product-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.product-info p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.5;
  flex: 1; margin-bottom: 16px;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
}
.product-price {
  font-size: 1.2rem; font-weight: 800; color: var(--orange);
}
.product-price small { font-size: 0.75rem; font-weight: 600; color: var(--text-light); }
.btn-add-cart {
  background: var(--orange-pale); color: var(--orange);
  border: 2px solid var(--orange); padding: 8px 16px;
  border-radius: 50px; font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-add-cart:hover { background: var(--orange); color: var(--white); }

/* ── CART ── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 1100;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -440px; width: 420px; height: 100vh;
  background: var(--white); z-index: 1200;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  border-left: 2px solid var(--border);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 { font-size: 1.1rem; font-weight: 800; }
.cart-close {
  background: none; border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s; color: var(--text);
}
.cart-close:hover { color: var(--orange); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
  text-align: center; padding: 48px 20px; color: var(--text-light);
}
.cart-empty p { font-weight: 700; margin-bottom: 4px; }
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: var(--orange); font-weight: 800; font-size: 0.95rem; }
.cart-item-controls {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  cursor: pointer; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; color: var(--text);
}
.qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.qty-num { font-weight: 700; min-width: 20px; text-align: center; font-size: 0.9rem; }
.cart-footer {
  padding: 20px; border-top: 2px solid var(--border); flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; font-size: 1.1rem;
}
.cart-total-row strong { color: var(--orange); font-size: 1.3rem; }
.cart-name-input { margin-bottom: 14px; }
.cart-name-input input {
  width: 100%; padding: 10px 16px;
  border: 2px solid var(--border); border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-size: 0.95rem;
  background: var(--gray); outline: none; transition: border-color .2s;
}
.cart-name-input input:focus { border-color: var(--orange); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 60px 5%;
}
.cta-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.cta-emoji-left, .cta-emoji-right {
  font-size: 3.5rem; flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}
.cta-emoji-right { animation-delay: 1.5s; }
.cta-text { flex: 1; text-align: center; }
.cta-text h2 { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,.85); margin-bottom: 24px; }

/* ── BLOG ── */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-grid-full {
  grid-template-columns: 1fr !important; max-width: 780px; margin: 0 auto;
}
.blog-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--border);
  transition: all .25s;
}
.blog-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.blog-emoji { font-size: 2.5rem; margin-bottom: 14px; }
.blog-emoji-lg { font-size: 3.5rem; margin-bottom: 16px; }
.blog-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-category {
  background: var(--orange-pale); color: var(--orange);
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}
.blog-date, .blog-read-time { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.blog-card h3, .blog-card h2 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-read { color: var(--orange); font-weight: 700; font-size: 0.9rem; }
.btn-blog-read {
  background: none; border: 2px solid var(--orange);
  color: var(--orange); padding: 10px 22px; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; cursor: pointer;
  transition: all .2s; font-size: 0.9rem;
}
.btn-blog-read:hover { background: var(--orange); color: var(--white); }

.blog-card-full { display: flex; gap: 28px; align-items: flex-start; }
.blog-card-full .blog-emoji-lg { flex-shrink: 0; }
.blog-content { flex: 1; }

.blog-newsletter {
  margin-top: 60px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  padding: 40px;
  border: 2px solid var(--orange-soft);
}
.newsletter-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.newsletter-inner > span { font-size: 2.5rem; flex-shrink: 0; }
.newsletter-inner h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.newsletter-inner p { font-size: 0.9rem; color: var(--text-mid); }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 260px; }
.newsletter-input {
  flex: 1; padding: 12px 18px;
  border: 2px solid var(--border); border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-size: 0.95rem;
  background: var(--white); outline: none;
}
.newsletter-input:focus { border-color: var(--orange); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  text-align: center; padding: 60px 5% 50px;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1.05rem; }

/* ── SHOP ── */
.shop-layout { display: flex; gap: 32px; align-items: flex-start; }
.shop-filters {
  width: 240px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 2px solid var(--border);
  position: sticky; top: 88px;
}
.shop-filters h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; }
.filter-group { margin-bottom: 20px; }
.filter-group label { font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.filter-input {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Baloo 2', cursive; font-size: 0.9rem;
  background: var(--gray); outline: none;
}
.filter-input:focus { border-color: var(--orange); }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-opt {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; cursor: pointer; font-weight: 500;
}
.filter-opt input { accent-color: var(--orange); width: 16px; height: 16px; }
.btn-filter {
  width: 100%; padding: 11px; background: var(--orange);
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-weight: 700; cursor: pointer;
  font-size: 0.95rem; transition: background .2s; margin-bottom: 10px;
}
.btn-filter:hover { background: var(--orange-dark); }
.btn-clear {
  display: block; text-align: center; color: var(--text-light);
  font-size: 0.88rem; font-weight: 600; padding: 8px;
  transition: color .2s;
}
.btn-clear:hover { color: var(--orange); }
.shop-main { flex: 1; min-width: 0; }

.empty-state {
  text-align: center; padding: 80px 40px;
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--border);
}
.empty-state > span { font-size: 3rem; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.empty-state p { color: var(--text-mid); margin-bottom: 24px; }

/* ── CONTACT ── */
.contact-layout { display: flex; gap: 48px; align-items: flex-start; }
.contact-info { flex: 1; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--gray); border-radius: var(--radius-sm);
  padding: 16px 20px; border: 2px solid var(--border);
  transition: all .2s;
}
.contact-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.contact-wa { background: #e7faf0; border-color: #b7efd1; }
.contact-wa:hover { border-color: var(--green-wa); }
.contact-card-icon { font-size: 2rem; flex-shrink: 0; }
.contact-card strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-card p { font-size: 0.95rem; }
.contact-card small { font-size: 0.8rem; color: var(--text-light); }

.contact-form-wrap {
  flex: 1; background: var(--white);
  border-radius: var(--radius); padding: 36px;
  border: 2px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 700; font-size: 0.9rem; }
.form-input {
  padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Baloo 2', cursive; font-size: 0.95rem;
  background: var(--gray); outline: none; transition: border-color .2s;
  resize: vertical;
}
.form-input:focus { border-color: var(--orange); background: var(--white); }

/* ── FOOTER ── */
.footer {
  background: var(--white); color: var(--text); margin-top: 0;
  border-top: 2px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 5% 40px;
  display: flex; gap: 48px; flex-wrap: wrap;
}
.footer-brand { flex: 1.5; }
.footer-brand .brand-text { color: var(--text); display: block; margin-bottom: 12px; font-size: 1.4rem; }
.footer-brand .brand-text span { color: var(--orange); }
.footer-brand p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col h4 { font-weight: 800; color: var(--text); margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-mid); font-size: 0.9rem; transition: color .2s; font-weight: 500; }
.footer-col ul li a:hover { color: var(--orange); }
.social-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.social-link { color: var(--text-mid); font-size: 0.9rem; transition: color .2s; font-weight: 500; }
.social-link:hover { color: var(--orange); }
.footer-wa p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; }
.btn-wa-small {
  display: inline-block; background: var(--green-wa); color: var(--white);
  padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  transition: background .2s;
}
.btn-wa-small:hover { background: #1da851; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 5%; text-align: center;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: var(--text-light); font-size: 0.85rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%       { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; }
  66%       { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
}
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.cart-added { animation: cartBounce .3s ease; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem;
  transform: translateY(80px); opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  border-left: 4px solid var(--orange);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-layout { flex-direction: column; }
  .hero { flex-direction: column; text-align: center; min-height: auto; padding: 40px 5%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-emoji-left, .cta-emoji-right { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
  .cart-btn { margin-left: 0; }
  .shop-layout { flex-direction: column; }
  .shop-filters { width: 100%; position: static; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-sidebar { width: 100%; right: -100%; }
  .blog-card-full { flex-direction: column; }
  .newsletter-inner { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

/* PRODUCT DETAIL */
.product-detail {
  display: flex; gap: 48px; align-items: flex-start;
}
.product-detail-image {
  flex: 1; max-width: 450px;
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--border); overflow: hidden;
}
.product-detail-image img {
  width: 100%; height: 350px; object-fit: cover;
}
.product-emoji-large {
  font-size: 8rem; text-align: center; padding: 60px;
  background: var(--gray);
}
.product-detail-info {
  flex: 1; position: relative;
}
.product-detail-info h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 12px;
}
.product-detail-desc {
  font-size: 1rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 24px;
}
.product-detail-price {
  margin-bottom: 16px;
}
.product-detail-price .price {
  font-size: 2.2rem; font-weight: 800; color: var(--orange);
}
.product-detail-price .currency {
  font-size: 1rem; color: var(--text-light); margin-left: 4px;
}
.product-detail-stock {
  margin-bottom: 24px;
}
.stock-available { color: #16a34a; font-weight: 600; }
.stock-out { color: #dc2626; font-weight: 600; }
.product-detail-info .btn-add-cart {
  width: 100%; padding: 16px; font-size: 1.1rem; margin-bottom: 12px;
}
.product-detail-info .btn-outline {
  width: 100%; text-align: center; padding: 14px;
}
.related-products {
  margin-top: 60px;
}
.related-products h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 24px;
}
