/* ============================================
   CAMOCHEM — New Header v2
   Page: header-test (ID 43128)
   Style: Glossier-minimal (text-only, logo left)
   ============================================ */

/* ─── Visby Round CF font (brand font) ─── */
@font-face {
  font-family: 'Visby';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Regular.woff2') format('woff2'),
       url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Visby';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Medium.woff2') format('woff2'),
       url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Visby';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-DemiBold.woff2') format('woff2'),
       url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-DemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Visby';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Bold.woff2') format('woff2'),
       url('https://camochem.uk/wp-content/uploads/2022/07/VisbyRoundCF-Bold.woff') format('woff');
}

/* ─── CSS Reset for our header ─── */
.cc-header *, .cc-header *::before, .cc-header *::after,
.cc-menu-overlay *, .cc-menu-overlay *::before, .cc-menu-overlay *::after,
.cc-cart-drawer *, .cc-cart-drawer *::before, .cc-cart-drawer *::after,
.cc-currency-picker *, .cc-currency-picker *::before, .cc-currency-picker *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── HEADER BAR ─── */
.cc-header {
  background: #fff;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: 'Visby', Poppins, -apple-system, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid rgba(33,47,62,0.1);
}
/* Spacer to prevent content from hiding behind fixed header + shipping bar */
#cc-new-header {
  padding-top: 82px; /* 52px header + 30px shipping bar */
}

.cc-header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  overflow-x: visible;
  overflow-y: clip;
  height: 28px;
}
.cc-header-logo-img {
  height: 28px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform: translateY(0);
}
.cc-header-logo-msg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #212F3E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
}
.cc-header-logo:hover .cc-header-logo-img {
  transform: translateY(-100%);
  opacity: 0;
}
.cc-header-logo:hover .cc-header-logo-msg {
  transform: translateY(0);
  opacity: 1;
}

.cc-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cc-header-sep {
  color: rgba(33,47,62,0.3);
  font-size: 10px;
  user-select: none;
}

/* Shared style for header text buttons */
.cc-header-btn {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  color: #212F3E;
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0;
  line-height: 1;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cc-header-btn:hover { opacity: 0.6; }

/* Currency button in header — flag + code */
.cc-header-currency {
  gap: 4px;
  color: #212F3E;
}
.cc-header-currency:hover { opacity: 0.6; }
.cc-header-currency .cc-flag { font-size: 14px; line-height: 1; }
.cc-header-currency .cc-cur-label,
.cc-header-currency .cc-cur-dot,
.cc-header-currency .cc-cur-code { color: #212F3E; }

/* Cart count highlight */
.cc-header-btn .cc-cart-count {
  color: #212F3E;
}

/* ─── DESKTOP HEADER ADJUSTMENTS ─── */
@media (min-width: 769px) {
  .cc-header {
    height: 64px;
    padding: 0 32px;
  }
  #cc-new-header {
    padding-top: 96px; /* 64px header + 32px shipping bar */
  }
  .cc-header-logo {
    height: 34px;
  }
  .cc-header-logo-img {
    height: 34px !important;
  }
  .cc-header-logo-msg {
    font-size: 13px;
  }
  .cc-header-right {
    gap: 20px;
  }
  .cc-header-btn {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .cc-header-currency .cc-flag { font-size: 16px; }

  /* Desktop nav (visible only on desktop) */
  .cc-desktop-nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .cc-desktop-nav a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 16px;
    color: #212F3E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: opacity 0.15s;
    font-family: 'Visby', Poppins, sans-serif;
  }
  .cc-desktop-nav a:hover { opacity: 0.6; }

  /* Desktop dropdown */
  .cc-desktop-nav .cc-nav-item { position: relative; }
  .cc-desktop-nav .cc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s;
  }
  .cc-nav-item:hover .cc-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .cc-dropdown a {
    display: block;
    padding: 11px 20px;
    color: #212F3E;
    font-size: 14px;
    font-weight: 500;
  }
  .cc-dropdown a:hover { background: #f5f5f5; }

  /* Hide mobile MENU button on desktop */
  .cc-menu-toggle { display: none !important; }

  /* Show ACCOUNT link on desktop */
  .cc-header-account { display: inline-flex !important; }
}

/* ─── Mobile: hide desktop nav ─── */
@media (max-width: 768px) {
  .cc-desktop-nav { display: none; }
  /* Logo slide animation triggered by .is-tapped class on mobile */
  .cc-header-logo.is-tapped .cc-header-logo-img {
    transform: translateY(-100%);
    opacity: 0;
  }
  .cc-header-logo.is-tapped .cc-header-logo-msg {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ─── FULL-SCREEN MENU OVERLAY ─── */
.cc-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #212F3E;
  font-family: 'Visby', Poppins, sans-serif;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.cc-menu-overlay.is-open {
  transform: translateX(0);
}

/* Menu top bar */
.cc-menu-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cc-menu-topbar-logo {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
}
.cc-menu-close {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Menu items */
.cc-menu-nav {
  flex: 1;
  padding: 8px 0;
}
.cc-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.1s;
}
.cc-menu-item:hover { background: rgba(255,255,255,0.03); }
.cc-menu-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.4);
}

/* Sub-menu */
.cc-menu-sub { display: flex; flex-direction: column; flex: 1; }
.cc-menu-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
}
.cc-menu-back svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.4); }
.cc-menu-sub-title {
  padding: 16px 24px 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}
.cc-menu-sub-item {
  display: block;
  padding: 15px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.1s;
}
.cc-menu-sub-item:hover { background: rgba(255,255,255,0.03); color: #fff; }

/* Currency selector at bottom of menu */
.cc-menu-currency-section {
  padding: 16px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.cc-menu-currency-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.cc-menu-currency-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
  transition: background 0.15s;
}
.cc-menu-currency-btn:hover { background: rgba(255,255,255,0.1); }
.cc-menu-currency-btn .cc-flag { font-size: 22px; }
.cc-menu-currency-btn .cc-cur-info { text-align: left; flex: 1; }
.cc-menu-currency-btn .cc-cur-name { font-weight: 600; font-size: 14px; }
.cc-menu-currency-btn .cc-cur-sub { font-size: 12px; opacity: 0.5; }
.cc-menu-currency-btn .cc-cur-change { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ─── CURRENCY PICKER (bottom sheet) ─── */
.cc-currency-picker {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cc-currency-picker.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cc-currency-picker-sheet {
  background: #fff;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 420px;
  padding: 20px 24px 34px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.cc-currency-picker.is-open .cc-currency-picker-sheet {
  transform: translateY(0);
}

.cc-currency-picker-handle {
  width: 36px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 20px;
}
.cc-currency-picker-title {
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #212F3E;
  margin-bottom: 16px;
}

.cc-currency-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #eee;
  background: #fff;
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
  margin-bottom: 8px;
  transition: all 0.15s;
}
.cc-currency-option:last-child { margin-bottom: 0; }
.cc-currency-option:hover { border-color: #ccc; }
.cc-currency-option.is-active {
  border-color: #212F3E;
  background: #F0F4FF;
}
.cc-currency-option .cc-flag { font-size: 24px; }
.cc-currency-option .cc-opt-info { text-align: left; }
.cc-currency-option .cc-opt-name { font-weight: 600; font-size: 14px; color: #212F3E; }
.cc-currency-option .cc-opt-sub { font-size: 12px; color: #888; }
.cc-currency-option .cc-opt-check {
  margin-left: auto;
  color: #212F3E;
  font-weight: 700;
  font-size: 16px;
  display: none;
}
.cc-currency-option.is-active .cc-opt-check { display: block; }

/* ─── Body scroll lock ─── */
body.cc-menu-is-open,
body.cc-cart-is-open {
  overflow: hidden;
}

/* ════════════════════════════════════════════
   CART DRAWER — Glossier-style side panel
   ════════════════════════════════════════════ */

/* Backdrop */
.cc-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.35s ease;
}
.cc-cart-backdrop.is-open {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

/* Drawer panel */
.cc-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  width: 100%;
  max-width: 420px;
  background: #fff;
  font-family: 'Visby', Poppins, -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}
.cc-cart-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.cc-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  border-bottom: 1px solid rgba(33, 47, 62, 0.1);
  flex-shrink: 0;
}
.cc-cart-drawer-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: #212F3E;
}
.cc-cart-drawer-close {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(33, 47, 62, 0.5);
  transition: color 0.15s;
}
.cc-cart-drawer-close:hover {
  color: #212F3E;
}

/* Drawer body (scrollable) */
.cc-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

/* Loading state */
.cc-cart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  color: rgba(33, 47, 62, 0.4);
  font-size: 14px;
  font-weight: 500;
}

/* Empty cart */
.cc-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.cc-cart-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}
.cc-cart-empty-text {
  color: #212F3E;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
.cc-cart-shop-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #212F3E !important;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0;
  transition: opacity 0.15s;
}
.cc-cart-shop-btn:hover {
  opacity: 0.85;
}

/* Cart item row */
.cc-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(33, 47, 62, 0.06);
  transition: opacity 0.2s;
}

/* Product image */
.cc-cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
  flex-shrink: 0;
}
.cc-cart-item-noimg {
  display: block;
}

/* Item info (name, price, qty) */
.cc-cart-item-info {
  flex: 1;
  min-width: 0;
}
.cc-cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #212F3E;
  line-height: 1.3;
  margin-bottom: 4px;
  /* Truncate long names */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cc-cart-item-price {
  font-size: 13px;
  color: rgba(33, 47, 62, 0.6);
  margin-bottom: 10px;
}

/* Quantity controls */
.cc-cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 47, 62, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.cc-qty-btn {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #212F3E;
  font-family: 'Visby', Poppins, sans-serif;
  transition: background 0.1s;
}
.cc-qty-btn:hover {
  background: rgba(33, 47, 62, 0.06) !important;
}
.cc-qty-val {
  width: 36px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #212F3E;
  border-left: 1px solid rgba(33, 47, 62, 0.1);
  border-right: 1px solid rgba(33, 47, 62, 0.1);
  line-height: 32px;
}

/* Right side (line total + remove) */
.cc-cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.cc-cart-item-line-total {
  font-size: 14px;
  font-weight: 600;
  color: #212F3E;
  white-space: nowrap;
}
.cc-cart-item-remove {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  color: rgba(33, 47, 62, 0.3);
  transition: color 0.15s;
  padding: 4px;
  display: flex;
}
.cc-cart-item-remove:hover {
  color: #c0392b;
}

/* Drawer footer (subtotal + checkout) */
.cc-cart-drawer-footer {
  flex-shrink: 0;
  padding: 16px 24px 24px;
  background: #fff;
}
.cc-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
  color: #212F3E;
}
.cc-cart-subtotal span:first-child {
  font-weight: 500;
}
.cc-cart-subtotal span:last-child {
  font-weight: 700;
  font-size: 16px;
}

/* Discount info wrap + message — sits between body and footer */
.cc-cart-discount-wrap {
  flex-shrink: 0;
}
.cc-cart-discount-msg {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 14px 24px;
  background: #212F3E;
  flex-shrink: 0;
}

.cc-cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #212F3E !important;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cc-cart-checkout-btn:hover {
  opacity: 0.85;
  color: #fff !important;
}

/* Mobile adjustments for cart drawer */
@media (max-width: 480px) {
  .cc-cart-drawer {
    max-width: 100%;
  }
  .cc-cart-item-img {
    width: 60px;
    height: 60px;
  }
}

/* ════════════════════════════════════════════
   FREE SHIPPING BAR — smart scroll top bar
   ════════════════════════════════════════════ */
.cc-fsb {
  position: fixed;
  top: 52px; /* below mobile header */
  left: 0;
  width: 100%;
  z-index: 899; /* just below header */
  background: #212F3E;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cc-fsb.is-scrolled-down {
  transform: translateY(-100%);
}
.cc-fsb-inner {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}
.cc-fsb-text {
  font-family: 'Visby', Poppins, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  line-height: 1;
}
.cc-fsb-text strong {
  font-weight: 700;
  color: #fff;
}
.cc-fsb.is-free .cc-fsb-text {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.cc-fsb.is-free .cc-fsb-text strong {
  color: #fff;
}

.cc-fsb-bar-wrap {
  flex: 1;
  max-width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.cc-fsb-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cc-fsb.is-free .cc-fsb-bar-fill {
  background: #4ADE80;
}
.cc-fsb.is-free .cc-fsb-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: ccFsbShimmer 1.5s ease-in-out forwards;
}
@keyframes ccFsbShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* No header shift needed — bar sits below header */

/* ─── Desktop FSB ─── */
@media (min-width: 769px) {
  .cc-fsb {
    top: 64px; /* below desktop header */
  }
  .cc-fsb-inner {
    height: 32px;
    gap: 14px;
    padding: 0 32px;
  }
  .cc-fsb-text { font-size: 14px; }
  .cc-fsb-bar-wrap { max-width: 240px; }
}

/* ─── Mobile FSB — readable ─── */
@media (max-width: 768px) {
  #cc-new-header {
    padding-top: 88px; /* 52px header + 36px shipping bar */
  }
  .cc-fsb-inner {
    height: 36px;
    gap: 8px;
    padding: 0 14px;
  }
  .cc-fsb-text { font-size: 14px; }
  .cc-fsb-bar-wrap { max-width: 90px; height: 3px; }
}
