@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");

/* =========================================
   RESET & TOKENS
   ========================================= */

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

:root {
  --white: #fdfdfc;
  --off-white: #f5f5f2;
  --black: #111110;
  --text: #2a2a27;
  --muted: #7a7a70;
  --faint: #b8b8af;
  --border: #e8e8e2;
  --border-dark: #d0d0c8;

  --green: #155e2f;
  --green-mid: #18a34a;
  --green-light: #edf7f1;
  --green-accent: #c4f0d4;

  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --radius: 6px;
  --radius-lg: 12px;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

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

.hidden {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}
input,
textarea,
select {
  font-family: var(--font-body);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}

.label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--sm {
  padding: 4rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: #134f28;
  border-color: #134f28;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn--outline:hover {
  border-color: var(--text);
  background: var(--off-white);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  color: var(--green);
  gap: 12px;
}

.btn--ghost .arrow {
  transition: transform 0.18s ease;
}
.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* =========================================
   NAV
   ========================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  width: 130px;
  overflow-x: hidden;
}

.nav__logo-img {
  width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a.active {
  font-weight: 500;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
  position: relative;
}

.nav__cart-btn:hover {
  border-color: var(--green);
}

.nav__cart-btn ion-icon {
  font-size: 1.8rem;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.2s;
}

/* CART DRAWER */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: flex-end;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 200;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  width: min(420px, 95%);
  max-width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.14);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-drawer__header h2 {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.cart-drawer__close {
  border: none;
  background: transparent;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 0.18s ease;
}

.cart-drawer__close ion-icon {
  font-size: 2rem;
}

.cart-drawer__close:hover {
  background: var(--off-white);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
}

.cart-item__media {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__media ion-icon {
  font-size: 1.6rem;
  color: var(--green);
}

.cart-item__body h3 {
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}

.cart-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.cart-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.5rem;
  background: var(--white);
}

.cart-item__controls button {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
}

.cart-item__controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.cart-item__remove {
  border: none;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.cart-item__remove:hover {
  background: var(--off-white);
  color: var(--text);
}

.cart-drawer__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.cart-drawer__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-drawer__checkout,
.cart-drawer__clear {
  width: 100%;
  justify-content: center;
}

.cart-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1rem;
  color: var(--muted);
}

.cart-empty ion-icon {
  font-size: 2.5rem;
  color: var(--green);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
}

.checkout-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.checkout-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item__media {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: var(--off-white);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.checkout-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item__media ion-icon {
  font-size: 1.75rem;
  color: var(--green);
}

.checkout-item__body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.checkout-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0.85rem;
}

.checkout-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.5rem;
  background: var(--white);
}

.checkout-item__controls button {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
}

.checkout-item__controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.checkout-summary__footer,
.checkout-totals {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.98rem;
  padding: 0.75rem 0;
}

.checkout-row--total {
  font-size: 1.08rem;
  font-weight: 700;
}

.checkout-note {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.checkout-empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1rem;
  color: var(--muted);
}

.checkout-empty-state ion-icon {
  font-size: 3rem;
  color: var(--green);
}

.checkout-success {
  padding: 1.5rem;
  border: 1px solid var(--green-accent);
  background: var(--green-light);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.checkout-success h3 {
  margin-bottom: 0.75rem;
}

.checkout-submit {
  position: relative;
}

.checkout-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-left: 0.75rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer__logo span {
  color: var(--green-mid);
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
  background: var(--green);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.footer__wa:hover {
  background: var(--green-mid);
}

.footer__heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 12px;
}

.footer__credit a {
  color: var(--green-mid);
}

/* =========================================
   HOME — HERO
   ========================================= */

.hero {
  padding: 8rem 0 6rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--green);
  background: var(--green-light);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero__headline {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--green);
}

.hero__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

.badge svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  aspect-ratio: 4/5;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-accent);
}

.hero__img-placeholder {
  text-align: center;
}

.hero__img-placeholder ion-icon {
  font-size: 6rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

.hero__img-placeholder p {
  font-size: 12px;
  color: var(--muted);
}

.hero__stat {
  position: absolute;
  bottom: 1.5rem;
  left: -2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  min-width: 160px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
}

/* =========================================
   HOME — VALUE PROPS
   ========================================= */

.props__item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.props__item:first-child {
  border-top: 1px solid var(--border);
}

.props__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--faint);
  padding-top: 2px;
}

.props__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.props__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

/* =========================================
   HOME — FEATURED PRODUCTS
   ========================================= */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-header__left .label {
  margin-bottom: 0.5rem;
}

/* =========================================
   PRODUCT CARD
   ========================================= */

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.product-card__img {
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__img ion-icon {
  font-size: 3rem;
  color: var(--faint);
}

/* new css for product card - ai generated */
.product-card__img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  transform: scale(1.2);
}

.product-card__img img,
.product-card__img ion-icon,
.product-card__tag {
  position: relative;
  z-index: 1;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 500;
  background: var(--green);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.product-card__price .unit {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--faint);
  margin-left: 2px;
}

.product-card__order {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: all 0.15s;
  cursor: pointer;
}

.product-card__order:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
/* =========================================
   HOME — HOW IT WORKS
   ========================================= */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.how-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.how-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.how-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-card__body {
  padding: 10px 12px;
}

.how-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 6px 10px;

  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.how-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.how-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.how-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  color: var(--green);
  font-size: 14px;
  line-height: 1.7;
}

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

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

/* =========================================
   HOME — SERVICES TEASER
   ========================================= */

.services-band {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
}

.services-band .label {
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.services-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.services-band .sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.services-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */

.page-header {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-header .label {
  margin-bottom: 0.75rem;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
}

/* =========================================
   SHOP PAGE
   ========================================= */

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  font-size: 13px;
  font-weight: 400;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-tab:hover {
  border-color: var(--border-dark);
  color: var(--text);
}

.filter-tab.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.shop-count {
  font-size: 13px;
  color: var(--muted);
}

#products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

/* =========================================
   ORDER MODAL
   ========================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(12px);
  transition: transform 0.2s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.modal__product-info {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.modal__close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}

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

.modal__qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.modal__qty label {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border: none;
  font-size: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}

.qty-control button:hover {
  background: var(--border);
}

.qty-control span {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 36px;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.modal__total {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 1.25rem;
}

.modal__total-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.modal__actions {
  display: flex;
  gap: 0.75rem;
}

.modal__actions .btn {
  flex: 1;
  justify-content: center;
}

/* =========================================
   INVOICE
   ========================================= */

.invoice {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
  font-size: 13px;
}

.invoice.show {
  display: block;
}

.invoice__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.invoice__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.invoice__logo span {
  color: var(--green);
}

.invoice__meta {
  text-align: right;
  color: var(--muted);
}
.invoice__num {
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.invoice__to-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.invoice__customer {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}
.invoice__addr {
  color: var(--muted);
}

.invoice table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 1rem;
}

.invoice table th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.invoice table th:last-child {
  text-align: right;
}

.invoice table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.invoice table td:last-child {
  text-align: right;
}

.invoice__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  font-weight: 500;
  font-size: 15px;
}

.invoice__total-amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
}

.invoice__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.invoice__print {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}

.invoice__print:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* =========================================
   SERVICES PAGE
   ========================================= */

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-item:first-of-type {
  border-top: 1px solid var(--border);
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-item__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-item__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-item__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-item__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.service-item__includes .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 11px;
}

.service-item__price-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.service-item__price-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.service-item__price-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-item__price-note {
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 1.5rem;
}

.pricing-note {
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.pricing-note p {
  font-size: 14px;
  color: var(--green);
  line-height: 1.7;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  padding: 5rem 0;
}

.contact-info__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--green);
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap .sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  color: var(--green);
}

.form-success h3 {
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 14px;
  color: var(--muted);
}

.wa-box {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wa-box__text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.wa-box__text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  #products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-item__price-box {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .services-band .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4rem 0;
  }
  .nav__links {
    display: none;
  }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__cta .btn {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  #products-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__headline {
    font-size: 2.8rem;
  }
  .hero {
    padding: 5rem 0 4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .wa-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .modal {
    padding: 1.5rem;
  }
  .modal__actions {
    flex-direction: column;
  }
  .services-band .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media print {
  .nav,
  .footer,
  .modal-overlay,
  .btn,
  button:not(.invoice__print) {
    display: none !important;
  }
  .invoice {
    display: block !important;
    border: none;
  }
}
