:root {
  --brand-900: #1f2d22;
  --brand-800: #24402b;
  --brand-700: #2b4f33;
  --brand-600: #2f5c39;
  --accent: #f4c430;
  --soft: #f7f4ec;
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #141b14;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.skip-link:focus {
  left: 12px;
}

.bg-brand {
  background: linear-gradient(135deg, var(--soft), var(--brand-600));
}

.btn-brand {
  --bs-btn-bg: var(--brand-700);
  --bs-btn-border-color: var(--brand-700);
  --bs-btn-hover-bg: var(--brand-800);
  --bs-btn-hover-border-color: var(--brand-800);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.btn-outline-brand {
  --bs-btn-color: var(--brand-700);
  --bs-btn-border-color: rgba(43, 79, 51, 0.35);
  --bs-btn-hover-bg: var(--brand-700);
  --bs-btn-hover-border-color: var(--brand-700);
  --bs-btn-hover-color: #fff;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.brand-logo-sm {
  height: 34px;
  max-width: 180px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.86);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.hero {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  background: #0f1812;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  transform: scale(1.05);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(244, 196, 48, 0.22), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(43, 79, 51, 0.55), transparent 45%),
    linear-gradient(180deg, rgba(15, 24, 18, 0.65), rgba(15, 24, 18, 0.92));
}

.hero>.container {
  position: relative;
  z-index: 2;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card {
  border-radius: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: var(--accent);
}

.feature-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 27, 20, 0.07);
  box-shadow: 0 10px 24px rgba(20, 27, 20, 0.06);
}

.feature-card i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(244, 196, 48, 0.22);
  color: var(--brand-800);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(20, 27, 20, 0.12);
}

.product-card img {
  height: 190px;
  object-fit: cover;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 27, 20, 0.16) !important;
}

.step-card {
  height: 100%;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(20, 27, 20, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 27, 20, 0.06);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(43, 79, 51, 0.1);
  color: var(--brand-800);
  margin-bottom: 10px;
}

.bg-soft {
  background: var(--soft);
}

.page-hero {
  padding: 46px 0;
  background: linear-gradient(180deg, rgba(244, 196, 48, 0.15), rgba(247, 244, 236, 0.35));
  border-bottom: 1px solid rgba(20, 27, 20, 0.06);
}

.info-pill {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 27, 20, 0.08);
  box-shadow: 0 10px 24px rgba(20, 27, 20, 0.06);
}

.info-pill i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(244, 196, 48, 0.22);
  color: var(--brand-800);
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20, 27, 20, 0.08);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(43, 79, 51, 0.1);
  color: var(--brand-800);
}

.map-embed {
  position: relative;
  width: 100%;
  height: 520px;
}

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

.footer {
  background: linear-gradient(135deg, #0f1812, #1a2a1d);
}

.footer-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 8px;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-800);
  box-shadow: 0 16px 40px rgba(20, 27, 20, 0.22);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-empty {
  padding: 14px;
  border-radius: 18px;
  background: rgba(247, 244, 236, 0.7);
  border: 1px solid rgba(20, 27, 20, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(20, 27, 20, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 27, 20, 0.06);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-item-body {
  min-width: 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(20, 27, 20, 0.12);
  background: #fff;
  color: var(--brand-800);
  display: grid;
  place-items: center;
}

.qty-btn:hover {
  background: rgba(43, 79, 51, 0.06);
}

.qty-input {
  width: 46px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(20, 27, 20, 0.12);
  text-align: center;
}

.qty-remove {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(20, 27, 20, 0.12);
  background: #fff;
  color: #8b1a1a;
  display: grid;
  place-items: center;
}

.qty-remove:hover {
  background: rgba(139, 26, 26, 0.06);
}

.order-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 27, 20, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 27, 20, 0.06);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 54px 0;
  }

  .image-grid img {
    height: 140px;
  }

  .map-embed {
    height: 380px;
  }
}
