/* Transaction Success Popup */
.transaction-success-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 52, 89, 0.32);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.transaction-success-popup .popup-content {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,52,89,0.18);
  text-align: center;
  color: #003459;
}
.transaction-success-popup h2 {
  margin-bottom: 1rem;
  color: #003459;
  font-size: 1.3rem;
}
.transaction-success-popup .popup-signoff {
  margin-top: 1.2rem;
  font-weight: 600;
  color: #00426e;
}
.popup-close-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #003459;
  cursor: pointer;
  z-index: 2;
}
/* Shopping page specific styles */

.cart-nav {
  position: relative;
  margin-left: 0.4rem;
}

.cart-toggle-btn {
  border: 2px solid #B8860B;
  background: #ffffff;
  color: #003459;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  margin-left: 0.35rem;
  background: #003459;
  color: #ffffff;
  font-size: 0.78rem;
}

.cart-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(430px, 92vw);
  max-height: min(78vh, 700px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e0e8;
  border-top: 4px solid #b8860b;
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 14px 32px rgba(0, 52, 89, 0.18);
  z-index: 400;
  display: flex;
  flex-direction: column;
}

.cart-dropdown[hidden] {
  display: none;
}

.cart-dropdown h3 {
  color: #003459;
  margin-bottom: 0.5rem;
}

#cart-items {
  overflow-y: auto;
  max-height: clamp(180px, 42vh, 430px);
  -webkit-overflow-scrolling: touch;
  padding-right: 0.2rem;
}

.cart-summary,
.cart-buttons {
  flex-shrink: 0;
}

.cart-buttons {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.clear-cart-btn {
  border-color: #8d1d1d;
  color: #8d1d1d;
}

.clear-cart-btn:hover {
  background: #8d1d1d;
  color: #ffffff;
}

/* Shopping page */
.shopping-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem;
}

.shopping-header {
  min-height: auto;
  margin-bottom: 1.85rem;
  border: 1px solid #d7e0e8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 8px 24px rgba(0, 52, 89, 0.08);
  position: relative;
  z-index: 2;
}

.shopping-count {
  margin-top: 0.5rem;
}

.shopping-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: start;
}

.shopping-catalog,
.cart-panel {
  min-height: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.category-tile {
  border: 1px solid #c8d3de;
  border-radius: 10px;
  background: #ffffff;
  color: #003459;
  text-align: left;
  padding: 0.85rem 1rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  column-gap: 0.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.category-tile strong {
  font-size: 1rem;
  display: block;
}

.category-tile span {
  font-size: 0.85rem;
  color: #5f7285;
}

.tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #edf3f8 0%, #e4edf5 100%);
  color: #003459;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}

.tile-body {
  display: grid;
  gap: 0.08rem;
}

.tile-arrow {
  font-size: 1rem;
  color: #7a8a98;
  font-weight: 700;
}

.category-tile.active {
  border-color: #b8860b;
  background: #fffaf0;
}

.subcategory-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.subcategory-btn {
  border: 1px solid #c8d3de;
  border-radius: 999px;
  background: #ffffff;
  color: #003459;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.subcategory-btn.active {
  border-color: #b8860b;
  background: #b8860b;
  color: #ffffff;
}

.bc-btn:hover { color: #003459; }

.bc-sep { color: #8a9bb0; }

.bc-current {
  color: #003459;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Subcategory landing grid */
.subcategory-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.subcategory-tile {
  border: 1px solid #c8d3de;
  border-radius: 10px;
  background: #ffffff;
  color: #003459;
  text-align: left;
  padding: 0.85rem 1rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  column-gap: 0.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.subcategory-tile strong { font-size: 1rem; }

.subcategory-tile span {
  font-size: 0.85rem;
  color: #5f7285;
}

.subcategory-tile:hover,
.category-tile:hover {
  border-color: #b8860b;
  background: #fffef8;
  box-shadow: inset 4px 0 0 #b8860b, 0 6px 18px rgba(0, 52, 89, 0.12);
  transform: translateY(-1px);
}

.view-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid #e2e9ef;
  border-radius: 10px;
  background: #f8fbfd;
}

.view-back-btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.shop-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f8fc 100%);
  border: 1px solid #dbe5ee;
  border-radius: 10px;
  padding: 0.7rem;
}

.shop-controls input,
.shop-controls select {
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  background: #ffffff;
  color: #003459;
}

.shop-controls-single {
  grid-template-columns: 1fr;
}

.shop-controls input:focus,
.shop-controls select:focus,
.qty-input:focus,
.cart-qty-input:focus,
.payment-form input:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.product-card {
  border: 1px solid #d7e0e8;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 52, 89, 0.06);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: #b9c9d8;
  box-shadow: 0 8px 18px rgba(0, 52, 89, 0.11);
}

.product-card h3 {
  color: #003459;
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.product-main {
  min-width: 0;
}

.product-head {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  justify-content: space-between;
}

.product-copy {
  min-width: 0;
  flex: 1;
}

.product-card .product-main .product-meta {
  margin-bottom: 0.1rem;
  color: #5f7285;
  font-size: 0.58rem;
  line-height: 1.2;
}

.product-comment-meta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.2rem 0.42rem;
  border-radius: 6px;
  background: #fff4d6;
  border: 1px solid #e5c986;
  color: #4f3a00 !important;
  font-size: 0.68rem !important;
  line-height: 1.35 !important;
}

.product-comment-meta strong {
  color: #2d2200;
  font-weight: 700;
}

.product-side {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.product-photo {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d7e0e8;
  background: #ffffff;
  cursor: zoom-in;
}

.product-category {
  color: #5f7285;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-price {
  color: #B8860B;
  font-weight: 700;
  margin-top: 0;
  font-size: 1.04rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-input {
  width: 70px;
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.55rem;
}

.product-actions .btn {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.cart-panel {
  position: sticky;
  top: 110px;
  border: 1px solid #d7e0e8;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: 0 10px 28px rgba(0, 52, 89, 0.1);
}

.cart-item {
  border-top: 1px solid #d7e0e8;
  padding: 0.78rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: #0f2233;
}

.cart-item:first-child {
  border-top: none;
}

.cart-item strong {
  color: #0a1c2b;
  font-weight: 700;
}

#cart-items .small {
  color: #1d3448;
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.cart-qty-input {
  width: 68px;
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.45rem;
}

.remove-btn {
  border: none;
  background: transparent;
  color: #8d1d1d;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.85rem;
}

.cart-summary {
  border-top: 2px solid #003459;
  margin-top: 1rem;
  padding-top: 0.75rem;
  display: grid;
  gap: 0.35rem;
  color: #0a2133;
  background: #f7fbff;
  border-radius: 8px;
  padding: 0.8rem;
}

.cart-summary span {
  color: #17374f;
}

.cart-summary strong {
  color: #071722;
}

#checkout-btn {
  width: 100%;
  margin-top: 0.85rem;
  font-weight: 700;
}

/* Terms modal tweaks */
.terms-modal-content {
  max-width: 540px;
}
.terms-body p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: #003459;
}
.terms-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
  font-weight: 600;
  color: #003459;
  cursor: pointer;
  line-height: 1.5;
}
.terms-check-label input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: #003459;
  cursor: pointer;
}

@keyframes terms-shake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-6px); }
  40%  { transform: translateX(6px); }
  60%  { transform: translateX(-5px); }
  80%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
.terms-check-label.terms-check-error {
  color: #c0392b;
  background: #fff0ee;
  border: 1.5px solid #e74c3c;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  animation: terms-shake 0.4s ease;
}
.terms-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  border: 2px solid #003459;
  color: #003459;
}
.btn-outline:hover {
  background: #003459;
  color: #fff;
}

.payment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 52, 89, 0.7);
  backdrop-filter: blur(2px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.payment-modal.show {
  display: flex;
}

.payment-modal-content {
  background: #ffffff;
  color: #003459;
  width: min(560px, 100%);
  max-height: calc(100vh - 2rem);
  border-radius: 12px;
  padding: 1.2rem;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #b8860b;
  overflow-y: auto;
  margin: auto 0;
  -webkit-overflow-scrolling: touch;
}

.product-modal-content {
  width: min(860px, 100%);
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-modal-visual {
  display: grid;
  gap: 0.6rem;
}

.product-modal-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid #d7e0e8;
  border-radius: 10px;
  background: #f8fbfd;
}

.product-modal-notes {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #e5c986;
  background: #fff4d6;
  color: #4f3a00;
  line-height: 1.45;
}

.product-modal-notes.is-empty {
  border-color: #d7e0e8;
  background: #f8fbfd;
  color: #5f7285;
}

.product-modal-info {
  display: grid;
  gap: 0.55rem;
}

.product-modal-meta {
  margin: 0;
  color: #1d3448;
}

.product-modal-price {
  margin: 0.2rem 0 0.5rem;
  color: #b8860b;
  font-size: 1.35rem;
  font-weight: 700;
}

.product-modal-actions {
  display: grid;
  gap: 0.4rem;
  max-width: 240px;
}

#product-modal-qty {
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.6rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #003459;
  font-size: 1.2rem;
  cursor: pointer;
}

.payment-form {
  display: grid;
  gap: 0.6rem;
}

.payment-methods {
  border: 1px solid #d7e0e8;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  background: #f9fcff;
}

.payment-methods legend {
  padding: 0 0.3rem;
  font-weight: 600;
}

.payment-methods label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.bank-transfer-details {
  border: 1px solid #d7e0e8;
  border-left: 4px solid #b8860b;
  border-radius: 8px;
  background: #f9fcff;
  padding: 0.65rem 0.75rem;
  color: #003459;
}

.bank-transfer-details p {
  margin: 0.2rem 0;
}

#card-fields {
  display: block;
}

.payment-field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.payment-form label {
  color: #003459;
  font-weight: 600;
}

.payment-form input {
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.65rem;
}

.payment-form textarea {
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.65rem;
  resize: vertical;
  min-height: 78px;
  font-family: inherit;
}

.stripe-card-element {
  border: 1px solid #c8d3de;
  border-radius: 8px;
  padding: 0.75rem 0.65rem;
  background: #ffffff;
  min-height: 42px;
}

.stripe-card-element.StripeElement--focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.16);
}

.stripe-card-element.StripeElement--invalid {
  border-color: #b24040;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.payment-message {
  margin-top: 0.4rem;
  color: #003459;
}

.promo-code-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.55rem;
}

.promo-code-row .btn {
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
}

.promo-code-message {
  margin: 0.15rem 0 0;
  min-height: 1.2em;
  color: #5f7285;
}

.promo-code-message.is-success {
  color: #1f6f43;
}

.promo-code-message.is-error {
  color: #8d1d1d;
}

.checkout-summary {
  border: 1px solid #d7e0e8;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.checkout-summary span {
  color: #17374f;
}

.checkout-summary strong {
  color: #071722;
}

.checkout-summary-total {
  border-top: 1px solid #d7e0e8;
  padding-top: 0.35rem;
  margin-top: 0.1rem;
}

#cart-discount,
#checkout-discount {
  color: #1f6f43;
}

@media (max-width: 1024px) {
  .shopping-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-nav {
    margin-left: auto;
  }

  .cart-dropdown {
    right: 0;
    width: min(96vw, 430px);
    max-height: 82vh;
  }

  #cart-items {
    max-height: 50vh;
  }

  .shop-controls {
    grid-template-columns: 1fr;
  }

  .view-back-btn {
    width: 100%;
    text-align: center;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-side {
    justify-items: start;
  }

  .product-head {
    align-items: center;
  }

  .product-photo {
    width: 92px;
    height: 92px;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .promo-code-row {
    grid-template-columns: 1fr;
  }

  .product-modal-layout {
    grid-template-columns: 1fr;
  }

  .product-modal-image {
    max-height: 300px;
  }
}

/* -- Image Lightbox -------------------------------------------- */
.img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.img-lightbox.open {
  display: flex;
}

.img-lightbox-img {
  max-width: min(88vw, 560px);
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  cursor: default;
  animation: lightbox-in 0.18s ease;
}

@keyframes lightbox-in {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.img-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  padding: 0;
}

.img-lightbox-close:hover {
  opacity: 1;
}

/* ── TRUST BAR ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #003459 0%, #00426e 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-bottom: 3px solid #b8860b;
  z-index: 50;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3.5vw, 3rem);
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  opacity: 0.95;
}

.trust-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── SHOPPING HEADER SUBTITLE ───────────────────────────────────────────── */
.shopping-header-sub {
  color: #5f7285;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  margin: 0.3rem 0 0.7rem;
  line-height: 1.55;
  max-width: 720px;
}

/* ── RFQ BANNER ─────────────────────────────────────────────────────────── */
.rfq-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-left: 4px solid #b8860b;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.rfq-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.rfq-banner-text strong {
  color: #003459;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  font-weight: 700;
}

.rfq-banner-text span {
  color: #5f7285;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
}

.rfq-cta-btn {
  background: #b8860b !important;
  color: #ffffff !important;
  border-color: #b8860b !important;
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.rfq-cta-btn:hover {
  background: #9a7009 !important;
  border-color: #9a7009 !important;
  color: #ffffff !important;
}

/* ── CATEGORY TILE EXTRA LINES ──────────────────────────────────────────── */
.tile-desc {
  font-size: 0.8rem;
  color: #4a6a85;
  line-height: 1.35;
  margin-top: 0.04rem;
}

.tile-count {
  font-size: 0.76rem;
  color: #8a9daf;
  margin-top: 0.04rem;
  font-weight: 500;
}

.tile-arrow {
  font-size: 1.4rem;
  color: #7a8a98;
  font-weight: 400;
  line-height: 1;
}

/* ── PRODUCT AVAILABILITY BADGE ─────────────────────────────────────────── */
.product-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a6b3c;
  background: #e8f7ee;
  border: 1px solid #b4dfc5;
  border-radius: 4px;
  padding: 0.14rem 0.46rem;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── CATEGORY / SUBCATEGORY TILE — hover handled in shared rule above ───── */

/* ── B2B ORDER REQUEST CART HEADER ──────────────────────────────────────── */
.cart-dropdown h3 {
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #b8860b;
  padding-bottom: 0.45rem;
  margin-bottom: 0.6rem;
}

/* ── CHECKOUT PAYMENT METHOD LEGEND ────────────────────────────────────── */
.payment-methods legend {
  font-weight: 700;
  font-size: 0.9rem;
  color: #003459;
  letter-spacing: 0.01em;
}

/* ── RESPONSIVE TRUST BAR ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .trust-bar {
    padding: 0.45rem 0.9rem;
  }

  .trust-bar-inner {
    gap: 0.9rem;
  }

  .trust-item {
    font-size: 0.76rem;
  }

  .rfq-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
  }

  .rfq-cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    justify-content: flex-start;
    gap: 0.65rem 1.4rem;
  }
}
