
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root{
  --plx-navy:#0b1d3a;
  --plx-ink:#111827;
  --plx-muted:#5f6b7a;
  --plx-pink:#ff4f8a;
  --plx-pink-2:#ff7aa8;
  --plx-blue:#2196f3;
  --plx-green:#20b86b;
  --plx-yellow:#ffc542;
  --plx-purple:#9056f7;
  --plx-red:#ff4b55;
  --plx-teal:#29c7bd;
  --plx-card:#ffffff;
  --plx-soft:#f6f8ff;
  --plx-shadow:0 18px 45px rgba(15,23,42,.10);
}

body.home{
  background:#fff !important;
  color:var(--plx-ink) !important;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif !important;
}

body.home .announcement-bar{
  display:none !important;
}

/* Home header: no black strip; clean words over the hero */
body.home .site-header{
  top:18px !important;
  left:28px !important;
  right:28px !important;
  width:auto !important;
  height:64px !important;
  border:0 !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.84) !important;
  box-shadow:0 12px 34px rgba(11,29,58,.08) !important;
  backdrop-filter:blur(18px) !important;
  -webkit-backdrop-filter:blur(18px) !important;
}

body.home .site-header.scrolled{
  top:14px !important;
  background:rgba(255,255,255,.94) !important;
  box-shadow:0 16px 38px rgba(11,29,58,.13) !important;
}

body.home .header-logo,
body.home .header-nav a,
body.home .header-action-btn,
body.home .mobile-menu-btn{
  color:var(--plx-navy) !important;
  font-family:'Sora',system-ui,sans-serif !important;
}

body.home .header-logo{
  letter-spacing:-.03em !important;
  font-size:1.18rem !important;
  text-transform:none !important;
}

body.home .header-logo span{
  color:var(--plx-pink) !important;
}

body.home .header-nav a{
  font-size:.76rem !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
}

body.home .header-nav a::after{
  background:var(--plx-pink) !important;
}

/* Hero */
.plx-hero{
  min-height:720px;
  height:100vh;
  max-height:900px;
  display:grid;
  grid-template-columns:minmax(320px, 46%) 1fr;
  align-items:center;
  gap:2rem;
  padding:130px clamp(24px,5vw,72px) 56px;
  background:
    radial-gradient(circle at 72% 32%, rgba(255,255,255,.75) 0 11%, transparent 30%),
    linear-gradient(135deg, #f9fcff 0%, #e6f6ff 42%, #c7eaff 100%);
  overflow:hidden;
  position:relative;
}

.plx-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:86px;
  background:linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events:none;
}

.plx-hero-copy{
  position:relative;
  z-index:2;
  max-width:620px;
}

.plx-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.48rem .85rem;
  border-radius:999px;
  background:rgba(255,79,138,.12);
  color:#d92162;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.03em;
  margin-bottom:1.15rem;
}

.plx-hero h1{
  font-family:'Sora',system-ui,sans-serif !important;
  color:var(--plx-navy) !important;
  font-size:clamp(2.65rem,5.5vw,5.8rem);
  line-height:.98;
  letter-spacing:-.07em;
  margin:0 0 1.25rem;
  max-width:780px;
}

.plx-hero p{
  color:#24324b !important;
  font-size:clamp(1rem,1.25vw,1.22rem);
  line-height:1.65;
  max-width:520px;
  margin:0 0 1.8rem;
}

.plx-hero-actions{
  display:flex;
  gap:.85rem;
  flex-wrap:wrap;
}

.plx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  min-height:50px;
  padding:.9rem 1.35rem;
  border-radius:999px;
  text-decoration:none !important;
  font-family:'Sora',system-ui,sans-serif;
  font-size:.88rem;
  font-weight:800;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.plx-btn:hover{
  transform:translateY(-3px);
}

.plx-btn-primary{
  background:linear-gradient(135deg, var(--plx-pink), #ff2f73);
  color:#fff !important;
  box-shadow:0 15px 30px rgba(255,79,138,.28);
}

.plx-btn-primary:hover{
  box-shadow:0 20px 38px rgba(255,79,138,.34);
}

.plx-btn-soft{
  background:#fff;
  color:var(--plx-navy) !important;
  box-shadow:0 12px 25px rgba(11,29,58,.09);
}

.plx-hero-media{
  position:relative;
  z-index:1;
  align-self:end;
  display:flex;
  justify-content:center;
}

.plx-hero-media img{
  width:min(780px,62vw);
  max-width:none;
  border-radius:34px;
  filter:drop-shadow(0 28px 45px rgba(11,29,58,.14));
  transform:translateX(3vw);
}

/* Promo */
.plx-promo-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  background:linear-gradient(90deg,#c1125a,#ff4f8a,#7b3ff2);
  color:#fff;
  padding:0 clamp(18px,4vw,56px);
}

.plx-promo-item{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.9rem;
  color:#fff;
}

.plx-promo-icon{
  font-size:1.7rem;
}

.plx-promo-item strong,
.plx-promo-item small{
  display:block;
}

.plx-promo-item strong{
  font-family:'Sora',system-ui,sans-serif;
  font-size:.95rem;
}

.plx-promo-item small{
  opacity:.9;
  font-size:.78rem;
}

/* Shared section */
.plx-pet-cards-section,
.plx-best-sellers-section,
.plx-categories-section,
.plx-benefits-strip,
.plx-newsletter{
  font-family:'Inter',system-ui,sans-serif;
}

.plx-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.7rem;
}

.plx-section-head h2{
  font-family:'Sora',system-ui,sans-serif !important;
  color:var(--plx-navy) !important;
  margin:.35rem 0 0;
  font-size:clamp(1.55rem,2.5vw,2.5rem);
  letter-spacing:-.055em;
  line-height:1.08;
}

.plx-section-kicker{
  color:var(--plx-pink) !important;
  font-weight:900;
  font-size:.9rem;
}

.plx-section-link{
  color:var(--plx-navy) !important;
  text-decoration:none !important;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:800;
  font-size:.9rem;
}

/* Pet cards */
.plx-pet-cards-section{
  padding:34px clamp(18px,4vw,56px) 18px;
  background:#fff;
}

.plx-pet-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  max-width:1320px;
  margin:0 auto;
}

.plx-pet-card{
  min-height:300px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none !important;
  box-shadow:var(--plx-shadow);
  isolation:isolate;
  transition:transform .28s ease, box-shadow .28s ease;
}

.plx-pet-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 88% 20%, rgba(255,255,255,.26), transparent 28%);
  z-index:-1;
}

.plx-pet-card:hover{
  transform:translateY(-7px);
  box-shadow:0 25px 60px rgba(15,23,42,.15);
}

.plx-pet-card img{
  position:absolute;
  inset:0 0 0 auto;
  width:58%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .38s ease;
  z-index:-1;
}

.plx-pet-card:hover img{
  transform:scale(1.055);
}

.plx-pet-card-copy{
  max-width:58%;
  padding:2.4rem;
  color:#fff;
}

.plx-pet-card-copy h2{
  font-family:'Sora',system-ui,sans-serif !important;
  color:#fff !important;
  font-size:clamp(2rem,4vw,3.65rem);
  line-height:1;
  letter-spacing:-.07em;
  margin:0 0 .75rem;
}

.plx-pet-card-copy p{
  color:rgba(255,255,255,.92) !important;
  margin:0 0 1.25rem;
  font-size:.95rem;
  line-height:1.55;
}

.plx-pet-card-copy span{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  min-height:42px;
  padding:.7rem 1rem;
  border-radius:999px;
  background:#fff;
  color:var(--plx-navy) !important;
  font-weight:900;
  font-size:.82rem;
}

.plx-pet-card-cat{
  background:linear-gradient(135deg,#ff5a8f,#ff8baa);
}

.plx-pet-card-dog{
  background:linear-gradient(135deg,#2298ff,#36c4ff);
}

/* Best sellers */
.plx-best-sellers-section{
  padding:44px clamp(18px,4vw,56px);
  background:#fff;
}

.plx-product-row{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
}

.plx-product-card{
  background:#fff;
  border:1px solid rgba(11,29,58,.08);
  border-radius:22px;
  box-shadow:0 16px 35px rgba(15,23,42,.08);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.plx-product-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 55px rgba(15,23,42,.14);
}

.plx-product-media{
  min-height:210px;
  background:linear-gradient(180deg,#f6f8ff,#ffffff);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-decoration:none !important;
}

.plx-product-media img{
  width:82%;
  height:190px;
  object-fit:contain;
  transition:transform .25s ease;
}

.plx-product-card:hover .plx-product-media img{
  transform:scale(1.05);
}

.plx-product-heart{
  position:absolute;
  top:14px;
  right:14px;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#fff;
  color:var(--plx-navy);
  display:grid;
  place-items:center;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}

.plx-product-info{
  padding:1rem;
}

.plx-product-name{
  display:block;
  color:var(--plx-navy) !important;
  text-decoration:none !important;
  font-weight:900;
  font-size:.9rem;
  line-height:1.25;
  margin-bottom:.4rem;
}

.plx-product-info p{
  color:var(--plx-muted) !important;
  font-size:.76rem;
  line-height:1.45;
  min-height:2.15em;
  margin:0 0 .7rem;
}

.plx-product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}

.plx-product-bottom strong{
  color:var(--plx-navy);
  font-weight:900;
}

.plx-product-bottom a{
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--plx-pink);
  color:#fff !important;
  display:grid;
  place-items:center;
  text-decoration:none !important;
  font-weight:900;
}

/* Categories */
.plx-categories-section{
  padding:44px clamp(18px,4vw,56px) 26px;
  background:#fff;
}

.plx-category-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.plx-category-card{
  min-height:260px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  text-decoration:none !important;
  box-shadow:var(--plx-shadow);
  isolation:isolate;
  transition:transform .28s ease, box-shadow .28s ease;
}

.plx-category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(15,23,42,.16);
}

.plx-category-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:-2;
  transition:transform .38s ease;
}

.plx-category-card:hover img{
  transform:scale(1.06);
}

.plx-category-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
}

.plx-red::before{background:linear-gradient(90deg,rgba(255,75,85,.96),rgba(255,75,85,.64),rgba(255,75,85,.12));}
.plx-green::before{background:linear-gradient(90deg,rgba(32,184,107,.96),rgba(32,184,107,.64),rgba(32,184,107,.12));}
.plx-blue::before{background:linear-gradient(90deg,rgba(33,150,243,.96),rgba(33,150,243,.64),rgba(33,150,243,.12));}
.plx-purple::before{background:linear-gradient(90deg,rgba(144,86,247,.96),rgba(144,86,247,.64),rgba(144,86,247,.12));}
.plx-yellow::before{background:linear-gradient(90deg,rgba(255,181,43,.96),rgba(255,181,43,.70),rgba(255,181,43,.12));}
.plx-teal::before{background:linear-gradient(90deg,rgba(41,199,189,.96),rgba(41,199,189,.64),rgba(41,199,189,.12));}

.plx-category-content{
  width:58%;
  padding:1.7rem;
  color:#fff;
}

.plx-category-icon{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:16px;
  background:rgba(255,255,255,.2);
  margin-bottom:.8rem;
  font-size:1.35rem;
}

.plx-category-content h3{
  color:#fff !important;
  font-family:'Sora',system-ui,sans-serif !important;
  font-size:clamp(1.3rem,2.2vw,2.1rem);
  letter-spacing:-.055em;
  margin:0 0 .45rem;
}

.plx-category-content p{
  color:rgba(255,255,255,.9) !important;
  line-height:1.45;
  font-size:.84rem;
  margin:0 0 1rem;
}

.plx-category-content strong{
  display:inline-flex;
  background:#fff;
  color:var(--plx-navy);
  border-radius:999px;
  padding:.62rem .95rem;
  font-size:.78rem;
}

/* Benefits */
.plx-benefits-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
  padding:30px clamp(18px,4vw,56px);
  background:#fff;
}

.plx-benefit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.8rem;
  min-height:78px;
  border-radius:20px;
  background:var(--plx-soft);
}

.plx-benefit span{
  font-size:1.8rem;
}

.plx-benefit strong,
.plx-benefit small{
  display:block;
}

.plx-benefit strong{
  color:var(--plx-navy);
  font-family:'Sora',system-ui,sans-serif;
  font-size:.88rem;
}

.plx-benefit small{
  color:var(--plx-muted);
  font-size:.75rem;
}

/* Newsletter */
.plx-newsletter{
  margin:20px 0 0;
  min-height:300px;
  display:grid;
  grid-template-columns:40% 1fr;
  align-items:center;
  gap:2rem;
  padding:0 clamp(18px,4vw,56px);
  background:linear-gradient(135deg,#ff4f8a,#ff7aa8);
  position:relative;
  overflow:hidden;
}

.plx-newsletter::after{
  content:"🐾";
  position:absolute;
  inset:auto 2vw -50px auto;
  font-size:10rem;
  opacity:.08;
}

.plx-newsletter img{
  align-self:end;
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:center;
  border-radius:26px 26px 0 0;
  margin-top:28px;
  box-shadow:0 20px 42px rgba(15,23,42,.16);
}

.plx-newsletter-copy{
  position:relative;
  z-index:2;
  color:#fff;
  padding:2.5rem 0;
}

.plx-newsletter-copy span{
  font-family:'Sora',system-ui,sans-serif;
  font-weight:900;
}

.plx-newsletter-copy h2{
  color:#fff !important;
  font-family:'Sora',system-ui,sans-serif !important;
  font-size:clamp(1.7rem,3vw,3rem);
  line-height:1.08;
  letter-spacing:-.055em;
  margin:.4rem 0 1.2rem;
  max-width:700px;
}

.plx-newsletter-form{
  display:flex;
  gap:.75rem;
  max-width:620px;
}

.plx-newsletter-form input{
  flex:1;
  min-height:54px;
  border:0;
  border-radius:16px;
  padding:0 1rem;
  color:var(--plx-navy);
  font-weight:600;
}

.plx-newsletter-form button{
  min-height:54px;
  border:0;
  border-radius:16px;
  padding:0 1.4rem;
  background:var(--plx-navy);
  color:#fff;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:900;
}

/* Keep dark mode consistent on the new bright home */
html[data-theme="dark"] body.home,
html[data-theme="light"] body.home{
  background:#fff !important;
}

/* Hide legacy dark ornaments on home */
body.home .hero-grid-lines,
body.home .hero-bg-text,
body.home .hero-premium-label,
body.home .hero-subject,
body.home .hero-content-left,
body.home .hero-content-right,
body.home .hero-scroll-indicator,
body.home .categories-section,
body.home .products-section,
body.home .newsletter-strip{
  /* old home components replaced by plx components */
}

/* Responsive */
@media (max-width:1180px){
  .plx-product-row{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .plx-category-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .plx-hero{
    grid-template-columns:1fr;
    height:auto;
    min-height:760px;
    padding-top:120px;
  }

  .plx-hero-media img{
    width:min(760px,92vw);
    transform:none;
  }
}

@media (max-width:768px){
  body.home .site-header{
    top:12px !important;
    left:14px !important;
    right:14px !important;
    height:62px !important;
    padding:0 14px !important;
  }

  body.home .header-logo{
    font-size:1.05rem !important;
  }

  .plx-hero{
    min-height:760px;
    padding:104px 18px 28px;
  }

  .plx-hero h1{
    font-size:clamp(2.35rem,13vw,4rem);
  }

  .plx-hero p{
    font-size:.98rem;
  }

  .plx-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .plx-hero-media img{
    width:106vw;
    margin-left:-3vw;
    border-radius:24px;
  }

  .plx-promo-strip{
    grid-template-columns:1fr;
    padding:0 18px;
  }

  .plx-promo-item{
    min-height:74px;
    justify-content:flex-start;
  }

  .plx-pet-cards{
    grid-template-columns:1fr;
  }

  .plx-pet-card{
    min-height:300px;
  }

  .plx-pet-card img{
    width:64%;
  }

  .plx-pet-card-copy{
    padding:1.5rem;
    max-width:68%;
  }

  .plx-product-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .plx-product-media{
    min-height:170px;
  }

  .plx-product-media img{
    height:150px;
  }

  .plx-category-grid{
    grid-template-columns:1fr;
  }

  .plx-category-card{
    min-height:250px;
  }

  .plx-category-content{
    width:70%;
    padding:1.4rem;
  }

  .plx-benefits-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:20px 18px;
  }

  .plx-benefit{
    justify-content:flex-start;
    padding:0 1rem;
  }

  .plx-newsletter{
    grid-template-columns:1fr;
    padding:0 18px;
  }

  .plx-newsletter img{
    order:2;
    height:220px;
    margin-top:0;
  }

  .plx-newsletter-copy{
    padding:2rem 0 0;
  }

  .plx-newsletter-form{
    flex-direction:column;
  }
}

@media (max-width:480px){
  .plx-product-row{
    grid-template-columns:1fr;
  }

  .plx-benefits-strip{
    grid-template-columns:1fr;
  }
}
