/* ============================================
   CAROLINA CORDYS — Design System
   ============================================ */

:root {
  --orange:       #E8922A;
  --orange-light: #F4B068;
  --orange-dark:  #C4751A;
  --navy:         #2B3A8F;
  --navy-light:   #3D4FA8;
  --navy-dark:    #1E2A6E;
  --cream:        #FAF7F2;
  --cream-dark:   #F0EAE0;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --gray:         #6B6B6B;
  --gray-light:   #E8E2D9;
  --success:      #2D7D46;
  --error:        #C0392B;

  --font-main:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif:   Georgia, 'Times New Roman', serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);

  --max-width:    1100px;
  --nav-height:   68px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; }

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--navy);
}

h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -1px; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 15px; }

p { font-size: 16px; color: var(--gray); line-height: 1.75; }

.lead { font-size: 18px; line-height: 1.7; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.2px;
}

.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cart {
  position: relative;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.page-offset { padding-top: var(--nav-height); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-main);
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   BADGES & PILLS
   ============================================ */

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-orange { background: var(--orange); color: var(--white); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-cream { background: var(--cream-dark); color: var(--navy); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); }

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card-body { padding: 24px; }
.card-body-lg { padding: 32px; }

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream-dark);
}

.product-card-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.product-card-body { padding: 20px; }

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.product-card-weight {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.product-card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 14px;
}

.product-card-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}

/* ============================================
   FORMS
   ============================================ */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,58,143,0.92) 0%, rgba(43,58,143,0.7) 60%, rgba(232,146,42,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }

.hero .lead { color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

.trust-icon {
  width: 28px; height: 28px;
  background: rgba(232,146,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .section-label { color: var(--orange-light); }

.section-orange {
  background: var(--orange);
  color: var(--white);
}

.section-orange h2, .section-orange h3 { color: var(--white); }
.section-orange p { color: rgba(255,255,255,0.85); }

.section-cream { background: var(--cream-dark); }

/* ============================================
   FEATURE GRID
   ============================================ */

.feature-item { display: flex; gap: 16px; align-items: flex-start; }

.feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(232,146,42,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 14px; }

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-center { margin: 16px auto 24px; }

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  padding: 16px 0;
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--gray-light); }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* ============================================
   QUANTITY SELECTOR
   ============================================ */

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 40px; height: 40px;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { background: var(--gray-light); }

.qty-input {
  width: 48px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  outline: none;
  background: var(--white);
}

/* ============================================
   NOTIFICATION BANNER
   ============================================ */

.site-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}

.has-banner { padding-top: calc(var(--nav-height) + 38px); }
.has-banner .nav { top: 38px; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-text span { color: var(--orange); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   CART DRAWER
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 { font-size: 18px; color: var(--navy); }

.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray);
  padding: 4px;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gray);
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-item-image {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cart-item-variant { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--orange); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-light);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.alert-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.alert-info { background: #D1ECF1; color: #0C5460; border: 1px solid #BEE5EB; }

/* ============================================
   TABS
   ============================================ */

.tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 32px;
  gap: 0;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */

.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-icon {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================
   WHOLESALE TABLE
   ============================================ */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3px;
}

.price-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--dark);
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table .best-value td { background: #FFF8F0; }
.price-table .best-value td:first-child { border-left: 3px solid var(--orange); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 300;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .hero { min-height: 70vh; }
  .cart-drawer { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ============================================
   UTILITIES
   ============================================ */

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   WHOLESALE TABLE
   ============================================ */

.wholesale-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wholesale-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

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

.wholesale-row-header {
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 28px;
}

.wholesale-row-featured { background: var(--cream); }

.wholesale-tier {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.wholesale-tier-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.wholesale-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
}

.wholesale-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.wholesale-est {
  font-size: 14px;
  color: var(--gray);
}

@media (max-width: 600px) {
  .wholesale-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 20px;
  }
  .wholesale-est { display: none; }
  .wholesale-row-header div:last-child { display: none; }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
  .nav, .cart-drawer, .cart-overlay, .toast { display: none; }
  body { background: white; }
}
