/*
 * Custom styles for crop_supplier single post template
 */

:root {
  --background: #f0e8d5;
  --foreground: #415f49;
  --available: #548161;
  --available-text: #f0f1ef;
  --available-text-sec: #cfcfcf;
  --available-hover: #40624a;
  --border-color: #e5e5e5;
  --green1: #56642d;
  --green1-hover: #6c772a;
  --green2: #a8af92;
  --green3: #c8ccba;
  --green4: #f0f1ef;
  --brown1: #7f4e2a;
  --brown2: #5f5841;
  --url: #3178a8;
  --header-background: #efe8d5;
  --font-poppins: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  --font-dm-serif-display: "DM Serif Display", Georgia, "Times New Roman", Times, serif;
  --little-bold: 450;
  --medium: 500;
  --semibold: 600;
}

/* Base Styles - scoped to supplier pages */
.single-crop_supplier body,
.single-crop_supplier #main {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-poppins), sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Override Avada layout constraints for this template */
.single-crop_supplier #main,
.single-crop_supplier .fusion-page-wrapper,
.single-crop_supplier .fusion-content-wrapper,
.single-crop_supplier .fusion-row,
.single-crop_supplier .fusion-builder-row,
.single-crop_supplier .fusion-builder-container,
.single-crop_supplier .fusion-flex-container,
.single-crop_supplier .fusion-post-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* Disable flex-wrap and ensure block display on fusion-row */
.single-crop_supplier #main > .fusion-row {
  flex-wrap: nowrap !important;
  display: block !important;
}

.single-crop_supplier .fusion-row > .fusion-layout-column,
.single-crop_supplier .fusion-row > .fusion-column-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}

.single-crop_supplier .fusion-builder-row .fusion-row,
.single-crop_supplier .fusion-builder-row .fusion-builder-row-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Browser-default heading sizes */
.single-crop_supplier h1 {
  font-size: 2em;
}
.single-crop_supplier h2 {
  font-size: 1.5em;
}
.single-crop_supplier h3 {
  font-size: 1.17em;
}
.single-crop_supplier h4 {
  font-size: 1em;
}
.single-crop_supplier h5 {
  font-size: 0.83em;
}
.single-crop_supplier h6 {
  font-size: 0.67em;
}

.single-crop_supplier h1,
.single-crop_supplier h2,
.single-crop_supplier h3,
.single-crop_supplier h4,
.single-crop_supplier h5,
.single-crop_supplier h6 {
  font-family: var(--font-dm-serif-display), serif;
  font-weight: 400;
}

.single-crop_supplier .min-h-screen {
  min-height: 100vh;
  position: relative;
}
.single-crop_supplier .bg-background {
  background: var(--background);
}
.single-crop_supplier .banner {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

/* Blurred background layer */
.single-crop_supplier .banner-bg-blur {
  position: absolute;
  inset: -20px; /* Extend beyond edges to prevent blur gaps */
  background-size: cover;
  background-position: center;
  filter: blur(25px);
  transform: scale(1.1); /* Ensure full coverage after blur */
  z-index: 1;
}

/* Remove blur when image is too wide for viewport */
.single-crop_supplier .banner-bg-blur.no-blur {
  filter: none;
}

/* Container for the main centered image */
.single-crop_supplier .banner-image-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* When no blur is needed, use object-fit: cover instead of contain */
.single-crop_supplier .banner-image-wrapper.no-blur-wrapper {
  align-items: stretch;
  justify-content: stretch;
}

/* Main banner image - scales up to max 1400px width */
.single-crop_supplier .banner-main-image {
  max-width: min(1400px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  /* Soft edge fade using mask - creates seamless blend into blurred background */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* When no blur, use object-fit: cover to fill the banner space */
.single-crop_supplier .banner-image-wrapper.no-blur-wrapper .banner-main-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Gradient overlay for visual depth */
.single-crop_supplier .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
  z-index: 3;
  pointer-events: none;
}

.single-crop_supplier .container-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.single-crop_supplier .header-card {
  margin-top: 0;
  padding: 0 24px;
}
.single-crop_supplier .header-inner {
  background: linear-gradient(180deg, #ffffff 0%, #fdfcfa 100%);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  padding: 22px 24px;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transform: translateY(-70px);
  position: relative;
  z-index: 20;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.single-crop_supplier .logo-wrap {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.single-crop_supplier .logo-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.single-crop_supplier .title-block {
  margin-bottom: 3px;
}
.single-crop_supplier .site-title {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
}
.single-crop_supplier .site-tagline {
  color: var(--foreground);
  margin: 0 0 0;
  font-weight: 400;
  font-style: italic;
}
.single-crop_supplier .locations {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
  opacity: 0.8;
}
.single-crop_supplier .meta-grid {
  display: flex;
  margin-top: 20px; /* increased spacing to separate from tagline/description */
}
.single-crop_supplier .meta-grid .meta-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.single-crop_supplier .chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.single-crop_supplier .sustainability-chip {
  background: linear-gradient(135deg, var(--available) 0%, #4a7356 100%);
  box-shadow: 0 2px 8px rgba(84, 129, 97, 0.25);
}
.single-crop_supplier .ownership-chip {
  background: linear-gradient(135deg, var(--brown1) 0%, #6b4023 100%);
  box-shadow: 0 2px 8px rgba(127, 78, 42, 0.25);
}

.single-crop_supplier .header-badges {
  pointer-events: none;
  position: absolute;
  right: -40px;
  top: -25px;
  z-index: 80;
  max-width: 380px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  align-items: start;
  justify-content: end;
}

/* Uniform badge image sizing for all layouts */
.single-crop_supplier .header-badges .badge-img img {
  width: 96px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

/* Larger specific badge images (circular seals) */
.single-crop_supplier .header-badges .badge-usda img,
.single-crop_supplier .header-badges .badge-regenerative img {
  width: 108px;
  max-height: 108px;
}

/* Badge wrapper styles */
.single-crop_supplier .header-badges .badge-img,
.single-crop_supplier .header-badges .badge-text {
  pointer-events: auto;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Badge type styling — consistent regardless of position */
.single-crop_supplier .header-badges .badge-usda {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}
.single-crop_supplier .header-badges .badge-fairtrade {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 8px 1px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  max-width: 96px;
}
.single-crop_supplier .header-badges .badge-non-gmo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.single-crop_supplier .header-badges .badge-regenerative {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
.single-crop_supplier .header-badges .badge-ccof {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px 1px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 96px;
}

.single-crop_supplier .header-badges .badge-img,
.single-crop_supplier .header-badges .badge-usda,
.single-crop_supplier .header-badges .badge-non-gmo,
.single-crop_supplier .header-badges .badge-regenerative,
.single-crop_supplier .header-badges .badge-american-humane,
.single-crop_supplier .header-badges .badge-b-corp,
.single-crop_supplier .header-badges .badge-mb-aquarium,
.single-crop_supplier .header-badges .badge-msc,
.single-crop_supplier .header-badges .badge-asc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-crop_supplier .header-badges .badge-american-humane,
.single-crop_supplier .header-badges .badge-b-corp,
.single-crop_supplier .header-badges .badge-mb-aquarium,
.single-crop_supplier .header-badges .badge-msc,
.single-crop_supplier .header-badges .badge-asc {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.single-crop_supplier .header-badges .badge-msc,
.single-crop_supplier .header-badges .badge-asc {
  padding: 4px;
}

.single-crop_supplier .header-badges .badge-american-humane {
  border-radius: 10px;
  padding: 8px;
}

.single-crop_supplier .main-wrapper {
  max-width: 1200px;
  margin: -30px auto 0;
  padding: 0 24px 65px;
  position: relative;
  z-index: 10;
}
.single-crop_supplier .two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.single-crop_supplier .card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 32px;
  border: none;
  position: relative;
  z-index: 10;
}
.single-crop_supplier .col-left .card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: var(--font-dm-serif-display), serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

/* Visual dividers between sections in left column */
.single-crop_supplier .col-left .card:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(86, 100, 45, 0.12);
}

/* Vertical divider between left and right columns */
.single-crop_supplier .two-col .col-right {
  border-left: 1px solid rgba(86, 100, 45, 0.12);
  padding-left: 3rem;
}
.single-crop_supplier .col-right .card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: var(--font-dm-serif-display), serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}
.single-crop_supplier .term-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-crop_supplier .term-list li {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  font-weight: 400;
  color: #3d4d3f;
  border-radius: 4px;
  margin: 1px 0;
}
.single-crop_supplier .term-list li:last-child {
  border-bottom: none;
}
/* Sustainability taxonomy items - keep hover effect and make clickable */
.single-crop_supplier .term-list li a {
  color: #3d4d3f;
  text-decoration: none;
  display: block;
  margin: -0.4rem -0.5rem;
  padding: 0.4rem 0.5rem;
  transition: background-color 0.15s ease;
}
.single-crop_supplier .term-list li a:hover {
  background-color: rgba(86, 100, 45, 0.08);
}
/* Ownership taxonomy items - no hover effect */
.single-crop_supplier .term-list li.ownership-term {
  cursor: default;
}

/* Sustainability item with inline badge for tablet/mobile */
.single-crop_supplier .term-list li .sustainability-badge-inline {
  display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
  /* Show inline badges for sustainability items on mobile/tablet */
  .single-crop_supplier .term-list li .sustainability-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-right: 10px;
    background: #fff;
    border-radius: 4px;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    vertical-align: middle;
  }

  .single-crop_supplier .term-list li .sustainability-badge-inline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .single-crop_supplier .term-list li a {
    display: flex;
    align-items: center;
  }
}

.single-crop_supplier .items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.single-crop_supplier .item-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}
.single-crop_supplier .item-image {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-crop_supplier .item-image img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
}
.single-crop_supplier .item-details h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.single-crop_supplier .item-variety {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}
.single-crop_supplier .item-specs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.5rem 0;
}
.single-crop_supplier .item-availability {
  margin-top: 1rem;
}
.single-crop_supplier .availability-months {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.single-crop_supplier .month-badge {
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: 0.75rem;
}

.single-crop_supplier .spotlight-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.single-crop_supplier .spotlight-item {
  width: 240px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.single-crop_supplier .spotlight-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: rgba(86, 100, 45, 0.15);
}
.single-crop_supplier .spotlight-img {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-crop_supplier .spotlight-img img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
}
.single-crop_supplier .spotlight-item .product-name {
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--foreground);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.35;
}
.single-crop_supplier .spotlight-item p {
  color: #4a5a4c;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
  line-height: 1.4;
  font-weight: 400;
}
.single-crop_supplier .spotlight-item .product-variety,
.single-crop_supplier .spotlight-item .product-case-size {
  font-size: 0.82rem;
  color: #4a5a4c;
}
.single-crop_supplier .wysiwyg-content {
  line-height: 1.75;
  color: #3d4d3f;
  font-weight: 400;
}
.single-crop_supplier .wysiwyg-content p {
  margin-bottom: 1rem;
}
.single-crop_supplier .wysiwyg-content p:last-child {
  margin-bottom: 0;
}
.single-crop_supplier .reasons-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
  line-height: 1.7;
}
.single-crop_supplier .reasons-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: #3d4d3f;
  font-size: 0.95rem;
  font-weight: 400;
}
.single-crop_supplier .reasons-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 7px;
  height: 7px;
  background: var(--green1);
  border-radius: 50%;
}
.single-crop_supplier .product-showcase-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  line-height: 1.7;
}
.single-crop_supplier .product-showcase-list li {
  padding: 0.25rem 0;
}

.single-crop_supplier .hero-outline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.single-crop_supplier .hero-outline img {
  width: 100vw;
  height: auto;
  max-height: 30vh;
  object-fit: cover;
  display: block;
  opacity: 50%;
}

/* Products Available This Year Section */
.single-crop_supplier .products-available-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.single-crop_supplier .product-available-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 1rem;
}

.single-crop_supplier .product-available-item:last-child {
  border-bottom: none;
}

.single-crop_supplier .product-available-item .product-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.single-crop_supplier .product-available-item .product-name {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.95rem;
  line-height: 1.35;
}

.single-crop_supplier .product-available-item .product-variety {
  font-size: 0.82rem;
  color: #4a5a4c;
  font-style: italic;
}

.single-crop_supplier .product-available-item .product-availability {
  font-size: 0.85rem;
  color: var(--green1);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Product icons for Products Available list */
.single-crop_supplier .product-available-item .product-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.single-crop_supplier .product-available-item .product-icon svg {
  width: 20px;
  height: 20px;
}

/* Product item with icon layout */
.single-crop_supplier .product-available-item .product-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

/* Responsive Breakpoints: 1024px, 768px, 425px and below */
@media (max-width: 1024px) {
  /* Tablet layout - single column with horizontal scrolling spotlight */
  .single-crop_supplier .container-card,
  .single-crop_supplier .header-card,
  .single-crop_supplier .main-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Change to single column layout */
  .single-crop_supplier .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Remove vertical divider on single column */
  .single-crop_supplier .two-col .col-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(86, 100, 45, 0.12);
    padding-top: 2rem;
  }

  .single-crop_supplier .header-inner {
    transform: translateY(-60px);
    min-height: 150px;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .single-crop_supplier .logo-wrap {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    flex-shrink: 0;
  }

  .single-crop_supplier .site-title {
    font-size: 1.6rem !important;
  }

  /* Horizontal scrolling for product spotlight */
  .single-crop_supplier .spotlight-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar {
    height: 6px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-thumb {
    background: rgba(86, 100, 45, 0.3);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(86, 100, 45, 0.5);
  }

  .single-crop_supplier .spotlight-item {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
  }

  .single-crop_supplier .spotlight-item .product-name {
    font-size: 0.9rem;
  }

  .single-crop_supplier .col-left .card h2 {
    font-size: 1.3rem !important;
  }
  .single-crop_supplier .col-right .card h3 {
    font-size: 1.1rem !important;
  }

  .single-crop_supplier .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .single-crop_supplier .item-card {
    max-width: 250px;
  }

  .single-crop_supplier .meta-chips {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile-tablet layout */
  .single-crop_supplier .container-card,
  .single-crop_supplier .header-card,
  .single-crop_supplier .main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .single-crop_supplier .banner {
    height: 12rem;
  }

  .single-crop_supplier .banner-main-image {
    max-width: min(900px, 100%);
  }

  .single-crop_supplier .header-inner {
    transform: translateY(-50px);
    min-height: auto;
    padding: 18px 16px;
    gap: 0.75rem;
    border-radius: 14px;
  }

  .single-crop_supplier .header-content {
    width: 100%;
  }

  .single-crop_supplier .logo-wrap {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    flex-shrink: 0;
  }

  .single-crop_supplier .site-title {
    font-size: 1.15rem !important;
    line-height: 1.3;
  }

  .single-crop_supplier .site-tagline {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .single-crop_supplier .locations {
    font-size: 0.8rem;
  }

  .single-crop_supplier .meta-grid {
    margin-top: 12px;
  }

  .single-crop_supplier .meta-chips {
    max-width: 100%;
  }

  .single-crop_supplier .chip {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  /* Hide header badges on mobile/tablet */
  .single-crop_supplier .header-badges {
    display: none !important;
  }

  /* Single column layout */
  .single-crop_supplier .two-col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .single-crop_supplier .card {
    padding: 0;
    margin-bottom: 28px;
  }

  /* Reduce section header sizes */
  .single-crop_supplier .col-left .card h2 {
    font-size: 1.1rem !important;
    line-height: 1.3;
  }
  .single-crop_supplier .col-right .card h3 {
    font-size: 0.95rem !important;
    line-height: 1.3;
  }

  /* Horizontal scrolling for product spotlight */
  .single-crop_supplier .spotlight-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar {
    height: 6px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-thumb {
    background: rgba(86, 100, 45, 0.3);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(86, 100, 45, 0.5);
  }

  .single-crop_supplier .spotlight-item {
    width: 165px;
    min-width: 165px;
    max-width: 165px;
    flex-shrink: 0;
  }

  .single-crop_supplier .spotlight-img img {
    height: 95px;
  }

  .single-crop_supplier .spotlight-item .product-name {
    font-size: 0.8rem;
  }

  .single-crop_supplier .spotlight-item p {
    font-size: 0.75rem;
  }

  .single-crop_supplier .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    justify-content: center;
  }

  .single-crop_supplier .item-card {
    max-width: 200px;
  }

  .single-crop_supplier .main-wrapper {
    padding-bottom: 50px;
  }

  .single-crop_supplier .product-available-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .single-crop_supplier .product-available-item .product-left {
    width: 100%;
  }

  .single-crop_supplier .product-available-item .product-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .single-crop_supplier .product-available-item .product-icon svg {
    width: 16px;
    height: 16px;
  }

  .single-crop_supplier .product-available-item .product-availability {
    font-size: 0.8rem;
    margin-left: 28px;
  }
}

@media (max-width: 425px) {
  /* Mobile layout - unified for 425px, 375px, 320px */
  .single-crop_supplier .container-card,
  .single-crop_supplier .header-card,
  .single-crop_supplier .main-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .single-crop_supplier .banner {
    height: 10rem;
  }

  .single-crop_supplier .banner-main-image {
    max-width: 100%;
    /* Reduce mask fade on mobile for more visible image */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .single-crop_supplier .header-inner {
    transform: translateY(-40px);
    padding: 12px;
    gap: 0.5rem;
  }

  .single-crop_supplier .logo-wrap {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    flex-shrink: 0;
  }

  .single-crop_supplier .site-title {
    font-size: 1.05rem !important;
    line-height: 1.3;
  }

  .single-crop_supplier .site-tagline {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .single-crop_supplier .locations {
    font-size: 0.75rem;
  }

  .single-crop_supplier .meta-grid {
    margin-top: 10px;
  }

  /* Hide chips and badges */
  .single-crop_supplier .chip {
    display: none !important;
  }

  .single-crop_supplier .header-badges {
    display: none !important;
  }

  .single-crop_supplier .card {
    padding: 0;
    margin-bottom: 24px;
  }

  .single-crop_supplier .col-left .card h2 {
    font-size: 0.95rem !important;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .single-crop_supplier .col-right .card h3 {
    font-size: 0.85rem !important;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  /* Horizontal scrolling for spotlight */
  .single-crop_supplier .spotlight-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar {
    height: 6px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-grid::-webkit-scrollbar-thumb {
    background: rgba(86, 100, 45, 0.3);
    border-radius: 3px;
  }

  .single-crop_supplier .spotlight-item {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
  }

  .single-crop_supplier .spotlight-img img {
    height: 130px;
  }

  .single-crop_supplier .spotlight-item .product-name {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .single-crop_supplier .spotlight-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .single-crop_supplier .wysiwyg-content {
    font-size: 0.9rem;
  }

  .single-crop_supplier .reasons-list,
  .single-crop_supplier .product-showcase-list {
    font-size: 0.9rem;
    padding-left: 1.25rem;
  }

  .single-crop_supplier .term-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }

  .single-crop_supplier .product-available-item .product-name {
    font-size: 0.9rem;
  }

  .single-crop_supplier .product-available-item .product-variety {
    font-size: 0.78rem;
  }

  .single-crop_supplier .product-available-item .product-availability {
    font-size: 0.78rem;
  }

  .single-crop_supplier .items-grid {
    grid-template-columns: 1fr;
  }

  .single-crop_supplier .item-card {
    max-width: 100%;
  }

  .single-crop_supplier .main-wrapper {
    padding-bottom: 40px;
  }

  .single-crop_supplier .hero-outline img {
    max-height: 20vh;
  }
}

@media (max-width: 425px) {
  .single-crop_supplier .site-title {
    font-size: 1.05rem !important;
  }

  .single-crop_supplier .site-tagline {
    font-size: 0.85rem;
  }

  .single-crop_supplier .col-left .card h2 {
    font-size: 0.95rem !important;
  }

  .single-crop_supplier .col-right .card h3 {
    font-size: 0.85rem !important;
  }

  .single-crop_supplier .spotlight-item h3 {
    font-size: 0.85rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .single-crop_supplier .spotlight-item p {
    font-size: 0.8rem;
  }

  .single-crop_supplier .chip {
    display: none !important;
  }

  .single-crop_supplier .header-badges {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .single-crop_supplier .site-title {
    font-size: 0.95rem !important;
  }

  .single-crop_supplier .site-tagline {
    font-size: 0.8rem;
  }

  .single-crop_supplier .col-left .card h2 {
    font-size: 0.9rem !important;
  }

  .single-crop_supplier .col-right .card h3 {
    font-size: 0.8rem !important;
  }

  .single-crop_supplier .spotlight-item h3 {
    font-size: 0.8rem;
  }

  .single-crop_supplier .spotlight-item p {
    font-size: 0.75rem;
  }

  .single-crop_supplier .logo-wrap {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    flex-shrink: 0;
  }

  .single-crop_supplier .header-inner {
    padding: 10px;
  }
}
