*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2c9c07;
  --primary-dark: #237d06;
  --dark-bg: #221012;
  --light-bg: #f8f6f6;
  --white: #ffffff;
  --text-dark: #1e1e1e;
  --text-light: #f5f5f5;
  --gold: #d4af37;
  --gray: #888;

  --radius: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s ease;
  --green: #2c9c07;
  --green-d: #217505;
  --green-l: #3dbe08;
  --green-pale: #edf7e9;
  --green-tint: rgba(44, 156, 7, 0.08);
  --green-glow: rgba(44, 156, 7, 0.18);
  --white: #ffffff;
  --off-white: #f7faf6;
  --black: #111111;
  --text-d: #1a1a1a;
  --text-m: #4a6642;
  --text-l: #7aaa6e;
  --border: rgba(44, 156, 7, 0.2);
  --border-s: rgba(44, 156, 7, 0.12);
  --shadow: 0 20px 60px rgba(44, 156, 7, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 15% 10%,
      rgba(44, 156, 7, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 85% 85%,
      rgba(44, 156, 7, 0.05) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 0;
}

.page-wrap {
  position: relative;
  z-index: 1;

  align-self: center;
  width: 100%;
  padding: 10px;
  margin: 30px 0px;
  max-width: 520px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-d);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.hero {
  margin-bottom: 32px;
  animation: fadeDown 0.7s ease 0.1s both;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
}

.hero p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.6;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s ease 0.2s both;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 0 0 2px 2px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 8px;
}

.field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  font-size: 17px;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.field-wrap.textarea-wrap .field-icon {
  top: 14px;
  transform: none;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(44, 156, 7, 0.18);
  border-radius: 12px;
  padding: 14px 14px 14px 44px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  color: var(--text-d);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  appearance: none;
}
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  /* padding: 10px 50px; */
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--primary);
  white-space: nowrap;
}

.logo-text strong {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--primary);
  transition: var(--transition);
  white-space: nowrap;
  /* font-family: cursive; */
}

.nav-links a:hover {
  color: var(--text-dark);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 50px 0;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 20px;
}
.hide {
  display: none;
}
.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  /* font-size: 22px; */
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  /* font-family: cursive; */
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* ================= BUTTONS ================= */

.btn-primary {
  background: red;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile-navbar-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary:hover {
  background: var(--primary);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-dark:hover {
  background: black;
}

.large {
  padding: 14px 36px;
  font-size: 16px;
}

.small {
  padding: 6px 16px;
  font-size: 13px;
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232c9c07' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--off-white);
  padding-right: 36px;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aabda7;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 22px;
}

.divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid var(--border-s);
}

.divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-l);
  white-space: nowrap;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-l) 0%, var(--green-d) 100%);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  box-shadow: 0 8px 28px rgba(44, 156, 7, 0.35);
  margin-top: 4px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(44, 156, 7, 0.45);
  filter: brightness(1.06);
}

.btn-whatsapp:active {
  transform: translateY(0);
  filter: brightness(0.94);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-l);
  line-height: 1.6;
}

.note strong {
  color: var(--text-m);
  font-weight: 700;
}

.contact-strip {
  margin: 24px 0;
  text-align: center;

  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  animation: fadeUp 0.7s ease 0.35s both;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  margin-left: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: 14px;
}

.contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: 1.5px solid var(--border);
}

.btn-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-call {
  background: var(--white);
  color: var(--green-d);
  box-shadow: 0 2px 12px rgba(44, 156, 7, 0.08);
}

.btn-call:hover {
  transform: translateY(-2px);
  background: var(--green-pale);
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(44, 156, 7, 0.15);
}

.btn-chat {
  background: var(--green-tint);
  color: var(--green-d);
  box-shadow: 0 2px 12px rgba(44, 156, 7, 0.08);
}

.btn-chat:hover {
  transform: translateY(-2px);
  background: var(--green-pale);
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(44, 156, 7, 0.18);
}

.btn-contact:active {
  transform: translateY(0);
  filter: brightness(0.94);
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .nav-links,
  .btn-primary {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hamburger {
    display: flex;
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.4s ease;
}

.field input.error,
.field textarea.error,
.field select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.footer {
  background: var(--dark-bg);
  color: #ccc;
  width: 100%;
  padding-top: 70px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-about p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-column h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-info li {
  color: #aaa;
  font-size: 14px;
}

.footer-info p {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #888;
}
.cart-btn {
  position: relative;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cart-btn:hover {
  background: #237d06;
}
.cart-count {
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible {
  display: flex;
}

/* ===== CART OVERLAY & DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}
.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.cart-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1e1e1e;
}
.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.cart-empty .material-icons {
  font-size: 56px;
  color: #ddd;
  display: block;
  margin-bottom: 12px;
}
.cart-empty p {
  font-size: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
}
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: 700;
  font-size: 13px;
  color: #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--primary);
  color: white;
}
.qty-num {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label {
  font-size: 15px;
  color: #666;
}
.cart-total-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.btn-checkout {
  width: 100%;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border: none;
  padding: 14px;
  text-align: center;
  /* margin-bottom: 5px; */
  display: block;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-checkout:hover {
  background: #237d06;
}
.btn-clear {
  width: 100%;
  background: transparent;
  color: #e53e3e;
  border: 2px solid #e53e3e;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-clear:hover {
  background: #e53e3e;
  color: white;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1e1e1e;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2000;
  transition: transform 0.3s ease;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
  .cart-text {
    display: none;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .card {
    padding: 28px 20px;
  }
  .row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .contact-btns {
    grid-template-columns: 1fr;
  }
}
