﻿/* Wholesale Landing Page Styles */

/* ----------------------------------------
   Section Spacing Overrides (Tighter than default)
   ---------------------------------------- */
.wholesale-page .section {
  padding-top: 3.5rem;    /* 56px instead of 120px */
  padding-bottom: 3.5rem;
}

.wholesale-page .section-compact {
  padding-top: 2rem;      /* Reduced top padding when no section title */
}

.wholesale-page .savings-meter-section {
  padding-top: 2.5rem;      /* 48px instead of 64px */
  padding-bottom: 2.5rem;
}

.wholesale-page .contact-section {
  padding-top: 3.5rem;    /* 56px instead of 80px */
  padding-bottom: 3.5rem;
}

.wholesale-page .categories-scroll-section {
  padding-top: 2.5rem;    /* 40px instead of 64px */
  padding-bottom: 2.5rem;
}

/* Hero Section - Simple dark overlay on image */
.wholesale-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  background: url('assets/hero-warehouse.jpg') center/cover no-repeat;
}

/* Dark overlay using pseudo-element */
.wholesale-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.wholesale-hero-bg {
  display: none; /* Not needed - using background on parent */
}

.wholesale-hero-overlay {
  display: none; /* Not needed - using background on parent */
}

.wholesale-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
  max-width: 800px;
}

.wholesale-hero-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.wholesale-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #FFFFFF;
}

.wholesale-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.wholesale-hero-codes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.code-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
}

.code-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.code-badge.featured {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
}

.code-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.code-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 0.25rem;
}

.code-discount {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hero Features (checkmark list) */
.wholesale-hero-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.hero-feature::before {
  content: '\2713';
  color: #D4AF37;
  font-weight: 700;
  font-size: 1rem;
}

/* Value Strip (matching chains page design) */
.wholesale-strip {
  background: var(--cream, #F2EBE7);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem 0;
}

.wholesale-strip-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.wholesale-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0.5rem 0.75rem;
  position: relative;
}

/* Vertical dividers between items */
.wholesale-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.wholesale-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B8960F;
  line-height: 1.2;
}

.wholesale-label {
  font-size: 0.875rem;
  color: #2C2C2C;
  margin-top: 2px;
}

/* CTA item styling */
.wholesale-item-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.wholesale-link {
  font-size: 0.875rem;
  color: #B8960F;
  text-decoration: none;
  font-weight: 600;
  margin-top: 4px;
  padding: 0.25rem 0.75rem;
  border: 1px solid #D4AF37;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.wholesale-link:hover {
  background: #D4AF37;
  color: #fff;
}

@media (max-width: 1024px) {
  .wholesale-strip-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .wholesale-item {
    flex: 0 0 calc(33.33% - 0.5rem);
    padding: 0.5rem;
  }

  .wholesale-item:not(:last-child)::after {
    display: none;
  }

  .wholesale-highlight {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .wholesale-strip {
    padding: 1rem 0;
  }

  .wholesale-strip-grid {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wholesale-item {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

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

  .wholesale-highlight {
    font-size: 1.125rem;
  }

  .wholesale-label {
    font-size: 0.875rem;
  }

  .wholesale-item-cta {
    flex-direction: column;
    padding: 0.75rem;
  }
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 2px solid #D4AF37;
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card-header {
  background: #f8f5f0;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.pricing-card.featured .pricing-card-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
}

.pricing-card.featured .pricing-card-header h3 {
  color: white;
}

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #F2EBE7;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 8px 8px;
}

.pricing-card-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #B8960F;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card.featured .pricing-badge {
  background: rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

.pricing-card-body {
  padding: 1.5rem;
  flex: 1;
}

.pricing-tier {
  background: #f8f5f0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-tier.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.tier-discount {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 0.25rem;
}

.tier-requirement {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.tier-code {
  display: block;
  font-size: 0.85rem;
  color: #888;
}

.tier-code strong {
  color: #1a1a1a;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

.pricing-card-footer {
  padding: 1.5rem;
  text-align: center;
  background: #fafafa;
}

.pricing-card-footer .btn {
  width: 100%;
}



/* ----------------------------------------
   Partner Strips (Alternating Layout)
   ---------------------------------------- */
.partner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;  /* Reduced from 4rem */
  background: #f8f5f0;
  border-radius: 20px;
  overflow: hidden;
}

.partner-strip:last-child {
  margin-bottom: 0;
}

.partner-strip.reverse {
  direction: rtl;
}

.partner-strip.reverse > * {
  direction: ltr;
}

.partner-strip-image {
  height: 100%;
  min-height: 400px;
}

.partner-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-strip-content {
  padding: 3rem;
}

.partner-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #E6C05C 100%);
  color: #1a1a1a;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.partner-badge.secondary {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #D4AF37;
}

.partner-strip-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.partner-highlight {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.highlight-discount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4AF37;
}
.highlight-discount-sm {  font-size: 1.75rem !important;}

.highlight-detail {
  font-size: 0.95rem;
  color: #666;
}

.partner-strip-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.partner-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.partner-features li {
  font-size: 0.9rem;
  color: #444;
  padding-left: 1.5rem;
  position: relative;
}

.partner-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .partner-strip {
    grid-template-columns: 1fr;
  }
  
  .partner-strip.reverse {
    direction: ltr;
  }
  
  .partner-strip-image {
    min-height: 300px;
  }
  
  .partner-strip-content {
    padding: 2rem;
  }
  
  .partner-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .partner-strip-content h3 {
    font-size: 1.5rem;
  }
  
  .partner-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .highlight-discount {
    font-size: 1.5rem;
  }
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  text-decoration: none;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.category-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.category-cta {
  display: inline-block;
  background: #F2EBE7;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  width: fit-content;
}

.category-card:hover .category-cta {
  opacity: 1;
  transform: translateY(0);
}

.categories-cta {
  margin-top: 2.5rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;  /* Reduced from 2rem */
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  text-align: center;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  background: #f8f5f0;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #D4AF37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-content h2 {
  color: #D4AF37;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  
}

.contact-buttons .btn {
  min-width: 160px;
}

.contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.9;
}

.contact-info span,
.contact-info strong {
  color: white;
}

.contact-info a {
  color: #D4AF37;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* NET-30 Section */
.net30-section {
  background: #f8f5f0;
  padding: 2rem 0;
  text-align: center;
}

.net30-content h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.net30-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.net30-content a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

.net30-content a:hover {
  text-decoration: underline;
}

/* Footer Overrides */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid-5col {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .footer-grid-5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid-5col {
    grid-template-columns: 1fr;
  }
}

.footer-connect-col h3,
.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #F2EBE7;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marketplace-section {
  margin-top: 1rem;
}

.marketplace-section span {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.marketplace-icons {
  display: flex;
  gap: 0.5rem;
}

.marketplace-icons a {
  transition: transform 0.3s ease;
}

.marketplace-icons a:hover {
  transform: scale(1.1);
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #D4AF37;
}

.partner-section {
  margin-top: 1.5rem;
}

.partner-section h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.btn-partner {
  display: inline-block;
  background: #F2EBE7;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-partner:hover {
  background: #E6C05C;
}

.footer-logo-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-logo-payment-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom-bar p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ----------------------------------------
   Products Grid & Cards (from chains.css)
   ---------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--primary-gold);
  color: var(--neutral-white);
}

.product-badge.sale {
  background: #D4AF37;
  color: #fff;
}

.product-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-charcoal);
  margin-bottom: var(--space-2);
  line-height: 1.4;
  height: calc(1.2rem * 1.4 * 2);
  min-height: calc(1.2rem * 1.4 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--neutral-600);
}

.product-card-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: var(--space-4);
  margin-top: auto;
}

.product-card-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-gold-dark);
}

.product-card-bulk {
  font-size: var(--text-sm);
  color: var(--neutral-600);
}

.product-card-price-original {
  font-size: var(--text-base);
  color: var(--neutral-500);
  text-decoration: line-through;
}

.best-sellers-cta {
  margin-top: 1.5rem;  /* Reduced from 2.5rem */
}

/* Products Grid Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Background Colors */
.bg-cream-light {
  background: #f8f5f0;
}
/* Why Partner section - tighter spacing */.bg-cream-light.section {  padding-top: 2.5rem;  padding-bottom: 1.5rem;}.bg-cream-light .section-title {  margin-bottom: 0.5rem;}.bg-cream-light .section-subtitle {  margin-bottom: 1.5rem;}
/* Best Sellers section - tighter spacing */#bestsellers.section {  padding-top: 2.5rem;  padding-bottom: 2.5rem;}#bestsellers .section-title {  margin-bottom: 0.5rem;}#bestsellers .section-subtitle {  margin-bottom: 1.5rem;}



/* Savings Meter Section */
.savings-meter-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.savings-meter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.savings-meter-subtitle {
  font-size: 1.125rem;
  color: #D4AF37;
  margin-bottom: 2rem;  /* Reduced from 3rem */
  letter-spacing: 0.02em;
}

/* The Meter/Thermometer */
.savings-meter {
  max-width: 700px;
  margin: 0 auto 1.5rem;  /* Reduced from 2.5rem */
  padding: 0 2rem;
}

.meter-track {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 90px 0 25px;
}

.meter-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #B8960F 0%, #D4AF37 50%, #E6C05C 100%);
  border-radius: 4px;
}

/* Tier Points/Markers */
.meter-point {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.meter-point[data-tier="1"] {
  left: 0%;
}

.meter-point[data-tier="2"] {
  left: 50%;
}

.meter-point[data-tier="3"] {
  left: 100%;
}

.meter-dot {
  width: 24px;
  height: 24px;
  background: #D4AF37;
  border: 4px solid #1a1a1a;
  border-radius: 50%;
  position: relative;
  left: -12px;
  box-shadow: 0 0 0 3px #D4AF37, 0 4px 12px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meter-point:hover .meter-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px #E6C05C, 0 6px 20px rgba(212, 175, 55, 0.6);
}

.meter-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  bottom: 40px;
}

.meter-percent {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1.1;
}

.meter-threshold {
  display: block;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Message Box */
.savings-meter-message {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.savings-meter-message p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.savings-meter-message strong {
  color: #D4AF37;
  font-weight: 600;
}

/* Tier Info Cards - Below Thermometer */
.tier-info-cards {
  position: relative;
  max-width: 700px;
  margin: 0 auto 1.5rem;  /* Reduced from 2rem */
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
}

.tier-info-card {
  width: 140px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

/* Position cards to align with dots */
.tier-info-card:nth-child(1) {
  margin-left: -70px; /* Center under left dot */
}

.tier-info-card:nth-child(3) {
  margin-right: -70px; /* Center under right dot */
}

.tier-info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.tier-info-card.featured {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.tier-info-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.tier-info-code {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.tier-info-detail {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .tier-info-cards {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .tier-info-card {
    width: 100%;
    max-width: 200px;
    margin: 0 !important;
  }
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .savings-meter {
    padding: 0 1rem;
  }

  .meter-track {
    margin: 80px 0 30px;
  }

  .meter-percent {
    font-size: 1.125rem;
  }

  .meter-threshold {
    font-size: 0.75rem;
  }

  .meter-dot {
    width: 18px;
    height: 18px;
    left: -9px;
  }

  .meter-label {
    bottom: 30px;
  }
}

/* ----------------------------------------
   Categories Horizontal Scroll Section
   ---------------------------------------- */
.categories-scroll-section {
  background: #f8f5f0;
  padding: 2.5rem 0 0;
}

.categories-scroll-wrapper {
  position: relative;
  margin: 2rem calc(-1 * 1rem);
  padding: 0 1rem;
}

.categories-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #f8f5f0;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
  height: 8px;
}

.categories-scroll::-webkit-scrollbar-track {
  background: #f8f5f0;
  border-radius: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
  background: #B8960F;
}

.category-square {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-square:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.category-square:hover img {
  transform: scale(1.1);
}

.category-square-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
}

.category-square-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px 0;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.category-square-overlay span {
  font-size: 0.75rem;
  color: #D4AF37;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .categories-scroll-section {
    padding: 3rem 0;
  }

  .category-square {
    width: 140px;
    height: 140px;
  }
}


/* ----------------------------------------
   Faire Net60 Section
   ---------------------------------------- */
.faire-section {
  background: linear-gradient(135deg, #f8f5f0 0%, #F2EBE7 100%);
  padding: 4rem 0 0;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: #D4AF37;
  color: #1a1a1a;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.faire-section .section-title {
  margin-bottom: 0.5rem;
}

.faire-section .section-subtitle {
  margin-bottom: 2.5rem;
}

/* Two-column layout: 2x2 benefits grid on left, widget on right */
.faire-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* 2x2 benefits grid */
.faire-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faire-benefits-grid .benefit-card {
  padding: 2rem 1.5rem;
}

.faire-benefits-grid .benefit-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
}

.faire-benefits-grid .benefit-icon svg {
  width: 48px;
  height: 48px;
}

.faire-benefits-grid .benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faire-benefits-grid .benefit-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Widget on right side */
.faire-widget-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faire-widget-side iframe {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

/* Responsive */
@media (max-width: 1100px) {
  .faire-layout {
    grid-template-columns: 1fr 450px;
  }
  
  .faire-widget-side iframe {
    width: 450px !important;
    height: 550px !important;
  }
}

@media (max-width: 992px) {
  .faire-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faire-benefits-grid {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .faire-widget-side iframe {
    width: 100% !important;
    max-width: 500px;
    height: 550px !important;
  }
}

@media (max-width: 576px) {
  .faire-section {
    padding: 3rem 0;
  }
  
  .faire-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .faire-widget-side iframe {
    height: 500px !important;
  }
}

