/* =========================
   GLOBAL HARVEST TRADE CSS
   (clean + fixed About layout)
   ========================= */

/* Color Variables */
:root {
  --deep-green: #0B3D2E;
  --forest-green: #145A3A;
  --gold: #C9A227;
  --off-white: #F7F5EF;
  --white: #ffffff;
  --charcoal: #1E1E1E;
  --sand-white: #f7ecca;
  --deep-forest: #1C3B2F;

  --radius: 12px;
  --transition: 0.3s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  background: var(--off-white);
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Typography + spacing polish */
/* ===== Typography System (Luxury: Playfair headings + Inter body) ===== */


/* All headings use Playfair */
h1, h2, h3, h4, h5, h6{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--deep-green);
}

/* Consistent paragraph look */
p, li{
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}

/* Fix dark sections overriding global paragraph color */
.footer, .footer p, .footer li,
.compliance-section, .compliance-section p, .compliance-section li{
  color: var(--gold);
}


/* Optional: links look consistent */
a{
  font-family: inherit;
}


section {
  padding: 3.2rem 0;
}


/* Header */
.header {
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.28);
  background: var(--deep-green);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 46px;
  }
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}


.main-nav a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.active {
  color: var(--gold);
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

/* Hero */
.hero {
  background: var(--off-white);
  padding: 3.5rem 1rem 2.5rem;
  text-align: center;
}

/* ===== Hero Split Layout ===== */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-text {
  text-align: left;
}

.hero-text .hero-actions {
  margin-top: 1.4rem;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-image img {
    max-height: 260px;
  }
}

.hero h1 {
  color: var(--deep-green);
  font-size: 2.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  /*font-family: 'Playfair Display', serif;*/
}

.hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--deep-green);
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 6px 14px rgba(11, 61, 46, 0.35);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--deep-green);
  transform: translateY(-2px);
}

.btn-secondary{
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
}

.btn-secondary:hover{
  background: var(--deep-green);
  color: var(--gold);
  transform: translateY(-2px);
}


.btn:active {
  transform: translateY(0);
}

/* Products */
.products {
  padding: 3rem 0;
}

.products h3 {
  text-align: center;
  letter-spacing: 0.5px;
  /*font-family: 'Playfair Display', serif;*/
  color: var(--deep-green);
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--deep-green);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card p,
.product-card li,
.product-card h3,
.product-card h4 {
  color: var(--gold);
}


.product-image-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-image-card img {
  width: 100%;
  height: 240px;         /* FIXED: add px */
  object-fit: contain;
  background: #fff;
  display: block;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.product-info {
  padding: 1.2rem;
  background: var(--deep-green);
}

.product-info h4 {
  color: var(--gold);
  margin-bottom: 0.4rem;
  /*font-family: 'Playfair Display', serif;*/
}

.product-info p {
  color: var(--off-white);
  font-size: 0.95rem;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0,0,0,0.25);
}

.product-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--deep-green);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gold);
}

.product-cta p {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Why Us */
.why-us {
  padding: 3rem 0;
  background: var(--off-white);
}

.why-us h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--deep-green);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.why-us ul {
  list-style: none;
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.why-us li {
  background: var(--deep-green);
  color: var(--gold);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: transform var(--transition);
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.why-us li:hover {
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--deep-green);
  color: var(--off-white);
  text-align: center;
  padding: 1.5rem 0;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.credit {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Trust Strip */
.trust-strip {
  background: var(--deep-green);
  padding: 2rem 0;
}

.trust-strip,
.trust-strip p,
.trust-strip li,
.trust-strip h1,
.trust-strip h2,
.trust-strip h3,
.trust-strip h4 {
  color: var(--gold);
}


.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  color: var(--gold);
}

.trust-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Quality sections (default centered paragraphs) */
.quality-section {
  padding: 2.8rem 0;
}

.quality-section h2 {
  text-align: center;
  /*font-family: 'Playfair Display', serif;*/
  color: var(--deep-green);
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.quality-section h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 999px;
}

.quality-section p {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  text-align: center;
  color: var(--charcoal);
}

/* Cards */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.quality-card {
  border: 1px solid rgba(201, 162, 39, 0.7);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
  background: linear-gradient(180deg, var(--deep-green), var(--deep-forest));
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.25);
}

.quality-card h3 {
  color: var(--gold);
  /*font-family: 'Playfair Display', serif;*/
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quality-card h3::before {
  content: "◆";
  color: var(--gold);
  font-size: 1rem;
}

.quality-card p {
  color: var(--off-white);
  margin: 0;
  text-align: left;
}

/* Compliance section */
.compliance-section {
  background: var(--deep-forest);
  padding: 4.5rem 0;
  color: var(--off-white);
}

.compliance-section h2 {
  text-align: center;
  /*font-family: 'Playfair Display', serif;*/
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.compliance-section h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 999px;
}

.compliance-section p {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--off-white);
  opacity: 0.95;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.compliance-list li {
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--off-white);
  background: rgba(11, 61, 46, 0.35);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

/* Badges */
.quality-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.badge {
  background: var(--gold);
  color: var(--deep-green);
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(11, 61, 46, 0.25);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Final CTA */
.quality-cta {
  padding: 3.2rem 0;
  text-align: center;
  background: var(--off-white);
  position: relative;
  padding-bottom: 0.7rem;
}

.quality-cta h2 {
  /*font-family: 'Playfair Display', serif;*/
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.quality-cta h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 999px;
}

.quality-cta p {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  color: var(--charcoal);
}

.quality-cta .btn {
  margin-top: 0.6rem;
}

/* Reviews */
.reviews-section {
  padding: 2.8rem 0;
}

.reviews-section h2 {
  text-align: center;
  /*font-family: 'Playfair Display', serif;*/
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--deep-green);
  border: 1px solid rgba(201, 162, 39, 0.7);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.25);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.review-quote {
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-name {
  color: var(--gold);
  font-weight: 700;
}

.reviews-cta {
  padding: 2.8rem 0;
  text-align: center;
  background: var(--off-white);
}

.reviews-cta h2 {
  color: var(--deep-green);
  /*font-family: 'Playfair Display', serif;*/
  margin-bottom: 0.6rem;
}

.reviews-cta p {
  max-width: 760px;
  margin: 0 auto 1.2rem;
}

/* ===== ABOUT PAGE FIXES ===== */
/* Standalone top image section if you ever use it */
.about-hero-image {
  padding: 2rem 0 1.5rem;
  text-align: center;
}

.about-hero-image img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Intro layout: image LEFT + text RIGHT */
.about-intro {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
  text-align: left;
}


.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  max-height: 430px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}


.about-text {
  flex: 1.2;
  
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}


/* Override the default centered .quality-section p for About intro text */
.about-intro p {
  text-align: left;
  margin: 0 0 1.2rem;
  max-width: none;
  
}

/* Optional: center just the "We are known..." line */
.quality-section .about-known {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-green);
  margin: 2.8rem 0 1.5rem;
}



/* Strength list */
.strength-list {
  max-width: 820px;
  margin: 1.2rem 0 0;
  padding-left: 1.3rem;
  line-height: 1.75;
}


.strength-list li {

  text-align: left;
  margin-bottom: 1.2rem;
  /*line-height: 1.75;*/
}

.strength-list li::marker {
  font-weight: 800;
  color: var(--gold);
}

/* Mobile About */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-intro p {
    text-align: center;
  }

  .about-image img{
    max-height: 280px;
  }
}

/* Section subtext (shared) */
.section-subtext {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--charcoal);
  font-size: 1.05rem;
}

/* ===== CONTACT / QUOTE PAGE ===== */
.contact-section {
  padding: 2.8rem 0;
}

/* Fix dropdown */
.quote-form select {
  color: var(--off-white);
  background-color: rgba(247, 245, 239, 0.06);
  appearance: none;
}

.quote-form select option {
  background: var(--off-white);
  color: var(--deep-green);
}

.quote-form select:invalid {
  color: rgba(247,245,239,0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--deep-green);
  border: 1px solid rgba(201, 162, 39, 0.7);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.contact-card h2 {
  /*font-family: 'Playfair Display', serif;*/
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.contact-subtext {
  color: rgba(247,245,239,0.9);
  margin-bottom: 1.2rem;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form-group label {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(247, 245, 239, 0.06);
  color: var(--off-white);
  padding: 0.9rem 1rem;
  outline: none;
}

.quote-form textarea::placeholder,
.quote-form input::placeholder {
  color: rgba(247,245,239,0.75);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(247,245,239,0.85);
}

.contact-details .contact-item {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.contact-details .contact-item:first-of-type {
  border-top: none;
}

.contact-details h3 {
  color: var(--gold);
  /*font-family: 'Playfair Display', serif;*/
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: rgba(247,245,239,0.92);
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   REVIEWS FORM (GREEN CARD)
   ========================= */

.review-form-section {
  padding: 3rem 0;
}

/* Green container */
.review-form {
  max-width: 760px;
  margin-top: 1.5rem;
  background: var(--deep-green);
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Headings inside green card */
.review-form-section h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.review-form-subtext {
  margin-bottom: 1rem;
  max-width: 720px;
}

/* Labels */
.review-form .form-label {
  font-weight: 700;
  color: var(--gold);
}

/* Inputs */
.review-form textarea,
.review-form input[type="text"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: rgba(247, 245, 239, 0.06);
  color: var(--off-white);
  outline: none;
}

.review-form textarea::placeholder,
.review-form input::placeholder {
  color: rgba(247, 245, 239, 0.75);
}

.review-form textarea:focus,
.review-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Submit button alignment */
.review-form button {
  justify-self: start;
  margin-top: 0.5rem;
}

/* Note */
.review-form .form-note {
  font-size: 0.85rem;
  color: rgba(247, 245, 239, 0.8);
}

/* =========================
   STAR RATING
   ========================= */

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.4rem;
  width: fit-content;
}

.star-rating input {
  position: absolute;
  opacity: 0;
}

.star-rating label {
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(247, 245, 239, 0.35);
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
  transform: translateY(-2px);
}

.star-rating input:checked ~ label {
  color: var(--gold);
}

/* =========================
   FIX: NO SIDEWAYS SCROLL ON MOBILE
   ========================= */

/* 1) Stop horizontal overflow (safety net) */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) Make header + nav responsive */
.header .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Allow wrapping instead of forcing extra width */
@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;          /* KEY */
    gap: 0.75rem;
  }

  .main-nav {
    width: 100%;              /* KEY: nav takes full line */
    flex-wrap: wrap;          /* KEY: links can wrap */
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .main-nav a {
    display: inline-block;
    padding: 0.45rem 0.6rem;  /* makes links tap-friendly */
  }
}

/* 3) Extra protection: nothing should exceed screen width */
img, input, select, textarea, button {
  max-width: 100%;
}

/* CONTACT LINKS STYLE */
.contact-item a {
  color: var(--off-white);        /* text color */
  text-decoration: underline;
  text-decoration-color: var(--gold);  /* gold underline */
  text-underline-offset: 4px;     /* space between text and underline */
  font-weight: 600;
}

.contact-item a:visited {
  color: var(--off-white);        /* prevents purple */
}

.contact-item a:hover {
  color: var(--gold);             /* turns gold on hover */
}

/* =========================
   CHOICES.JS THEME (Product Interest)
   ========================= */

/* main field */
.quote-form .choices__inner {
  background: rgba(247, 245, 239, 0.06) !important;
  border: 1px solid rgba(201, 162, 39, 0.55) !important;
  border-radius: var(--radius) !important;
  min-height: 56px !important;
  padding: 0.55rem 0.75rem !important;
  color: var(--off-white) !important;
}

/* chips (selected items) */
.quote-form .choices__list--multiple .choices__item {
  background: var(--gold) !important;
  color: var(--deep-green) !important;
  border-radius: 999px !important;
  padding: 0.35rem 0.75rem !important;
  font-weight: 700 !important;
  border: 1px solid rgba(11, 61, 46, 0.25) !important;
}

/* the X button */
.quote-form .choices__list--multiple .choices__item .choices__button {
  border-left: 1px solid rgba(11, 61, 46, 0.25) !important;
  margin-left: 0.5rem !important;
  opacity: 0.85 !important;
}
.quote-form .choices__list--multiple .choices__item .choices__button:hover {
  opacity: 1 !important;
}

/* =========================
   PACKAGING: GREEN FIELD + OFF-WHITE DROPDOWN
   ========================= */

/* Field (closed state) = green like other inputs */
.quote-form #packaging{
  background: rgba(247, 245, 239, 0.06) !important;
  color: var(--off-white) !important;
  border: 1px solid rgba(201, 162, 39, 0.55) !important;
  border-radius: var(--radius);
}

/* Dropdown items (opened list) = off-white + green text
   (works in many browsers; some browsers limit option styling) */
.quote-form #packaging option{
  background: var(--off-white) !important;
  color: var(--deep-green) !important;
}

/* Placeholder (Select packaging) text slightly muted */
.quote-form #packaging option[value=""]{
  color: rgba(11, 61, 46, 0.65) !important;
}

/* Focus glow */
.quote-form #packaging:focus{
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15) !important;
}
