@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* CSS Document */
.fmon{font-family:'Montserrat', sans-serif;}

/* ============================================
   PERFUMEBO — THEME FIXES & ENHANCEMENTS
   Last updated: June 2026
   ============================================ */

/* ------------------------------------------
   1. FIX: "NEWARRIVALS" nav spacing
   ------------------------------------------ */
.menu__item a[href*="newarrivals"],
.menu__item a[href*="new-arrivals"],
.popup-navigation .menu__item a[href*="newarrivals"] {
  letter-spacing: 0.02em;
}
/* Force correct display name via CSS content trick is not reliable —
   fix is done via Shopify Admin > Navigation (rename the menu item).
   The CSS below adds visual spacing as a fallback. */

/* ------------------------------------------
   2. TRUST BADGE STRIP (used in snippet)
   ------------------------------------------ */
.pbo-trust-strip {
  background: #1a1a1a;
  padding: 10px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.pbo-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.pbo-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 18px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.pbo-trust-strip__item:last-child {
  border-right: none;
}
.pbo-trust-strip__item svg {
  flex-shrink: 0;
  color: #e8a020;
}
@media (max-width: 767px) {
  .pbo-trust-strip__inner {
    gap: 0;
  }
  .pbo-trust-strip__item {
    font-size: 10px;
    padding: 5px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 50%;
    justify-content: center;
  }
  .pbo-trust-strip__item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .pbo-trust-strip__item:last-child,
  .pbo-trust-strip__item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

/* ------------------------------------------
   3. AUTHENTICITY BADGE — product page
   ------------------------------------------ */
.pbo-authenticity-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f8f4ee 0%, #fdf9f4 100%);
  border: 1px solid #d4a843;
  border-left: 4px solid #d4a843;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}
.pbo-authenticity-badge__icon {
  font-size: 22px;
  flex-shrink: 0;
  color: #d4a843;
}
.pbo-authenticity-badge__text {
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}
.pbo-authenticity-badge__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

/* ------------------------------------------
   4. SHIPPING INFO BLOCK — product page
   ------------------------------------------ */
.pbo-shipping-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 14px 0;
  font-family: 'Montserrat', sans-serif;
}
.pbo-shipping-info__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
}
.pbo-shipping-info__row svg {
  color: #e85c20;
  flex-shrink: 0;
}
.pbo-shipping-info__row strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ------------------------------------------
   5. STICKY ADD TO CART BAR
   ------------------------------------------ */
.pbo-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #fff;
  box-shadow: 0 -3px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.pbo-sticky-atc.pbo-sticky-atc--visible {
  display: flex;
  transform: translateY(0);
}
.pbo-sticky-atc__info {
  flex: 1;
  min-width: 0;
}
.pbo-sticky-atc__name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pbo-sticky-atc__price {
  font-size: 16px;
  font-weight: 700;
  color: #e85c20;
}
.pbo-sticky-atc__btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pbo-sticky-atc__btn:hover {
  background: #e85c20;
}
@media (min-width: 1025px) {
  .pbo-sticky-atc {
    padding: 12px 40px;
    max-width: 900px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    border-radius: 8px 8px 0 0;
  }
  .pbo-sticky-atc.pbo-sticky-atc--visible {
    transform: translateX(-50%) translateY(0);
  }
}

/* Hide sticky ATC when native ATC is in viewport */
.pbo-sticky-atc--hidden {
  display: none !important;
}

/* ------------------------------------------
   6. FREE SHIPPING PROGRESS BAR — cart
   ------------------------------------------ */
.pbo-free-shipping-bar {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.pbo-free-shipping-bar__text {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  text-align: center;
}
.pbo-free-shipping-bar__text strong {
  color: #2a7a2a;
  font-weight: 700;
}
.pbo-free-shipping-bar__track {
  height: 6px;
  background: #ddd;
  border-radius: 99px;
  overflow: hidden;
}
.pbo-free-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #e85c20, #d4a843);
  border-radius: 99px;
  transition: width 0.5s ease;
}
.pbo-free-shipping-bar--complete .pbo-free-shipping-bar__fill {
  background: #2a7a2a;
}
.pbo-free-shipping-bar--complete .pbo-free-shipping-bar__text strong {
  color: #2a7a2a;
}

/* ------------------------------------------
   7. PRODUCT COLLECTION BADGES
   ------------------------------------------ */
.pbo-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  line-height: 1.4;
}
.pbo-badge--tester {
  background: #2a5fa5;
  color: #fff;
}
.pbo-badge--authentic {
  background: #d4a843;
  color: #fff;
}
.pbo-badge--ships-fast {
  background: #2a7a2a;
  color: #fff;
}
.pbo-badge--wholesale {
  background: #6b3fa0;
  color: #fff;
}

/* ------------------------------------------
   8. FIX: Default cookie notice text — override
   The cookie text is set via Theme Settings > Notifications.
   This CSS adjusts layout only.
   ------------------------------------------ */
.notification-cookies {
  border-radius: 8px 8px 0 0;
  max-width: 480px;
}
@media (min-width: 768px) {
  .notification-cookies {
    border-radius: 8px;
  }
}

/* ------------------------------------------
   9. PRODUCT PAGE — Ships-in banner
   ------------------------------------------ */
.pbo-ships-in {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #edfaee;
  border: 1px solid #b8e6ba;
  border-radius: 4px;
  padding: 7px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1d6b20;
  margin-bottom: 12px;
}
.pbo-ships-in svg {
  flex-shrink: 0;
}

/* ------------------------------------------
   10. INFORMATION LINE — trust icon fix
   Ensures the built-in section looks polished
   ------------------------------------------ */
.information-line .information-line__title {
  font-size: 13px;
  font-weight: 700;
}
.information-line p {
  font-size: 12px;
  color: #666;
}

/* ------------------------------------------
   11. CART PAGE — order note label clean
   ------------------------------------------ */
.cart__note label,
.cart__note .js-cart-note-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* ------------------------------------------
   12. HEADER — announcement bar refinement
   (the red bar at top)
   ------------------------------------------ */
.header__tape {
  font-family: 'Montserrat', sans-serif;
}
.header__tape p,
.header__tape a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ------------------------------------------
   13. MOBILE NAV — spacing and readability
   ------------------------------------------ */
@media (max-width: 1024px) {
  .popup-navigation .menu__item a {
    font-size: 15px;
    letter-spacing: 0.04em;
    padding: 10px 0;
  }
}

/* ------------------------------------------
   14. FIX: Empty review block — hide if no reviews
   ------------------------------------------ */
.product-page-info #shopify-product-reviews:empty {
  display: none;
}
.tabs__btn[data-tab="reviews"]:has(+ .tabs__body .tabs-review:empty) {
  display: none;
}
/* Broader fallback for empty SPR widget */
#shopify-product-reviews .spr-container:empty {
  display: none;
}

/* ------------------------------------------
   15. WHOLESALE CTA BANNER
   ------------------------------------------ */
.pbo-wholesale-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 32px 0;
}
.pbo-wholesale-cta h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: #d4a843;
}
.pbo-wholesale-cta p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 18px;
}
.pbo-wholesale-cta a {
  display: inline-block;
  background: #d4a843;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.pbo-wholesale-cta a:hover {
  background: #e8c057;
  color: #fff;
}


.pbo-trust-strip__item svg {
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}


/* Free shipping bar - clean layout */
.free-shipping {
  background: #f0f0f0 !important;
  border-radius: 6px !important;
  padding: 10px 12px !important;
  overflow: visible !important;
}
.free-shipping__progress {
  background: #2a7a2a !important;
  border-radius: 6px !important;
  height: 6px !important;
  top: auto !important;
  bottom: 0 !important;
}
.free-shipping__text {
  color: #333 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  padding-bottom: 10px !important;
}

.free-shipping__text i svg,
.free-shipping__text i {
  color: #2a7a2a !important;
  fill: #2a7a2a !important;
  opacity: 1 !important;
}
/* Cart qty — match product page style */
.pbo-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
}
.pbo-qty-btn {
  background: #fff;
  color: #1a1a1a;
  border: none;
  width: 36px;
  height: 40px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pbo-qty-btn:hover {
  background: #f5f5f5;
}
.pbo-qty-input {
  width: 44px !important;
  height: 40px !important;
  border: none !important;
  border-left: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  -moz-appearance: textfield !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
}
.pbo-qty-input::-webkit-outer-spin-button,
.pbo-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Option 4 — Clean red accent, professional */
/* Option 4 — final */
/* Option 4 — Two equal red accent lines */
.header__line-top {
  border-bottom: 2px solid #c41230 !important;
}
#header {
  border-bottom: 2px solid #c41230 !important;
}
.header__nav .menu__item a {
  color: #1a1a1a !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
}
.header__nav .menu__item a:hover,
.header__nav .menu__item--active > a {
  color: #c41230 !important;
}