/* =========================
   GLOBAL HARVEST TRADE CSS
   (organized + grouped)
   ========================= */

/* =========================
   1) 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;
}

/* =========================
   2) RESET + GLOBAL
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  background: var(--off-white);
}

img,
input,
select,
textarea,
button {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

section {
  padding: 3.2rem 0;
}

/* =========================
   3) TYPOGRAPHY
   ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--deep-green);
}

p,
li {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}

a {
  font-family: inherit;
}

/* =========================
   4) HEADER / NAV
   ========================= */
.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;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* keep consistent with global container sizing */
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.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);
}

@media (max-width: 768px) {
  .logo img {
    height: 46px;
  }

  .header .container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .main-nav a {
    display: inline-block;
    padding: 0.45rem 0.6rem;
  }
}

/* =========================
   5) 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;
}

.hero h1 {
  color: var(--deep-green);
  font-size: 2.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.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;
}

@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;
  }
}

/* =========================
   6) 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);
}

/* =========================
   7) PRODUCTS
   ========================= */
.products {
  padding: 3rem 0;
}

.products h3 {
  text-align: center;
  letter-spacing: 0.5px;
  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);
  display: flex;
  flex-direction: column;
}

.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;
  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);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h4 {
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.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);
}

/* Price line */
.product-price {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--gold);
}

/* Quantity + button row */
.product-buy {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: auto; /* makes all buttons line up */
}

/* Quantity dropdown */
.qty-select {
  width: 100%;
  height: 44px;
  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 10px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.qty-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.qty-select option {
  color: var(--deep-green);
  background: var(--off-white);
}

.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;
}

/* =========================
   8) 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);
}

/* =========================
   9) REVEAL ANIMATION
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   10) 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;
}

/* =========================
   11) QUALITY SECTIONS
   ========================= */
.quality-section {
  padding: 2.8rem 0;
}

.quality-section h2 {
  text-align: center;
  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);
}

.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);
  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;
}

/* =========================
   12) COMPLIANCE SECTION
   ========================= */
.compliance-section {
  background: var(--deep-forest);
  padding: 4.5rem 0;
  color: var(--off-white);
}

.compliance-section,
.compliance-section p,
.compliance-section li {
  color: var(--gold);
}

.compliance-section h2 {
  text-align: center;
  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 {
  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;
}

/* =========================
   13) REVIEWS (DISPLAY)
   ========================= */
.reviews-section {
  padding: 2.8rem 0;
}

.reviews-section h2 {
  text-align: center;
  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);
  margin-bottom: 0.6rem;
}

.reviews-cta p {
  max-width: 760px;
  margin: 0 auto 1.2rem;
}

/* =========================
   14) ABOUT PAGE FIXES
   ========================= */
.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 centered quality-section p for About intro text */
.about-intro p {
  text-align: left;
  margin: 0 0 1.2rem;
  max-width: none;
}

/* Optional: "We are known..." */
.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;
}

.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;
  }
}

/* Shared section subtext */
.section-subtext {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--charcoal);
  font-size: 1.05rem;
}

/* =========================
   15) CONTACT / QUOTE PAGE
   ========================= */
.contact-section {
  padding: 2.8rem 0;
}

.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 {
  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);
  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;
}

/* Fix dropdown visuals */
.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);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* CONTACT LINKS STYLE */
.contact-item a {
  color: var(--off-white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  font-weight: 600;
}

.contact-item a:visited {
  color: var(--off-white);
}

.contact-item a:hover {
  color: var(--gold);
}

/* =========================
   16) REVIEWS FORM (GREEN CARD)
   ========================= */
.review-form-section {
  padding: 3rem 0;
}

.review-form-section h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.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);
}

.review-form-subtext {
  margin-bottom: 1rem;
  max-width: 720px;
}

.review-form .form-label {
  font-weight: 700;
  color: var(--gold);
}

.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);
}

.review-form button {
  justify-self: start;
  margin-top: 0.5rem;
}

.review-form .form-note {
  font-size: 0.85rem;
  color: rgba(247, 245, 239, 0.8);
}

/* =========================
   17) 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);
}

/* =========================
   18) CHOICES.JS THEME
   ========================= */
.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;
}

.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;
}

.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;
}

/* =========================
   19) PACKAGING SELECT THEME
   ========================= */
.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);
}

.quote-form #packaging option {
  background: var(--off-white) !important;
  color: var(--deep-green) !important;
}

.quote-form #packaging option[value=""] {
  color: rgba(11, 61, 46, 0.65) !important;
}

.quote-form #packaging:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15) !important;
}

.destination-grid {
  display: grid;
  gap: 0.75rem;
}

/* =========================
   20) CART PAGE UI
   ========================= */
#cart-items {
  display: grid;
  gap: 16px;
  margin-top: 2rem;
}

/* Empty cart */
.empty-cart {
  text-align: center;
  padding: 70px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.empty-cart-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 2px solid rgba(201, 162, 39, 0.55);
  display: grid;
  place-items: center;
  font-size: 38px;
  background: #fff;
}

.empty-cart h3 {
  margin-bottom: 10px;
}

.empty-cart p {
  color: rgba(30, 30, 30, 0.75);
  margin-bottom: 18px;
}

/* Cart page hero spacing fix */
#cart-hero {
  padding: 40px 0 10px;
}

#cart-hero h1 {
  margin-bottom: 6px;
}

#cart-hero p {
  margin-bottom: 8px;
}

/* Cart item row (older layout) */
.cart-item {
  background: var(--deep-green);
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 90px 1fr 220px;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.cart-thumb {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.cart-name {
  color: var(--gold);
  margin-bottom: 6px;
}

.cart-meta {
  color: rgba(247, 245, 239, 0.92);
  margin: 0;
}

.cart-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

/* CART (NEW COMPACT LAYOUT) */
.cart-list {
  display: grid;
  gap: 14px;
  margin-top: 2rem;
}

.cart-row {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cart-row-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 8px;
}

.cart-row-title {
  margin: 0 0 4px;
  color: var(--deep-green);
}

.cart-row-price {
  margin: 0;
  color: rgba(30, 30, 30, 0.7);
  font-size: 0.95rem;
}

.cart-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-row-qty {
  width: 70px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: #fff;
  color: var(--deep-green);
  font-weight: 800;
  text-align: center;
  outline: none;
}

.cart-row-qty:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.cart-row-remove {
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.75);
  background: transparent;
  color: var(--deep-green);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cart-row-remove:hover {
  background: var(--gold);
  color: var(--deep-green);
}

.cart-row-total {
  min-width: 90px;
  text-align: right;
  font-weight: 900;
  color: var(--deep-green);
}

/* Cart total box */
#cart-summary {
  background: var(--deep-green);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 16px;
  text-align: center;
}

#cart-summary p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* Cart qty/remove (older inputs) */
.cart-qty-input {
  width: 80px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(247, 245, 239, 0.06);
  color: var(--off-white);
  font-weight: 800;
  text-align: center;
  outline: none;
}

.cart-qty-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.cart-remove-btn {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.75);
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cart-remove-btn:hover {
  background: var(--gold);
  color: var(--deep-green);
}

/* Continue shopping button */
.cart-actions {
  margin-top: 10px;
  margin-bottom: 10px;
}

.cart-actions a {
  display: inline-block;
}

.btn-cart {
  margin-top: 0.9rem;
  background: var(--gold);
  color: var(--deep-green);
  border: 2px solid var(--gold);
  cursor: pointer;
  white-space: nowrap;
  min-width: 150px;
  padding: 0.8rem 1.4rem;
}

.btn-cart:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

/* Floating Cart Button */
.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--deep-green);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  z-index: 2000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

/* Count badge */
.floating-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep-green);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-green);
}

/* Cart mobile */
@media (max-width: 768px) {
  .cart-row {
    grid-template-columns: 72px 1fr;
  }

  .cart-row-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cart-row-total {
    text-align: left;
    min-width: auto;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
  }

  .cart-controls {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}


/* ===== Cart: mobile fixes 2 this is the second one hoping to override the first===== */
.cart-list { display: grid; gap: 14px; }

.cart-row{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.cart-row-img{
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 auto;
}

.cart-row-main{ flex: 1; min-width: 0; }
.cart-row-title{ margin: 0; }
.cart-row-price{ margin: 4px 0 0; opacity: 0.75; }

.cart-row-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart-row-qty{
  width: 72px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.2);
}

.cart-row-remove{
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* Mobile: stack rows so nothing disappears */
@media (max-width: 768px){
  .cart-row{
    flex-direction: column;
    align-items: stretch;
  }
  .cart-row-actions{
    justify-content: space-between;
  }
  .cart-row-total{
    margin-left: auto;
    font-weight: 600;
  }
}

/* =========================
   21) FOOTER (ORGANIZED)
   ========================= */
.footer {
  background: var(--deep-green);
  padding: 60px 0 25px;
}

/* calm footer text (not all-gold) */
.footer,
.footer p,
.footer li {
  color: var(--off-white);
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--sand-white);
}

.footer-desc {
  max-width: 420px;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 14px;
}

.footer-meta {
  margin: 6px 0;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  opacity: 0.85;
  font-size: 14px;
}

.credit {
  color: rgba(247, 245, 239, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* TEMP FIX: if reveal JS isn't running, don't hide content 
.reveal {
  opacity: 1 !important;
  transform: none !important;
}*/