:root {
  /* â”€â”€ Brand (Harvest palette) â”€â”€ */
  --brand-primary: #4C7A30;
  /* leaf green */
  --brand-primary-dark: #3A5E24;
  --brand-accent: #E89220;
  /* marigold / harvest orange */
  --brand-accent-dark: #CF7D1D;

  /* â”€â”€ Neutrals â”€â”€ */
  --navy: #22331A;
  /* deep forest footer */
  --white: #ffffff;
  --cream: #FBF9F2;
  /* warm page background */
  --off-white: #F4F1E8;
  /* warm product-image bg */
  --border: #E6E2D6;
  --text-dark: #2B2A22;
  --text-muted: #7A7768;

  /* â”€â”€ Layout â”€â”€ */
  --page-px: 4rem;
  --radius: 8px;
  --shadow-hover: 0 8px 24px rgba(60, 50, 20, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* â•â•â•â•â•â•â•â• ANNOUNCEMENT BAR â•â•â•â•â•â•â•â• */
.announcement-bar {
  background: var(--brand-primary);
  padding: 8px 0;
  position: relative;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-items {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.announcement-items strong {
  color: #FFD86B;
  font-weight: 700;
}

.ann-divider {
  color: rgba(255, 255, 255, 0.32);
  padding: 0 0.75rem;
}

.ann-close {
  position: absolute;
  right: var(--page-px);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.ann-close:hover {
  color: white;
}

/* â•â•â•â•â•â•â•â• HERO â€” full-bleed farm photo â•â•â•â•â•â•â•â• */
.hero-farm {
  position: relative;
  overflow: hidden;
}

.hero-farm-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-farm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 38, 12, 0.90) 0%, rgba(28, 48, 16, 0.74) 42%, rgba(28, 48, 16, 0.30) 78%, rgba(28, 48, 16, 0.12) 100%);
}

.hero-farm-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 84px var(--page-px) 92px;
}

.hero-farm-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: #BBE08A;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-pill {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  padding: 6px 14px;
  backdrop-filter: blur(2px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--brand-accent);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: white;
}

/* â•â•â•â•â•â•â•â• HERO TRUST BAR â•â•â•â•â•â•â•â• */
.hero-trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
}

.hero-trust-inner {
  display: flex;
  align-items: stretch;
}

.hero-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
}

.hero-trust-item+.hero-trust-item {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.htb-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hero-trust-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-trust-item small {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* â•â•â•â•â•â•â•â• SECTION HEADER â•â•â•â•â•â•â•â• */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -14px;
  margin-bottom: 24px;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.view-all-link:hover {
  text-decoration: underline;
}

/* â•â•â•â•â•â•â•â• CATEGORIES (6 tiles) â•â•â•â•â•â•â•â• */
.cat-section.page-container {
  padding: 3.5rem var(--page-px);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.cat-card.sh-category-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cat-card-img-container {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border);
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}

.cat-card.sh-category-card:hover .cat-card-img-container {
  box-shadow: 0 10px 24px rgba(60, 50, 20, 0.16);
}

.cat-card.sh-category-card:hover .cat-card-img {
  transform: scale(1.07);
}

.cat-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

/* Illustrated tiles for categories without a product photo yet */
.cat-illus {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cat-illus::before {
  content: '';
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 16px rgba(60, 50, 20, 0.12);
}

.cat-illus span {
  position: relative;
  font-size: 2.9rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.18));
}

.cat-illus.milk {
  background: radial-gradient(circle at 50% 30%, #DCEBC6 0%, #A9C97E 100%);
}

.cat-illus.oil {
  background: radial-gradient(circle at 50% 30%, #F7DA94 0%, #E2A838 100%);
}



/* TYPE 3: Full-width landscape banner */
.banner-collection.page-container {
  padding: 0 var(--page-px) 3.5rem;
}

.banner-collection .banner {
  border-radius: 12px;
}

/* â•â•â•â•â•â•â•â• FARM STORY (video) â•â•â•â•â•â•â•â• */
.farm-story.page-container {
  padding: 0 var(--page-px) 4rem;
}

.farm-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.farm-story-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 18%;
  background: #000;
  display: block;
}

.farm-story-text {
  padding: 2.5rem 2.75rem 2.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.farm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.farm-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary-dark);
  background: #EAF0DF;
  border: 1px solid #D5E0C2;
  border-radius: 20px;
  padding: 6px 14px;
}

.farm-story-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.farm-story-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.farm-story-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.farm-story-addr {
  font-size: 0.85rem;
  color: var(--brand-primary-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* â•â•â•â•â•â•â•â• WHY CHOOSE US â•â•â•â•â•â•â•â• */
.why-section {
  background: #F1EFE3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.why-inner.page-container {
  padding: 3rem var(--page-px);
}

.why-head {
  text-align: center;
  margin-bottom: 28px;
}

.why-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-head p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* â•â•â•â•â•â•â•â• CUSTOMER REVIEWS â•â•â•â•â•â•â•â• */
.reviews-section.page-container {
  padding: 3.5rem var(--page-px) 4rem;
}

.reviews-head {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-stars {
  color: #E8A93B;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.reviews-rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-rating-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(60, 50, 20, 0.04);
}

.review-stars {
  color: #E8A93B;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.reviewer-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.verified-badge {
  color: var(--brand-primary);
  font-weight: 600;
}

/* â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â• */
.luxury-footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.footer-brand-name span {
  color: var(--brand-accent);
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-description {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-contact p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrapper {
  padding: 18px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.35);
}

.payment-badges {
  display: flex;
  gap: 6px;
}

.pay-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* â•â•â•â•â•â•â•â• TABLET â‰¤1100px â•â•â•â•â•â•â•â• */
@media (max-width: 1100px) {
  :root {
    --page-px: 2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-row-swiper {
    grid-template-columns: repeat(4, 1fr);
  }

  .banner-collection-container {
    min-width: 240px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* â•â•â•â•â•â•â•â• MOBILE â‰¤768px â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  :root {
    --page-px: 1rem;
  }

  .announcement-items {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
  }

  .ann-divider {
    display: none;
  }

  .ann-close {
    top: 50%;
    right: 0.75rem;
  }

  .desktop-header-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 10px 0;
  }

  .desktop-header-left {
    order: 1;
    flex: 0 0 auto;
  }

  .desktop-store-logo {
    height: 40px;
  }

  .desktop-header-right {
    order: 2;
    flex: 0 0 auto;
    gap: 1rem;
    margin-left: auto;
  }

  .desktop-delivery-location {
    display: none;
  }

  .desktop-header-center {
    order: 3;
    width: 100%;
    flex: none;
  }

  .search-bar {
    height: 40px;
  }

  .search-category-select {
    display: none;
  }

  .nav-item {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  /* Hero */
  .hero-farm-inner {
    padding: 48px var(--page-px) 52px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-farm-overlay {
    background: linear-gradient(180deg, rgba(20, 38, 12, 0.62) 0%, rgba(20, 38, 12, 0.84) 100%);
  }

  .btn-primary {
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  .btn-ghost {
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  /* Trust bar â†’ 2Ã—2 */
  .hero-trust-inner {
    flex-wrap: wrap;
  }

  .hero-trust-item {
    flex: 0 0 50%;
    min-width: 0;
    gap: 9px;
    padding: 12px 6px;
  }

  .hero-trust-item>div {
    min-width: 0;
  }

  .hero-trust-item strong {
    font-size: 0.8rem;
    overflow-wrap: break-word;
  }

  .hero-trust-item small {
    overflow-wrap: break-word;
  }

  .hero-trust-item:nth-child(odd) {
    border-left: none;
    padding-left: 6px;
  }

  .hero-trust-item:nth-child(even) {
    border-left: 1px solid var(--border);
    padding-left: 14px;
  }

  .hero-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .htb-icon {
    font-size: 1.3rem;
  }

  /* Categories */
  .cat-section.page-container {
    padding: 2.2rem var(--page-px);
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cat-card-title {
    font-size: 0.74rem;
  }

  .cat-illus {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.25rem;
  }



  /* Farm story */
  .farm-story-inner {
    grid-template-columns: 1fr;
  }

  .farm-story-video {
    height: 260px;
  }

  .farm-story-text {
    padding: 1.75rem 1.5rem;
  }

  .farm-story-text h2 {
    font-size: 1.5rem;
  }

  /* Reviews */
  .reviews-section.page-container {
    padding: 2.5rem var(--page-px) 3rem;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    padding: 22px 20px;
  }

  /* Why */
  .why-inner.page-container {
    padding: 2.2rem var(--page-px);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-item {
    padding: 20px 14px;
  }

  /* Footer */
  .luxury-footer {
    padding: 36px 0 0;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .payment-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.notice {
  background-color: var(--header-notice-background);
  color: var(--header-notice-text);
  font-size: small;
  height: 100%;
  padding: 0px;
  width: 100%;

}