/* ========================================
   Chains Landing Page Styles
   Separate from main landing page
   ======================================== */

/* ----------------------------------------
   Hero Banner
   ---------------------------------------- */
.chains-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Reduce section spacing for chains page */
.chains-page .section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

/* Best Sellers section - more space above View All button */
.best-sellers-cta {
  margin-top: var(--space-10);
}

.chains-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.chains-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chains-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.chains-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-16) var(--space-4);
  max-width: 600px;
}

.chains-hero-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--neutral-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.chains-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--neutral-white);
  line-height: 1.1;
  margin-bottom: var(--space-2);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chains-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--neutral-white);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}

.chains-hero-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* ----------------------------------------
   Wholesale Value Strip
   ---------------------------------------- */
.wholesale-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-6) 0;
}

.wholesale-strip-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.wholesale-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: var(--space-2) var(--space-3);
  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: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-gold-dark);
  line-height: 1.2;
}

.wholesale-label {
  font-size: var(--text-sm);
  color: var(--text-charcoal);
  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: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.wholesale-link {
  font-size: var(--text-sm);
  color: var(--primary-gold-dark);
  text-decoration: none;
  font-weight: 600;
  margin-top: 4px;
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.wholesale-link:hover {
  background: var(--primary-gold);
  color: var(--neutral-white);
}

/* End item - no right divider, can extend wider */
.wholesale-item-end .wholesale-highlight {
  white-space: nowrap;
}


/* ----------------------------------------
   Section Titles
   ---------------------------------------- */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
  text-align: center;
  color: var(--text-charcoal);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------
   Categories Grid - Bento Box Layout
   ---------------------------------------- */
.chains-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-4);
  max-width: 100%;
  margin: 0 auto;
}

/* All cards same size in 4x2 grid */
.chain-category-large {
  /* No special sizing - equal cards */
}

.chain-category-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chain-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.chain-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.chain-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 2;
}

.chain-category-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 4px;
}

.chain-category-count {
  font-size: var(--text-sm);
  color: var(--primary-gold-dark);
  font-weight: 500;
}

/* ----------------------------------------
   Horizontal Scroll Bar (Other Collections)
   ---------------------------------------- */
.categories-scroll-wrapper {
  position: relative;
  margin: 0 calc(-1 * var(--space-4));
  padding: 0 var(--space-4);
}

.categories-scroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: var(--space-2) 0 var(--space-4) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-gold) var(--cream-light);
  -webkit-overflow-scrolling: touch;
}

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

.categories-scroll::-webkit-scrollbar-track {
  background: var(--cream-light);
  border-radius: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

.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: var(--space-3);
  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: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--neutral-white);
  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: var(--text-xs);
  color: var(--primary-gold);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------
   Metal Types Section
   ---------------------------------------- */
.metal-types-section {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.metal-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto var(--space-8);
}

.metal-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.metal-type-custom {
  opacity: 0.9;
}

.metal-swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.metal-swatch-gold {
  background: linear-gradient(145deg, #E6C05C 0%, #D4AF37 40%, #B8960F 100%);
}

.metal-swatch-silver {
  background: linear-gradient(145deg, #E8E8E8 0%, #C0C0C0 40%, #A8A8A8 100%);
}

.metal-swatch-sterling {
  background: linear-gradient(145deg, #F5F5F5 0%, #E0E0E0 40%, #BEBEBE 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.metal-swatch-vermeil {
  background: linear-gradient(145deg, #D4AF37 0%, #C9A227 40%, #B8960F 100%);
}

.metal-swatch-pvd {
  background: linear-gradient(145deg, #B8960F 0%, #8B7355 40%, #6B5A3D 100%);
}

.metal-type-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: var(--space-1);
}

.metal-type-tag {
  font-size: var(--text-xs);
  color: var(--primary-gold-dark);
  font-weight: 500;
}

.metal-type-tag-custom {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-dark);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.metal-types-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--neutral-600);
}

.metal-types-note a {
  color: var(--primary-gold-dark);
  font-weight: 500;
  text-decoration: none;
}

.metal-types-note a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   Products Grid
   ---------------------------------------- */
.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;
}

.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;
}

.product-badge.sale {
  background: #e74c3c;
  color: var(--neutral-white);
}

.product-badge.new {
  background: var(--primary-gold);
  color: var(--neutral-white);
}

.product-card-body {
  padding: var(--space-4);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-charcoal);
  margin-bottom: var(--space-2);
  line-height: 1.4;
  /* Fixed 2-line height for consistent alignment */
  height: calc(var(--text-base) * 1.4 * 2);
  min-height: calc(var(--text-base) * 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;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

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

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

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

.savings-meter-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--neutral-white);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.savings-meter-subtitle {
  font-size: var(--text-lg);
  color: var(--primary-gold);
  margin-bottom: var(--space-12);
  letter-spacing: 0.02em;
}

/* The Meter/Thermometer */
.savings-meter {
  max-width: 700px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-8);
}

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

.meter-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 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: var(--primary-gold);
  border: 4px solid #1a1a1a;
  border-radius: 50%;
  position: relative;
  left: -12px;
  box-shadow: 0 0 0 3px var(--primary-gold), 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 var(--primary-gold-light), 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

/* All labels above the track */
.meter-label {
  bottom: 40px;
}

/* Offset middle label slightly to prevent overlap */
.meter-point[data-tier="2"] .meter-label {
  bottom: 40px;
}

.meter-percent {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-white);
  line-height: 1.1;
}

.meter-threshold {
  display: block;
  font-size: var(--text-sm);
  color: var(--primary-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* B2B and VIP meter dots */
.meter-dot-b2b {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960F 100%);
}

.meter-dot-vip {
  background: linear-gradient(135deg, #E6C05C 0%, var(--primary-gold) 100%);
}

/* Order Value Discounts */
.order-discounts {
  max-width: 500px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.order-discounts-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.order-discounts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
}

.order-discount-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.order-discount-percent {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-gold);
}

.order-discount-percent-max {
  color: var(--primary-gold-light);
}

.order-discount-threshold {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.order-discount-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Membership Tiers Label */
.membership-tiers-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: var(--space-4);
}

/* Savings Tier Detail Cards */
.savings-tiers-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto var(--space-10);
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

.tier-card-b2b {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
}

.tier-card-vip {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(230, 192, 92, 0.05) 100%);
}

.tier-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.tier-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--neutral-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tier-badge-b2b {
  background: rgba(212, 175, 55, 0.3);
  color: var(--primary-gold-light);
}

.tier-badge-vip {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #E6C05C 100%);
  color: #1a1a1a;
}

.tier-crown {
  color: var(--primary-gold);
  font-size: var(--text-xl);
}

.tier-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-white);
  margin-bottom: var(--space-2);
}

.tier-card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.tier-card-link {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.tier-card-link:hover {
  color: var(--primary-gold-light);
}

/* Message Box */
.savings-meter-message {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

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

.savings-meter-message strong {
  color: var(--primary-gold);
  font-weight: 600;
}

/* ----------------------------------------
   Explore Grid
   ---------------------------------------- */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.explore-card {
  display: block;
  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;
  text-decoration: none;
}

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

.explore-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.explore-content {
  padding: var(--space-4);
  text-align: center;
}

.explore-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: var(--space-1);
}

.explore-content p {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  margin: 0;
}

/* ----------------------------------------
   Newsletter Section
   ---------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
  padding: var(--space-12) 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.newsletter-text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--neutral-white);
  margin-bottom: var(--space-2);
}

.newsletter-text p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
  margin: 0;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
}

.newsletter-input-group {
  display: flex;
  gap: var(--space-2);
}

.newsletter-input-group input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-base);
  border: none;
  border-radius: var(--radius-md);
  outline: none;
}

.newsletter-input-group input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input-group .btn {
  white-space: nowrap;
  background: var(--text-charcoal);
  color: var(--neutral-white);
}

.newsletter-input-group .btn:hover {
  background: #1a1a1a;
}

.newsletter-note {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-note strong {
  color: var(--neutral-white);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links span {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

.social-links a {
  color: var(--neutral-white);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

/* ----------------------------------------
   Responsive Design
   ---------------------------------------- */
@media (max-width: 1024px) {
  /* Wholesale Strip Tablet */
  .wholesale-strip-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
  }

  .wholesale-item {
    flex: 0 0 calc(33.33% - var(--space-2));
    padding: var(--space-2);
  }

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

  .wholesale-highlight {
    font-size: var(--text-xl);
  }

  .chains-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
  }

  /* Metal Types Tablet */
  .metal-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  .metal-swatch {
    width: 56px;
    height: 56px;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-text {
    text-align: center;
  }

  .newsletter-text p {
    margin: 0 auto;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Wholesale Strip Mobile */
  .wholesale-strip {
    padding: var(--space-4) 0;
  }

  .wholesale-strip-grid {
    flex-direction: column;
    gap: var(--space-3);
  }

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

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

  .wholesale-highlight {
    font-size: var(--text-lg);
  }

  .wholesale-label {
    font-size: var(--text-sm);
  }

  .wholesale-item-cta {
    flex-direction: column;
    padding: var(--space-3);
  }

  .chains-hero {
    min-height: 400px;
  }

  .chains-hero-title {
    font-size: 2.5rem;
  }

  /* Stack bento cards on mobile */
  .chains-categories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-3);
  }

  .chain-category-card,
  .chain-category-card:nth-child(1),
  .chain-category-card:nth-child(2),
  .chain-category-card:nth-child(3),
  .chain-category-card:nth-child(4),
  .chain-category-card:nth-child(5),
  .chain-category-card:nth-child(6),
  .chain-category-card:nth-child(7) {
    grid-column: 1;
    grid-row: auto;
    height: 160px;
  }

  /* Smaller squares on mobile */
  .category-square {
    width: 120px;
    height: 120px;
  }

  .category-square-overlay {
    padding: var(--space-2);
  }

  .category-square-overlay h3 {
    font-size: var(--text-xs);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Savings Meter Mobile */
  .savings-meter {
    padding: 0 var(--space-4);
  }

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

  .meter-percent {
    font-size: var(--text-lg);
  }

  .meter-threshold {
    font-size: var(--text-xs);
  }

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

  .meter-label {
    bottom: 30px;
  }

  /* Tier Cards Mobile */
  .savings-tiers-details {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .tier-card {
    padding: var(--space-4);
  }

  /* Metal Types Mobile */
  .metal-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .metal-types-grid .metal-type-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .metal-type-card {
    padding: var(--space-3);
  }

  .metal-swatch {
    width: 48px;
    height: 48px;
  }

  .metal-type-name {
    font-size: var(--text-sm);
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group .btn {
    width: 100%;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ----------------------------------------
   Active nav state
   ---------------------------------------- */
.nav-links a.active {
  color: var(--primary-gold);
  font-weight: 600;
}

/* ----------------------------------------
   Explore Other Collections - Larger Text
   ---------------------------------------- */
#explore .section-title {
  font-size: var(--text-4xl);
}

#explore .section-subtitle {
  font-size: var(--text-xl);
}
