/* ==========================================================
   NATPET STYLE.CSS (RESET v30)
   Clean modern layout, web + mweb
========================================================== */

:root {
  --bg: #fbfaf8;
  --card: #ffffff;
  --text: #102015;
  --muted: rgba(16, 32, 21, 0.7);

  --brand: #2f6f3e;
  --brand-2: #b9922f;

  --line: rgba(16, 32, 21, 0.12);

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 18px;

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 44px 0;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ==========================================================
   HEADER
========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 600;
  color: rgba(16, 32, 21, 0.82);
}

.nav a:hover {
  color: var(--text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.cart-link svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-panel {
  display: none;
}

.nav-panel.open {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.nav-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn {
  border: 1px solid var(--line);
  background: white;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #2c7a44);
  border: none;
  color: white;
}

.btn.primary:disabled {
  opacity: 0.7;
  cursor: default;
}

.btn.ghost {
  background: transparent;
}

/* ==========================================================
   HERO BANNER (FULL WIDTH TILE + CAROUSEL)
========================================================== */
.hero-wrap {
  padding: 14px 0 0;
}

.header + .hero-wrap {
  padding-top: 16px;
}

.hero-banner {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Dots appear only if multiple banners exist */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  outline: 1px solid rgba(0, 0, 0, 0.15);
}

.hero-dots button.active {
  background: white;
}

/* ==========================================================
   HERO GRID CARD (below banner)
========================================================== */
.hero-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.hero-card {
  padding: 22px;
  border-radius: 22px;
}

.hero-card h1 {
  font-size: 38px;
  line-height: 1.08;
}

.hero-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-side {
  padding: 22px;
  border-radius: 22px;
}

.hero-side h3 {
  font-size: 18px;
}

/* =========================
   HERO SIDE FEATURES (POINTS)
   ========================= */

.points {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.point .icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 40, 25, 0.08);
  overflow: hidden;
}

.point .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

/* text */
.point strong {
  display: block;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.point span {
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(20, 30, 22, 0.82);
}

/* mobile adjustments */
@media (max-width: 520px) {
  .point .icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .point strong {
    font-size: 14.5px;
  }

  .point span {
    font-size: 13px;
  }
}

/* ==========================================================
   PRODUCTS GRID
========================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card {
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.product-img {
  background: rgba(0, 0, 0, 0.02);
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-img img {
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: contain;
}

.product-body {
  padding: 18px 18px 18px 0;
  display: grid;
  gap: 10px;
}

.product-body h3 {
  font-size: 18px;
  margin: 0;
}

.product-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(16, 32, 21, 0.7);
  font-weight: 700;
  font-size: 13px;
}

.product-meta .dot {
  opacity: 0.5;
}

/* ==========================================================
   CART PAGE
========================================================== */
.cart-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.cart-item {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.cart-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-title strong {
  font-size: 16px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 999px;
  padding: 6px 10px;
}

.qtybtn {
  border: none;
  background: white;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid var(--line);
}

.cart-right {
  text-align: right;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.remove {
  border: none;
  background: transparent;
  color: rgba(16, 32, 21, 0.65);
  font-weight: 800;
  cursor: pointer;
}

.cart-summary {
  padding: 18px;
  border-radius: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-weight: 800;
}

/* ==========================================================
   ABOUT PAGE MINI PRODUCTS
========================================================== */
.about-products {
  display: grid;
  gap: 12px;
}

.mini-prod {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px;
  align-items: center;
}

.mini-prod img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.about-us {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-us p {
  display: block;
  margin: 0 0 28px !important;
  line-height: 2 !important;
}

.natpet-about p {
  margin-bottom: 30px !important;
  line-height: 2 !important;
}


/* ==========================================================
   FEEDING VIDEOS
========================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-card {
  overflow: hidden;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.05);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-body {
  padding: 14px 16px 16px;
}

.video-body h3 {
  font-size: 16px;
}

/* =========================
   FEATURE ICON CARDS
   ========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 40, 25, 0.08);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
  margin-bottom: 10px;
}

@media (max-width: 520px) {
  .feature-icon {
    width: 76px;
    height: 76px;
  }
}

.feature-title {
  font-size: 16px;
  font-weight: 800;
  margin: 2px 0 6px;
  color: var(--text-dark);
}

.feature-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(20, 30, 22, 0.82);
}


/* ==========================================================
   FOOTER
========================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  margin-top: 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  display: grid;
  place-items: center;
}

.social svg {
  width: 22px;
  height: 22px;
  stroke: rgba(16, 32, 21, 0.85);
  fill: none;
}

/* ==========================================================
   FLOATING WHATSAPP (ICON ONLY)
========================================================== */
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  z-index: 100;
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-body {
    padding: 0 18px 18px;
  }

  .cart-wrap {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-card h1 {
    font-size: 30px;
  }

  .section {
    padding: 34px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-card h1 {
    font-size: 26px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cart-right {
    justify-items: start;
    text-align: left;
  }
}