/* Pet Shop Home Variant */

/* ── Hero ── */
.pet-hero {
  position: relative; overflow: hidden;
  background: #1a2a1a;
}
.pet-hero-track { position: relative; height: 480px; }
.pet-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .6s ease;
}
.pet-hero-slide.active { opacity: 1; }
.pet-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.pet-hero-caption {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  padding: 0 20px;
}
.pet-hero-label {
  font-size: 2.4rem; font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  width: fit-content;
}
.pet-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.9);
  margin-bottom: 22px; max-width: 420px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.pet-hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--molla-accent); color: #fff;
  padding: 13px 28px; font-weight: 700; font-size: 15px;
  text-decoration: none; border-radius: 50px;
  transition: opacity .15s;
}
.pet-hero-btn:hover { opacity: .88; color: #fff; }

.pet-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; color: #fff;
  font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s; z-index: 5;
}
.pet-hero-arrow:hover { background: rgba(255,255,255,.4); }
.pet-hero-arrow.prev { left: 20px; }
.pet-hero-arrow.next { right: 20px; }
.pet-hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.pet-hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  transition: background .2s;
}
.pet-hero-dot.active { background: #fff; }

/* ── Category icons ── */
.pet-cats-section { background: #f8fff8; }
.pet-cats-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.pet-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; padding: 16px 8px;
  background: #fff; border-radius: 16px;
  border: 1.5px solid #e8f5e9;
  transition: border-color .2s, box-shadow .2s;
}
.pet-cat-card:hover {
  border-color: var(--molla-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.pet-cat-icon { font-size: 2rem; line-height: 1; }
.pet-cat-name { font-size: 12px; font-weight: 600; color: #333; text-align: center; }

/* ── Promo banner ── */
.pet-promo-banner {
  display: block; border-radius: 16px; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 180px; position: relative; text-decoration: none;
}
.pet-promo-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.pet-promo-title { font-size: 1.6rem; font-weight: 800; color: #fff; }
.pet-promo-sub   { font-size: 1rem; color: rgba(255,255,255,.9); }
.pet-promo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; padding: 10px 24px;
  background: var(--molla-accent); color: #fff;
  border-radius: 50px; font-weight: 700; font-size: 14px;
}

/* ── Section heading ── */
.pet-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.pet-section-title {
  font-size: 1.5rem; font-weight: 800; margin: 0; color: #1a1a1a;
}
.pet-tabs { display: flex; gap: 4px; }

/* ── Newsletter ── */
.pet-newsletter {
  background: var(--molla-accent);
  padding: 60px 0;
}
.pet-nl-inner { text-align: center; }
.pet-nl-paw   { font-size: 2.5rem; margin-bottom: 10px; }
.pet-nl-title { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pet-nl-desc  { color: rgba(255,255,255,.85); margin-bottom: 24px; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pet-cats-grid { grid-template-columns: repeat(4, 1fr); }
  .pet-hero-track { height: 360px; }
  .pet-hero-label { font-size: 1.8rem; }
}
@media (max-width: 576px) {
  .pet-cats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .pet-hero-track { height: 260px; }
  .pet-hero-label { font-size: 1.4rem; }
  .pet-hero-btn   { padding: 10px 20px; font-size: 13px; }
}

/* ── Blog ── */
.pet-blog-section { padding: 60px 0; background: #f9f9f9; }
.pet-blog-heading {
  text-align: center; font-size: 24px; font-weight: 700;
  margin-bottom: 32px; color: #222;
}
.pet-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pet-blog-card { display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: box-shadow .2s; }
.pet-blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); color: inherit; }
.pet-blog-img { aspect-ratio: 4/3; overflow: hidden; }
.pet-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pet-blog-card:hover .pet-blog-img img { transform: scale(1.05); }
.pet-blog-body { padding: 18px; }
.pet-blog-title { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 8px; line-height: 1.4; }
.pet-blog-excerpt { font-size: 13px; color: #777; line-height: 1.7; margin-bottom: 12px; }
.pet-blog-more { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--molla-accent); letter-spacing: .5px; }
@media (max-width: 768px) { .pet-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pet-blog-grid { grid-template-columns: 1fr; } }
