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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background-color: #0f172a;
  color: #0f172a;
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 23, 42, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

/* Header Logo Styling */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 55px;           /* Adjust size: 80–120px is ideal */
  height: auto;
  object-fit: contain;
}

.brand-text .brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.brand-text .brand-tagline {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: block;
  margin-top: -3px;
}

/* Make header responsive */
@media (max-width: 768px) {
  .brand-logo {
    width: 42px;
  }
  .brand-text .brand-name {
    font-size: 1rem;
  }
}


.brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.7rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c1c3, #fbbf24);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.gradient-animated {
  background: radial-gradient(circle at top left, #022c43 0, #050816 32%, #0b1120 70%, #111827 100%);
}

.gradient-animated::before,
.gradient-animated::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.5;
  animation: floatGlow 16s linear infinite alternate;
}

.gradient-animated::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34, 193, 195, 0.8), rgba(59, 130, 246, 0));
  top: -160px;
  right: -120px;
}

.gradient-animated::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.7), rgba(248, 250, 252, 0));
  bottom: -120px;
  left: -120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.5rem;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.hero-text p {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22c1c3, #fbbf24);
  color: #022c43;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(17, 94, 89, 0.7);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn-light {
  background: #f9fafb;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.btn-light:hover {
  background: #e5e7eb;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.highlight-item {
  background: radial-gradient(circle at top left, #1d283a, #020617);
  border-radius: 0.9rem;
  padding: 0.7rem 0.95rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  min-width: 150px;
}

.highlight-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.highlight-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-image-card {
  background: radial-gradient(circle at top left, #022c43 0, #0b1120 40%, #4b5563 100%);
  border-radius: 1.6rem;
  padding: 1.2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.hero-image-card img {
  border-radius: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

/* Generic sections */
.section {
  padding: 3.2rem 0;
  background: #f9fafb;
  color: #111827;
}

.section.alt {
  background: linear-gradient(135deg, #e0f2fe, #fef3c7);
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0.2rem;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0.3rem auto 2.1rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.info-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.info-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.85);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 235, 0.08), transparent);
  pointer-events: none;
}

.card-image {
  border-radius: 1rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

/* Page hero */
.page-hero {
  padding: 2.6rem 0 2.4rem;
  color: #0f172a;
}

.gradient-soft {
  background: radial-gradient(circle at top left, #e0f2fe, #fef3c7);
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}

.page-hero h1 {
  margin: 0.3rem 0 0.6rem;
  font-size: 2rem;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: #374151;
}

/* Lists */
.styled-list {
  padding-left: 1.1rem;
  margin: 0.35rem 0 0;
}

.styled-list li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Process list */
.process-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.process-list li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c1c3, #fbbf24);
  color: #022c43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: #0f766e;
  text-decoration: none;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.15s ease;
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* Highlight panel */
.highlight-panel {
  background: radial-gradient(circle at top left, #e0f2fe, #fef3c7);
  border-radius: 1.3rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.85);
  box-shadow: 0 20px 50px rgba(148, 163, 184, 0.75);
}

/* CTA box */
.cta-box {
  background: radial-gradient(circle at top left, #22c1c3, #fbbf24);
  border-radius: 1.7rem;
  padding: 1.9rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #022c43;
  box-shadow: 0 24px 70px rgba(15, 118, 110, 0.9);
}

.cta-box h2 {
  margin: 0 0 0.4rem;
}

.cta-box p {
  margin: 0;
  max-width: 520px;
}

/* Dheroot product cards grid */
#dheroot-products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 1.6rem;
}

@media (max-width: 992px) {
  #dheroot-products .product-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  #dheroot-products .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(15,23,42,0.12); }

.product-media {
  position: relative;
  height: 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(245,245,245,1), rgba(237,242,247,1));
}

/* make the placeholder logo appear like pouch mockup */
.product-media img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(15,23,42,0.12));
  transform: translateY(4px);
}

/* category badge */
.product-media .badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(2,6,23,0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* body */
.product-body { padding: 14px 16px 18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-body h3 { margin:0; font-size:1.02rem; color:#0f172a; }
.muted { color:#6b7280; font-size:0.9rem; margin:0; line-height:1.35; }

.product-meta { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto; }
.price { font-weight:700; color:#0f766e; }
.product-meta .btn { padding:8px 12px; font-size:0.9rem; border-radius:999px; text-decoration:none; }

/* small category colour accents (optional) */
.product-card.nuts .product-media { background: linear-gradient(180deg,#fff7ed,#fff3e0); }
.product-card.mixes .product-media { background: linear-gradient(180deg,#eef2ff,#eef6ff); }
.product-card.gifts .product-media { background: linear-gradient(180deg,#fff7f0,#fff2ed); }
.product-card.dates .product-media { background: linear-gradient(180deg,#f8faf0,#fbfbf0); }
.product-card.seeds .product-media { background: linear-gradient(180deg,#f0fdf4,#ecfdf5); }
.product-card.trail .product-media { background: linear-gradient(180deg,#fff8f0,#fffaf5); }

/* small responsive tweaks */
@media (max-width:420px){
  .product-media { height:180px; }
}

/* Products grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.product-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.85);
}

.product-image-placeholder {
  border-radius: 1rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.product-image-placeholder.colourful {
  background: conic-gradient(from 140deg, #22c1c3, #3b82f6, #fbbf24, #22c1c3);
  color: #022c43;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.6rem;
  box-shadow: 0 20px 55px rgba(148, 163, 184, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.95);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin-top: 0;
}

.contact-info-block {
  margin-bottom: 1rem;
}

.contact-info-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  margin-bottom: 0.15rem;
}

.contact-info-block p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form-card p {
  font-size: 0.93rem;
  color: #4b5563;
}

/* Form */
.contact-form .form-row {
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #22c1c3;
  box-shadow: 0 0 0 1px rgba(34, 193, 195, 0.4);
}

/* Map */
.map-embed-wrapper {
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(148, 163, 184, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.95);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 2.4rem 0 1.7rem;
  background: radial-gradient(circle at top, #020617, #000000);
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1.8rem;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-tagline {
  color: #fbbf24;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #e5e7eb;
}

.footer-col a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #111827;
  margin-top: 1.9rem;
  padding-top: 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

/* Notes */
.note-text {
  font-size: 0.86rem;
  color: #6b7280;
  margin-top: 1.2rem;
}

/* Animations */
.floating {
  animation: floating 9s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes floatGlow {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(40px, -30px, 0) scale(1.1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.3s;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.8rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .card-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: #020617;
    border-bottom: 1px solid rgba(148, 163, 184, 0.7);
    display: none;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 0.85rem 1.6rem 1.2rem;
    gap: 0.75rem;
  }
  .main-nav.open {
    display: block;
  }
  .nav-toggle {
    display: flex;
  }
}
