/* ================================================================
   Botany — Main CSS  (Urvann-inspired fresh design)
   Theme: Lime Green #a0ce4e, White, Dark #1a1a1a
================================================================ */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --green: #a0ce4e;
  --green-dark: #7aaa1e;
  --green-deep: #2a5d0e;
  --green-light: #eef7d6;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f7f8f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding-top: 130px;
  /* topbar(32) + navbar(60) + category-strip(38) */
}

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

img {
  max-width: 100%;
  height: auto;
}

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

/* ── Topbar announcement strip ────────────────────────────────── */
.site-topbar {
  background: var(--green);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* ── Site Header (fixed) ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

/* ── Navbar row ───────────────────────────────────────────────── */
.navbar-botany {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  height: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Brand */
.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-brand-logo .leaf-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text);
  flex-shrink: 0;
}

/* Pincode chip */
.pincode-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
  background: white;
}

.pincode-chip:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.pincode-chip .pin-icon {
  font-size: 0.85rem;
  color: var(--green-dark);
}

.pincode-chip .pin-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  display: block;
  line-height: 1;
}

.pincode-chip .pin-value {
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  display: block;
  line-height: 1.3;
}

/* Search bar */
.navbar-search {
  flex: 1;
  max-width: 540px;
}

.navbar-search .search-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #f9fafb;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar-search .search-input-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(160, 206, 78, 0.18);
  background: white;
}

.navbar-search .search-cat-select {
  border: none;
  background: none;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  outline: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  max-width: 100px;
}

.navbar-search input[type=search] {
  border: none;
  background: none;
  flex: 1;
  padding: 9px 14px;
  font-size: 0.88rem;
  outline: none;
}

.navbar-search input[type=search]::placeholder {
  color: #9ca3af;
}

.navbar-search .search-btn {
  background: var(--green);
  border: none;
  padding: 9px 18px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--text);
  flex-shrink: 0;
}

.navbar-search .search-btn:hover {
  background: var(--green-dark);
}

/* Nav action buttons */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  background: none;
  text-decoration: none;
}

.nav-action-btn:hover {
  background: var(--green-light);
  color: var(--text);
}

.nav-action-btn i {
  font-size: 1.05rem;
}

.nav-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: var(--text);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ── Category pill strip ──────────────────────────────────────── */
.category-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-strip-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  white-space: nowrap;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--text);
}

.cat-pill img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Mobile nav ───────────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--text);
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-search-bar {
  background: var(--white);
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-search-bar .search-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #f9fafb;
}

.mobile-search-bar input[type=search] {
  border: none;
  background: none;
  flex: 1;
  padding: 9px 14px;
  font-size: 0.88rem;
  outline: none;
}

.mobile-search-bar .search-btn {
  background: var(--green);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

/* Mobile drawer */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
}

.mobile-drawer-overlay.open {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  background: var(--white);
  z-index: 1101;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav-link i {
  color: var(--green);
  width: 18px;
  text-align: center;
}

.mobile-nav-link:hover {
  background: var(--green-light);
}

@media (max-width: 768px) {
  body {
    padding-top: 148px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar-search,
  .pincode-chip {
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 140px;
  }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-green {
  background: var(--green);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-size: 0.88rem;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: var(--text);
}

/* Backward-compat alias */
.btn-primary-green {
  background: var(--green);
  color: var(--text);
  border-color: var(--green);
}

.btn-primary-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--text);
}

.btn-outline-green {
  background: none;
  color: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: 8px;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.88rem;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--text);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  height: 420px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 65%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  color: white;
  padding: 0 48px;
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 26px;
  line-height: 1.65;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 13px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: var(--text);
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-weight: 700;
  padding: 11px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.hero-cta-outline:hover {
  background: rgba(255, 255, 255, 0.28);
  color: white;
}

/* swiper overrides */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
}

.swiper-pagination-bullet-active {
  background: var(--green) !important;
}

@media (max-width: 600px) {
  .hero-swiper {
    height: 260px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 0 20px;
  }
}

/* ── Trust strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--green-light);
  border-top: 1px solid #d5e8a0;
  border-bottom: 1px solid #d5e8a0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-right: 1px solid #c8dea0;
  flex: 1;
  min-width: 200px;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.trust-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .trust-item {
    border-right: none;
    border-bottom: 1px solid #c8dea0;
    padding: 14px 20px;
  }

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

/* ── Section wrappers ─────────────────────────────────────────── */
.section-wrap {
  padding: 48px 0;
}

.section-wrap-gray {
  background: var(--bg);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Category grid (homepage) ─────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.cat-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.cat-card-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}

.cat-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.cat-card-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Product card ─────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f5e8;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: var(--text);
  font-size: 0.67rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.product-badge.sale {
  background: #ef4444;
  color: white;
}

.product-badge.new {
  background: #22c55e;
  color: white;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.wishlist-btn:hover,
.wishlist-btn.active {
  color: #ef4444;
  border-color: #ef4444;
}

.product-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.7rem;
  color: #f59e0b;
}

.product-stars .count {
  color: var(--text-muted);
  margin-left: 2px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.product-price .original {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 3px;
}

.product-price .discount {
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 4px;
}

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: var(--text);
  border: none;
  border-radius: 7px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.add-btn:hover {
  background: var(--green-dark);
  color: var(--text);
}

/* ── Products grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-designation {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Newsletter ───────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #1a3a0a 0%, var(--green-deep) 100%);
  color: white;
  padding: 56px 0;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-section p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  background: var(--green);
  border: none;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--green-dark);
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 20px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  color: var(--text);
}

.footer-heading {
  font-size: 0.76rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.page-breadcrumb {
  background: var(--bg);
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.page-breadcrumb a {
  color: var(--text-muted);
}

.page-breadcrumb a:hover {
  color: var(--green-dark);
}

/* ── Inner page hero ──────────────────────────────────────────── */
.inner-page-hero {
  background: linear-gradient(135deg, #1a3a0a 0%, var(--green-deep) 100%);
  padding: 44px 0;
  color: white;
  text-align: center;
}

.inner-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.inner-page-hero p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ── Plant detail ─────────────────────────────────────────────── */
.plant-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0f5e8;
  aspect-ratio: 1/1;
}

.plant-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-thumb-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.plant-detail-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.plant-detail-thumb.active {
  border-color: var(--green);
}

.plant-care-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Cart ─────────────────────────────────────────────────────── */
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--green-light);
}

.qty-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--green-light);
}

.qty-input {
  border: none;
  width: 42px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  outline: none;
}

/* ── Filters sidebar ──────────────────────────────────────────── */
.filters-sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.filter-section {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 7px;
  transition: background 0.18s ease;
}
.filter-option:hover {
  background: var(--green-light);
}

/* Custom styled checkboxes & radios */
.filter-option input[type=checkbox],
.filter-option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.18s ease;
  background: white;
}
.filter-option input[type=radio] {
  border-radius: 50%;
}
.filter-option input[type=checkbox]:hover,
.filter-option input[type=radio]:hover {
  border-color: var(--green);
}
.filter-option input[type=checkbox]:checked,
.filter-option input[type=radio]:checked {
  background: var(--green);
  border-color: var(--green);
}
.filter-option input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #1a1a1a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.filter-option input[type=radio]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}
.filter-option:has(input:checked) {
  background: var(--green-light);
  font-weight: 600;
}

/* ── Forms ────────────────────────────────────────────────────── */
.form-control:focus,
.form-select:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(160, 206, 78, 0.2) !important;
}

/* ── Pincode Modal ────────────────────────────────────────────── */
.pincode-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.pincode-modal-overlay.open {
  display: flex;
}

.pincode-modal {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pincode-modal-head {
  background: linear-gradient(135deg, #1a3a0a, var(--green-deep));
  padding: 28px 28px 22px;
  text-align: center;
  color: white;
}

.pincode-modal-head .modal-leaf {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.6rem;
}

.pincode-modal-head h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pincode-modal-head p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

.pincode-modal-body {
  padding: 22px 26px;
}

.pincode-input-wrap {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pincode-input-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(160, 206, 78, 0.2);
}

#pincodeInput {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  outline: none;
}

.pincode-check-btn {
  background: var(--green);
  border: none;
  padding: 0 20px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--text);
}

.pincode-check-btn:hover {
  background: var(--green-dark);
}

.pincode-result {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}

.pincode-result.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.pincode-result.warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
  display: block;
}

.pincode-ncr-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.pincode-ncr-note i {
  color: var(--green-dark);
  margin-top: 2px;
}

.pincode-modal-footer {
  padding: 4px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pincode-confirm-btn {
  width: 100%;
  padding: 13px;
  background: var(--green);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--text);
  display: none;
}

.pincode-confirm-btn.show {
  display: block;
}

.pincode-confirm-btn:hover {
  background: var(--green-dark);
}

.pincode-skip-btn {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.pincode-skip-btn:hover {
  color: var(--green-dark);
}

/* ── Toast ────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.botany-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--green);
  margin-top: 8px;
  font-size: 0.88rem;
  animation: toastIn 0.3s ease;
}

.botany-toast.error {
  border-left-color: #ef4444;
}

@keyframes toastIn {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ── Messages ─────────────────────────────────────────────────── */
.messages-container {
  position: fixed;
  top: 140px;
  right: 16px;
  z-index: 1500;
  max-width: 340px;
  width: 100%;
}

@media (max-width: 768px) {
  .messages-container {
    top: 156px;
    right: 12px;
    left: 12px;
  }
}

.alert {
  border-radius: 10px;
  border: none;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border-left: 4px solid #22c55e;
}

.alert-danger,
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

/* ── Back to top ──────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 76px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--text);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ── Dropdown override ────────────────────────────────────────── */
.dropdown-menu {
  border: 1.5px solid var(--border) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1) !important;
}

.dropdown-item:hover {
  background: var(--green-light) !important;
}

.dropdown-item:focus {
  background: var(--green-light) !important;
}

/* ── Utility classes ──────────────────────────────────────────── */
.text-green {
  color: var(--green-dark) !important;
}

.bg-green-light {
  background: var(--green-light) !important;
}

.rounded-pill-green {
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Account pages ────────────────────────────────────────────── */
.account-sidebar .nav-link {
  color: var(--text);
  border-radius: 8px;
  font-weight: 500;
}

.account-sidebar .nav-link.active,
.account-sidebar .nav-link:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.account-sidebar .nav-link i {
  width: 20px;
  text-align: center;
}

/* ── Order status badges ──────────────────────────────────────── */
.order-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.order-badge-pending {
  background: #fef9c3;
  color: #854d0e;
}

.order-badge-processing {
  background: #dbeafe;
  color: #1e40af;
}

.order-badge-shipped {
  background: #e0e7ff;
  color: #3730a3;
}

.order-badge-delivered {
  background: #dcfce7;
  color: #166534;
}

.order-badge-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}

.blog-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-light);
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.04);
}

.blog-body {
  padding: 18px;
}

.blog-cat-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}