/* =========================================================
   Paw Zizzle — Custom Styles (ported from PlayfulPaws reference)
   ========================================================= */

* {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::selection {
  background: #fa5f38;
  color: #fff;
}

/* ============ HEADER ============ */
#site-header {
  background: rgba(255, 251, 245, 0.0);
}
#site-header.scrolled {
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(40, 67, 49, 0.06);
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0%;
  background: #fa5f38;
  transition: width .25s ease;
}
.nav-link:hover {
  color: #e8461d;
}
.nav-link:hover::after {
  width: 100%;
}

.mobile-link {
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(76, 132, 89, 0.1);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fa5f38, #e8461d);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px -8px rgba(232, 70, 29, 0.55);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(232, 70, 29, 0.65);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #2f533a;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid #e1ede3;
  transition: all .2s ease;
}
.btn-outline:hover {
  border-color: #4c8459;
  background: #f2f7f3;
  transform: translateY(-2px);
}

.btn-amazon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #FF9900;
  color: #131921;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  margin-top: 1.1rem;
  transition: all .2s ease;
  font-size: 0.92rem;
}
.btn-amazon:hover {
  background: #e88a00;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(255, 153, 0, 0.55);
}

.btn-amazon-lg {
  display: inline-flex;
  align-items: center;
  background: #FF9900;
  color: #131921;
  font-weight: 700;
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  font-size: 1rem;
  transition: all .2s ease;
  box-shadow: 0 10px 25px -8px rgba(255, 153, 0, 0.5);
}
.btn-amazon-lg:hover {
  background: #e88a00;
  transform: translateY(-2px);
}

/* ============ BRAND LOCKUP ============ */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #22382a;
}
.brand-lockup img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}

/* ============ HERO ============ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
}
.blob-1 {
  width: 480px; height: 480px;
  background: #ffd0c2;
  top: -120px; right: -140px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: #c4dcc8;
  bottom: -160px; left: -160px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffe8e1;
  color: #c23616;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #ffd0c2;
}

.text-gradient {
  background: linear-gradient(135deg, #fa5f38, #4c8459);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-item {
  min-width: 140px;
}

.hero-collage {
  position: relative;
  height: 460px;
}
.collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -15px rgba(40, 67, 49, 0.25);
  border: 6px solid #fff;
}
.collage-main {
  width: 78%;
  height: 400px;
  top: 0;
  right: 0;
  z-index: 2;
}
.collage-small-1 {
  width: 46%;
  height: 200px;
  bottom: -20px;
  left: -10px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.collage-small-2 {
  width: 38%;
  height: 170px;
  top: 30px;
  left: 10px;
  z-index: 1;
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 10px;
  z-index: 4;
  background: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #2f533a;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============ SECTION TITLES ============ */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  color: #22382a;
  line-height: 1.2;
}
.section-subtitle {
  color: #64748b;
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

/* ============ FILTER TABS ============ */
.filter-tab {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid #e1ede3;
  background: #fff;
  color: #396846;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s ease;
  cursor: pointer;
}
.filter-tab:hover {
  border-color: #9cc3a4;
}
.filter-tab.active {
  background: #396846;
  border-color: #396846;
  color: #fff;
}

/* ============ MASONRY PRODUCT GRID (Pinterest style) ============ */
.masonry-grid {
  column-count: 1;
  column-gap: 1.75rem;
}
@media (min-width: 640px) {
  .masonry-grid { column-count: 2; }
}
@media (min-width: 1024px) {
  .masonry-grid { column-count: 3; }
}

.product-card {
  break-inside: avoid;
  margin-bottom: 1.75rem;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -6px rgba(40, 67, 49, 0.08);
  border: 1px solid rgba(76, 132, 89, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(40, 67, 49, 0.18);
}
.product-card.filtered-hide {
  display: none;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.badge-hot { color: #c23616; }
.badge-new { color: #2f533a; }
.badge-classic { color: #7f2916; }

.save-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.save-btn:hover {
  color: #fa5f38;
  transform: scale(1.1);
}
.save-btn.saved {
  color: #fa5f38;
}
.save-btn.saved i {
  font-weight: 900;
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}
.card-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4c8459;
  font-weight: 700;
}
.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #22382a;
  margin-top: 0.4rem;
  line-height: 1.35;
}
.card-desc {
  color: #64748b;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.card-bestfor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #2f533a;
  background: #f2f7f3;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
}
.card-bestfor i {
  color: #4c8459;
  font-size: 0.75rem;
}

/* ============ BENEFIT CARDS ============ */
.benefit-card {
  background: #FFFBF5;
  border: 1px solid rgba(76,132,89,0.1);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -10px rgba(40,67,49,0.12);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ============ FEATURED ROWS ============ */
.featured-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .featured-row {
    grid-template-columns: 1fr 1fr;
  }
  .featured-row-reverse .featured-img-wrap {
    order: 2;
  }
}
.featured-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -15px rgba(40,67,49,0.18);
}
.tag-pill {
  display: inline-block;
  background: #fff5f2;
  color: #c23616;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ffd0c2;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.feature-list li i {
  color: #4c8459;
  margin-top: 0.2rem;
}

/* ============ GUIDE / LEAD MAGNET ============ */
.guide-card {
  background: linear-gradient(135deg, #396846, #22382a);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .guide-card { padding: 3.5rem; }
}
.guide-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -100px; right: -80px;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: #FFFBF5;
  border: 1px solid rgba(76,132,89,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(40,67,49,0.1);
}
.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa5f38, #4c8459);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ GALLERY STRIP (Pinterest vibe) ============ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-strip { grid-template-columns: repeat(6, 1fr); }
}
.gallery-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 16px rgba(40,67,49,0.1);
}
.gallery-strip img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 30px rgba(40,67,49,0.2);
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, #fa5f38, #c23616);
  border-radius: 32px;
  padding: 3.5rem 2rem;
  text-align: center;
}

/* ============ FOOTER ============ */
.footer-link {
  transition: color .2s ease;
}
.footer-link:hover {
  color: #fff;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s ease;
}
.social-icon:hover {
  background: #fa5f38;
  transform: translateY(-3px);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #396846;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #fa5f38;
}

/* ============ FTC DISCLOSURE BAR ============ */
.ftc-bar {
  background: #fff5f2;
  border-block: 1px solid #ffd0c2;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  color: #7f2916;
}
.ftc-bar strong {
  color: #c23616;
}

/* ============ BLOG ARTICLE PROSE ============ */
.prose-pz {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}
.prose-pz > * + * {
  margin-top: 1.25rem;
}
.prose-pz h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #22382a;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  scroll-margin-top: 6rem;
}
.prose-pz h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2f533a;
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
  scroll-margin-top: 6rem;
}
.prose-pz p {
  margin-top: 1.1rem;
}
.prose-pz a {
  color: #c23616;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.prose-pz a:hover {
  color: #e8461d;
}
.prose-pz ul,
.prose-pz ol {
  margin-top: 1.1rem;
  padding-left: 1.4rem;
}
.prose-pz ul {
  list-style: none;
}
.prose-pz ul > li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.prose-pz ul > li::before {
  content: "\f1b2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #fa5f38;
  font-size: 0.8rem;
}
.prose-pz ol {
  list-style: decimal;
}
.prose-pz ol > li {
  margin-top: 0.5rem;
}
.prose-pz strong {
  color: #22382a;
  font-weight: 600;
}
.prose-pz blockquote {
  border-left: 4px solid #fa5f38;
  background: #fff5f2;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-style: italic;
  color: #7f2916;
  margin-top: 1.5rem;
}
.prose-pz img {
  border-radius: 1rem;
  margin-top: 1.75rem;
  width: 100%;
  height: auto;
}

/* Inline product callout box inside articles */
.prose-pz .product-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e1ede3;
  border-left: 5px solid #396846;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
  box-shadow: 0 4px 16px -8px rgba(34, 56, 42, 0.15);
}
.prose-pz .product-callout .pc-info {
  flex: 1 1 220px;
}
.prose-pz .product-callout .pc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #22382a;
  font-size: 1.05rem;
}
.prose-pz .product-callout .pc-sub {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.prose-pz .product-callout .btn-amazon-lg {
  margin-top: 0;
}