/* Shrim Seeds — professional agri/seed company theme */
:root {
  --green: #0d5c32;
  --green-dark: #083d22;
  --green-light: #1a7a47;
  --leaf: #3d9b5c;
  --gold: #e8a317;
  --gold-light: #f5c842;
  --cream: #faf8f2;
  --ink: #1a2420;
  --muted: #5c6b63;
  --line: #e2ebe4;
  --soft: #f3f8f4;
  --white: #fff;
  --shadow: 0 20px 50px rgba(13, 46, 28, 0.12);
  --shadow-sm: 0 8px 24px rgba(13, 46, 28, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin-top: 0; font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
p { margin-top: 0; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 42rem; }

.container { width: 92vw; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Top bar & header */
.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-contacts span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ico-label { display: inline-flex; align-items: center; gap: 0.45rem; }
.ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.ico-phone {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}
.ico-mail {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.topbar-social { display: flex; gap: 0.75rem; }
.topbar-social a { opacity: 0.85; }
.topbar-social a:hover { opacity: 1; color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-brand { flex-shrink: 0; }
.logo-brand img { height: 58px; width: auto; max-width: 200px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: var(--soft); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.25rem !important;
  background: var(--green) !important;
  color: #fff !important;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 1.35rem;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1508;
  box-shadow: 0 10px 28px rgba(232, 163, 23, 0.35);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232, 163, 23, 0.45); }
.btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn.outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn.light { background: #fff; color: var(--green); border-color: var(--line); }
.btn.light:hover { border-color: var(--green); }
.btn-link {
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.btn-link::after { content: "→"; transition: transform 0.2s; }
.btn-link:hover::after { transform: translateX(4px); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font);
}
.section-label {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(13, 92, 50, 0.08);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Hero slider */
.home-slider { position: relative; min-height: 590px; overflow: hidden; background: var(--green-dark); }
.slider-track, .slide { min-height: 590px; }
.slide {
  display: none;
  background-size: cover;
  background-position: center;
  color: #fff;
  align-items: center;
  position: relative;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 61, 34, 0.92) 0%, rgba(13, 92, 50, 0.55) 55%, rgba(13, 92, 50, 0.25) 100%);
}
.slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.slide.active { display: flex; }
.default-slide {
  background: linear-gradient(105deg, rgba(8, 61, 34, 0.94), rgba(26, 122, 71, 0.6)),
    url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.slide-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) 0;
  max-width: 720px;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.slide-content h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.slide-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.slide-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 2;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dots button.active { background: #fff; transform: scale(1.2); }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  margin-top: -1px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.trust-item span { font-size: 0.8125rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Sections */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.soft {
  background: linear-gradient(180deg, var(--soft) 0%, #e8f2eb 100%);
  position: relative;
}
.soft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.section-head .btn-link { flex-shrink: 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.intro-grid .lead { margin-top: 1rem; }
.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(145deg, var(--green-dark), var(--green-light));
  box-shadow: var(--shadow);
}
.intro-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1574323347407-f5f28a1f2f1e?auto=format&fit=crop&w=800&q=80") center/cover;
  opacity: 0.85;
}
.intro-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(8, 61, 34, 0.9));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.stats { display: grid; gap: 1rem; }
.stat-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card strong { display: block; color: var(--green); font-size: 1.125rem; font-family: var(--font); margin-bottom: 0.25rem; }
.stat-card span { color: var(--muted); font-size: 0.9375rem; }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--leaf);
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--leaf));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.pillar-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background: #fff;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.pillar-icon-research::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z'/%3E%3C/svg%3E");
}
.pillar-icon-quality::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}
.pillar-icon-field::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c7 0 11-8 11-8s-4-6-11-6a4.49 4.49 0 0 0-1.29.04l-1-2.3L3.82 2.66C5.9 7.83 8 14 17 16v2c7 0 11-8 11-8s-4-6-11-6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c7 0 11-8 11-8s-4-6-11-6a4.49 4.49 0 0 0-1.29.04l-1-2.3L3.82 2.66C5.9 7.83 8 14 17 16v2c7 0 11-8 11-8s-4-6-11-6z'/%3E%3C/svg%3E");
}
.pillar-icon-support::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--soft), #dceee2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--green);
  font-size: 1.1rem;
  font-family: var(--font);
}
.card-media-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.45;
  letter-spacing: 0.05em;
}
.pillar-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; font-family: var(--font); font-weight: 800; }
.pillar-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.category-card, .product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.category-card:hover, .product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.category-card .card-media, .product-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #dceee2 0%, #f5f0e0 100%);
  overflow: hidden;
}
.category-card img, .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img, .product-card:hover img { transform: scale(1.05); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(8, 61, 34, 0.75));
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}
.category-card:hover .category-overlay { opacity: 1; }

.card-body { padding: 1.25rem 1.35rem 1.35rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.category-card h3,
.product-card h3,
.product-card .product-title,
.category-card .category-title {
  font-family: var(--font) !important;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.category-card p,
.product-card p,
.product-card .product-excerpt {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card span, .card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--soft);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Product detail page title */
.product-detail h1,
.product-detail-title,
.detail-grid > div > h1 {
  font-family: var(--font) !important;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.product-listing .product-card {
  min-height: 100%;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 163, 23, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.cta-inner p { color: rgba(255, 255, 255, 0.88); max-width: 520px; margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }

/* Page hero */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=800&q=60") right center/cover;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p { max-width: 640px; color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.breadcrumb a:hover { text-decoration: underline; }
.knowledge-hero { background: linear-gradient(120deg, #0a2818, var(--green-dark)); }

/* Layouts */
.layout-sidebar {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.filter-box {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.filter-box h3 {
  font-family: var(--font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.filter-box a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s, padding-left 0.2s;
}
.filter-box a:hover { color: var(--green); padding-left: 0.35rem; }
.filter-box a.selected { color: var(--green); font-weight: 800; border-left: 3px solid var(--gold); padding-left: 0.75rem; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.detail-image {
  background: var(--soft);
  border-radius: var(--radius-lg);
  min-height: 400px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.season {
  background: linear-gradient(90deg, rgba(232, 163, 23, 0.12), transparent);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.product-info h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.product-info ul { padding-left: 1.25rem; }
.product-info li { margin-bottom: 0.5rem; color: var(--muted); }
.product-info li::marker { color: var(--green); }

.cms-content { font-size: 1.0625rem; max-width: 780px; }
.cms-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.cms-content p { margin-bottom: 1.25rem; color: var(--muted); }
.page-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-card, .panel, .filter-box, .admin-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 { margin-bottom: 1rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-item strong { display: block; color: var(--green); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.login-card input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(61, 155, 92, 0.15);
  background: #fff;
}

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img, .article-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.article-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft), #f5f0e0);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
}
.article-body { padding: 1.5rem; text-align: left; }
.article-body h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.article-body h2 a:hover { color: var(--green); }
.article-body time { display: block; font-size: 0.8125rem; color: var(--muted); margin-bottom: 0.75rem; }
.source-btn {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 2px solid var(--green);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  margin-top: 0.5rem;
  color: var(--green);
  transition: background 0.2s, color 0.2s;
}
.source-btn:hover { background: var(--green); color: #fff; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--green-dark) 0%, #061a10 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand p { margin-top: 1rem; max-width: 320px; line-height: 1.7; font-size: 0.9375rem; }
.footer-grid h3, .footer-grid h4 {
  color: #fff;
  font-family: var(--font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-grid a {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.9375rem;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}
.footer-grid a:hover { opacity: 1; color: var(--gold-light); }
.footer-contact p { margin: 0.5rem 0; font-size: 0.9375rem; }
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* Admin (unchanged structure, refreshed tokens) */
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--soft);
  padding: 20px;
}
.login-card {
  width: min(420px, 92vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.login-card > * { margin-bottom: 14px; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 14px; font-weight: 600; }
.alert.success { background: #e9f8ed; color: #176b3a; }
.alert.error { background: #ffecec; color: #9b1c1c; }
.admin-body { background: #f6f8f5; }
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 250px;
  background: var(--green-dark);
  color: #fff;
  padding: 26px;
  overflow: auto;
}
.admin-sidebar .brand { display: block; color: #fff; margin-bottom: 28px; font-weight: 800; }
.admin-sidebar nav a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #e7f2ea;
}
.admin-sidebar nav a:hover { background: rgba(255, 255, 255, 0.1); }
.admin-main { margin-left: 250px; padding: 28px; }
.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 22px;
}
.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.admin-card span { color: var(--muted); }
.admin-card strong { display: block; font-size: 34px; color: var(--green); }
.panel { margin-bottom: 22px; overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: 12px; vertical-align: top; }
th { background: var(--soft); }
.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-form.wide textarea,
.admin-form.wide button,
.admin-form.wide h2,
.admin-form.wide h3 { grid-column: 1 / -1; }
.admin-form label { display: grid; gap: 6px; font-weight: 700; }
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  grid-column: 1 / -1;
}
.checkbox-row input { width: auto; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.muted { color: var(--muted); margin-bottom: 18px; }
.maintenance-card { text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
  .card-grid, .article-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-visual { min-height: 280px; order: -1; }
  .admin-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar-inner { justify-content: center; }
  .topbar-social { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .navbar { position: relative; flex-wrap: wrap; min-height: 72px; }
  .logo-brand img { height: 48px; }
  .home-slider, .slider-track, .slide { min-height: 520px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; }
  .pillars-grid, .cta-inner, .hero-grid, .detail-grid, .contact-grid, .product-info, .layout-sidebar, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions { justify-content: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .card-grid, .article-grid, .admin-form { grid-template-columns: 1fr; }
  .filter-box { position: static; }
  .btn { width: 100%; }
  .slide-actions .btn { width: auto; flex: 1; min-width: 140px; }
  .admin-sidebar { position: static; width: auto; }
  .admin-main { margin-left: 0; padding: 18px; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; }
  .card-grid .category-card .card-media, .product-image { height: 180px; }
}
