/** Shopify CDN: Minification failed

Line 830:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cust-bridal-apparel (INDEX:14) */
.cust-header-content {
  text-align: center;
  margin: 1rem 0 2rem 0;
  padding: 0 1rem;
}

.cust-header-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.cust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 0 1rem;
}

.cust-col4 {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the middle item (2nd item) the largest and center reference */
.cust-col4:nth-child(2) {
  order: 2;
  flex: 1 1 0;
  transform: scale(1.1);
  z-index: 2;
  position: relative;
}

/* First item - smaller, aligned to center */
.cust-col4:nth-child(1) {
  order: 1;
  flex: 1 1 0;
  transform: scale(0.9);
}

/* Third item - smaller, aligned to center */
.cust-col4:nth-child(3) {
  order: 3;
  flex: 1 1 0;
  transform: scale(0.9);
}

.img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.img-box img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.overlay-box01 {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

.overlay-box01:hover {
  transform: translateY(-5px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .cust-header-content {
    margin: 0.75rem 0 1.5rem 0;
  }

  .cust-header-content p {
    font-size: 1rem;
  }

  .cust-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cust-col4:nth-child(1),
  .cust-col4:nth-child(2),
  .cust-col4:nth-child(3) {
    transform: none;
    order: initial;
  }
}

@media (max-width: 480px) {
  .cust-row {
    gap: 1rem;
  }
}
/* END_SECTION:cust-bridal-apparel */

/* START_SECTION:customers-speak (INDEX:21) */
/* Platform Reviews Section */
.platform-reviews-section {
  margin-top: 3rem;
  padding: 0 1rem;
}

.platform-reviews-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.platform-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 620px;
  flex: 1;
  max-width: 720px;
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.platform-icon {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.4rem;
  color: white;
  flex-shrink: 0;
}

.etsy-icon {
  background-color: #F56500;
}

.amazon-icon {
  background-color: #000000;
}

.platform-content {
  flex: 1;
}

.platform-name {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
  color: #333;
}

/* Fixed badge styling to prevent conflicts */
.platform-badge-wrapper {
  display: inline-block;
}

.platform-badge {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  padding: 0;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline !important;
  width: auto !important;
  height: auto !important;
}

.etsy-badge {
  color: #F56500;
  font-weight: 500;
}

/* Popup Modal Styles */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 9998;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  width: 90vw;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}



.popup-image-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.popup-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}



/* Button styling for popup trigger */
.etsy-popup-trigger {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.etsy-popup-trigger:hover {
  background: #e9ecef;
  color: #333;
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  color: #FFD700;
  font-size: 1.4rem;
}

.rating-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.platform-action {
  flex-shrink: 0;
}

.action-button {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  transition: all 0.2s ease;
}

.platform-card:hover .action-button {
  background: #e9ecef;
  color: #333;
}

.platform-bottom-text {
  text-align: center;
  margin-top: 2rem;
}

.platform-bottom-text p {
  font-size: 1.3rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Large Desktop - Ensure horizontal layout */
@media (min-width: 1400px) {
  .platform-reviews-container {
    flex-wrap: nowrap;
    max-width: 1500px;
  }

  .platform-card {
    flex: 0 1 auto;
  }
}

/* Large Tablet/Small Desktop - Handle medium-large screens */
@media (max-width: 1399px) and (min-width: 1025px) {
  .platform-reviews-container {
    max-width: 1300px;
    gap: 1.5rem;
  }

  .platform-card {
    min-width: 550px;
    max-width: 620px;
    padding: 2.2rem;
  }

  .platform-icon {
    width: 75px;
    height: 75px;
    font-size: 2.1rem;
  }

  .platform-name {
    font-size: 1.7rem;
  }
}

/* Tablet Responsive - Handle medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
  .platform-reviews-container {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }

  .platform-card {
    min-width: auto;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
  }

  .platform-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .platform-name {
    font-size: 1.6rem;
  }

  .star {
    font-size: 1.2rem;
  }

  .rating-number {
    font-size: 1.1rem;
  }

  .action-button {
    padding: 0.7rem 1.4rem;
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .platform-reviews-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .platform-card {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 1.8rem;
  }

  .platform-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .platform-name {
    font-size: 1.4rem;
  }

  .star {
    font-size: 1.1rem;
  }

  .rating-number {
    font-size: 1rem;
  }

  .action-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .platform-reviews-section {
    margin-top: 2rem;
  }

  .platform-bottom-text {
    margin-top: 1.5rem;
  }

  .platform-bottom-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .platform-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .platform-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .platform-name {
    font-size: 1.3rem;
  }

  .star {
    font-size: 1rem;
  }

  .rating-number {
    font-size: 0.95rem;
  }

  .action-button {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .etsy-popup-trigger {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  /* Mobile popup adjustments */
  .popup-content {
    padding: 1rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    width: calc(100vw - 2rem);
    height: auto;
  }

  .popup-image-container {
    margin-bottom: 0;
  }

  .popup-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
}

/* Additional mobile-specific popup styles */
@media (max-width: 480px) {
  .popup-content {
    padding: 1rem;
    margin: 0.5rem;
    max-width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    width: calc(100vw - 1rem);
    height: auto;
    border-radius: 12px;
  }

  .popup-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
  }
}
/* END_SECTION:customers-speak */

/* START_SECTION:pr-footer (INDEX:66) */
/* ── Design tokens (self-contained so this section works standalone) ── */
.pr-ftr-wrap {
  --pr-black:  #000;
  --pr-white:  #fff;
  --pr-off:    #f5f4f2;
  --pr-stone:  #e8e4de;
  --pr-cream:  #f9f5ef;
  --pr-gold:   #9e7d59;
  --pr-med:    #444;
  --pr-light:  #888;
  --pr-border: #d0cac3;
  --pr-serif:  'Cormorant Garamond', Georgia, serif;
  --pr-sans:   'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  font-family: var(--pr-sans);
  -webkit-font-smoothing: antialiased;
}
.pr-ftr-wrap *,
.pr-ftr-wrap *::before,
.pr-ftr-wrap *::after {
  box-sizing: border-box;
}
.pr-ftr-wrap a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════
   FOOTER SHELL
═══════════════════════════════════════ */
.pr-ftr {
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
}

/* ═══════════════════════════════════════
   NAV GRID (5 columns)
═══════════════════════════════════════ */
.pr-ftr-nav {
  padding: 52px 56px 48px;
  border-bottom: 1px solid var(--pr-border);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.5fr;
  gap: 44px;
  align-items: start;
}

/* ── Brand column ── */
.pr-ftr-logo {
  display: block;
  margin-bottom: 16px;
}
.pr-ftr-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.pr-ftr-desc {
  font-size: 12px;
  color: var(--pr-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 220px;
  letter-spacing: .02em;
}
.pr-ftr-loc {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pr-light);
  font-weight: 400;
}

/* ── Link columns ── */
.pr-ftr-ch {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--pr-black);
  margin-bottom: 20px;
  display: block;
}
.pr-ftr-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}
.pr-ftr-links a {
  font-size: 12px;
  color: var(--pr-light);
  font-weight: 300;
  transition: color .15s;
}
.pr-ftr-links a:hover { color: var(--pr-black); }

/* ── Newsletter mini-form column ── */
.pr-ftr-nl-col {}
.pr-ftr-nl-kicker {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pr-black);
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}
.pr-ftr-nl-h {
  font-family: var(--pr-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pr-ftr-nl-sub {
  font-size: 11px;
  color: var(--pr-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.pr-ftr-nl-field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--pr-border);
  margin-bottom: 10px;
}
.pr-ftr-nl-field:focus-within { border-bottom-color: var(--pr-black); }
.pr-ftr-nl-in {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 11px 0;
  font-size: 11px;
  color: var(--pr-black);
  font-weight: 300;
  font-family: var(--pr-sans);
  letter-spacing: .05em;
  caret-color: var(--pr-black);
}
.pr-ftr-nl-in::placeholder {
  color: var(--pr-light);
  letter-spacing: .1em;
  font-size: 10px;
  text-transform: uppercase;
}
.pr-ftr-nl-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 0 8px;
  font-size: 14px;
  color: var(--pr-black);
  transition: opacity .2s;
  font-family: var(--pr-sans);
  line-height: 1;
}
.pr-ftr-nl-btn:hover { opacity: .45; }
.pr-ftr-nl-disc {
  font-size: 10px;
  color: var(--pr-light);
  font-weight: 300;
  line-height: 1.6;
}
.pr-ftr-nl-disc a {
  color: var(--pr-light);
  border-bottom: 1px solid var(--pr-border);
}
.pr-ftr-nl-success {
  font-size: 12px;
  color: var(--pr-gold);
  padding: 10px 0;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   BOTTOM BAR
═══════════════════════════════════════ */
.pr-ftr-bot {
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Copyright */
.pr-ftr-copy {
  font-size: 10px;
  color: var(--pr-light);
  letter-spacing: .06em;
  font-weight: 300;
  margin: 0;
}

/* Social wrap — centred column */
.pr-ftr-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pr-ftr-social-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pr-light);
  font-weight: 400;
  margin: 0;
}
.pr-ftr-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pr-ftr-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--pr-light);
  transition: color .15s;
}
.pr-ftr-social-link:hover { color: var(--pr-black); }
.pr-ftr-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* Payment badges */
.pr-ftr-pays {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.pr-ftr-pay {
  width: 34px;
  height: 21px;
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pr-light);
  font-family: var(--pr-sans);
}
/* Shopify native payment SVG icons */
.pr-ftr-pays .icon--full-color {
  height: 21px;
  width: auto;
}

/* ═══════════════════════════════════════
   MOBILE  ≤ 768 px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .pr-ftr-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 20px;
  }
  .pr-ftr-brand    { grid-column: 1 / -1; }
  .pr-ftr-nl-col   { grid-column: 1 / -1; border-top: 1px solid var(--pr-border); padding-top: 28px; }
  .pr-ftr-bot      { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .pr-ftr-social-wrap { align-items: flex-start; }
}
/* END_SECTION:pr-footer */

/* START_SECTION:pr-nav-v7 (INDEX:69) */
/* ── Font import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lato:wght@300;400&display=swap');

/* ── Tokens ── */
.pr-nav-root {
  --pr-black:    #000;
  --pr-white:    #fff;
  --pr-off:      #f5f4f2;
  --pr-stone:    #e8e4de;
  --pr-cream:    #f9f5ef;
  --pr-gold:     #9e7d59;
  --pr-med:      #444;
  --pr-light:    #888;
  --pr-border:   #d0cac3;
  --pr-serif:    'Cormorant Garamond', Georgia, serif;
  --pr-sans:     'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --hdr-h:       72px;
  --ease-out:    cubic-bezier(.25,.46,.45,.94);
  --ease-in-out: cubic-bezier(.45,0,.55,1);
}
.pr-nav-root *, .pr-nav-root *::before, .pr-nav-root *::after { box-sizing: border-box; }
.pr-nav-root a { text-decoration: none; color: inherit; }
.pr-nav-root button { cursor: pointer; font-family: var(--pr-sans); }
.pr-nav-root ul, .pr-nav-root li { list-style: none; margin: 0; padding: 0; }
.pr-nav-root img { display: block; max-width: 100%; }


/* ═══════════════════════════════════════════════════
   HEADER SHELL
═══════════════════════════════════════════════════ */
.pr-hdr {
  position: relative; /* JS switches to fixed + spacer when sticky */
  left: 0; right: 0;
  z-index: 500;
  height: var(--hdr-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 44px;
  background: var(--pr-black);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
  transition: background .32s var(--ease-out),
              border-color .32s var(--ease-out),
              box-shadow .32s var(--ease-out);
  --hc: var(--pr-white); /* white text on black */
}

/* Hover — black → white transition (same animation as scroll-sticky) */
.pr-hdr:hover:not(.is-sticky) {
  background: var(--pr-white);
  border-bottom-color: var(--pr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  --hc: var(--pr-black);
}

/* Sticky — JS adds this; position:fixed + white background */
.pr-hdr.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--pr-white);
  border-bottom-color: var(--pr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  --hc: var(--pr-black);
  z-index: 500;
}

/* All colour-inheriting children */
.pr-hdr-left, .pr-hdr-logo, .pr-hdr-right,
.pr-hdr-item, .pr-hdr-contact, .pr-hdr-icon,
.pr-nav-link, .pr-search-inline-input {
  color: var(--hc);
  transition: color .32s var(--ease-out);
}


/* ═══════════════════════════════════════════════════
   LEFT SIDE — hamburger + search
═══════════════════════════════════════════════════ */
.pr-hdr-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Shared button style — no default appearance */
.pr-hdr-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 400; font-family: var(--pr-sans);
  background: none !important; border: none !important;
  outline: none !important; box-shadow: none !important;
  -webkit-appearance: none; appearance: none;
  padding: 0; white-space: nowrap; line-height: 1;
  border-radius: 0 !important;
}
.pr-hdr-item:hover { opacity: .65; }

/* Hamburger icon */
.pr-icon-menu {
  display: flex; flex-direction: column;
  gap: 4.5px; width: 16px; flex-shrink: 0;
}
.pr-icon-menu span {
  display: block; height: 1px; width: 100%;
  background: currentColor;
  transition: transform .3s var(--ease-out), opacity .3s;
}

/* Search icon (CSS-only magnifier) */
.pr-icon-search {
  position: relative; width: 14px; height: 14px; flex-shrink: 0;
}
.pr-icon-search::before {
  content: ''; position: absolute;
  width: 9px; height: 9px; border: 1px solid currentColor;
  border-radius: 50%; top: 0; left: 0;
}
.pr-icon-search::after {
  content: ''; position: absolute; width: 4px; height: 1px;
  background: currentColor; bottom: 1px; right: 0;
  transform: rotate(45deg); transform-origin: right center;
}

/* Item label — hidden on small screens */
.pr-hdr-item-lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }


/* ═══════════════════════════════════════════════════
   CENTRE — Logo
═══════════════════════════════════════════════════ */
.pr-hdr-logo {
  display: block; text-align: center; padding: 0 20px;
}
.pr-hdr-logo img {
  height: 48px; width: auto; display: block; margin: 0 auto;
  transition: filter .3s var(--ease-out);
}
/* Invert to white when over dark hero (transparent state) */
/* Logo inverted (white) when on black background; natural when white */
.pr-hdr:not(.is-sticky):not(:hover) .pr-hdr-logo img {
  filter: brightness(0) invert(1);
}


/* ═══════════════════════════════════════════════════
   RIGHT SIDE — contact · wishlist · account · cart
═══════════════════════════════════════════════════ */
.pr-hdr-right {
  display: flex; align-items: center;
  gap: 20px; justify-content: flex-end;
}

.pr-hdr-contact {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 400; font-family: var(--pr-sans);
  background: none; border: none; padding: 0; outline: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.pr-hdr-contact:hover { opacity: .6; }

.pr-hdr-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; position: relative;
  background: none; border: none; padding: 0;
  transition: opacity .2s;
}
.pr-hdr-icon:hover { opacity: .6; }
.pr-hdr-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; display: block; }

/* Cart count badge */
.pr-cart-badge {
  position: absolute; top: -5px; right: -6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pr-gold); color: var(--pr-white);
  font-size: 8px; font-weight: 400; font-family: var(--pr-sans);
  display: flex; align-items: center; justify-content: center;
  line-height: 1; opacity: 0; transform: scale(.6);
  transition: opacity .25s, transform .25s var(--ease-out);
}
.pr-cart-badge.visible { opacity: 1; transform: scale(1); }


/* ═══════════════════════════════════════════════════
   DESKTOP MEGA-MENU BAR
   (sits below logo row, visible on ≥1024px)
═══════════════════════════════════════════════════ */
.pr-mega-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 36px;
  padding-bottom: 14px;
  pointer-events: none; /* children re-enable */
}

.pr-nav-item {
  position: static; /* dropdown positions relative to .pr-hdr */
  pointer-events: all;
}

/* Top-level nav link */
.pr-nav-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 400; font-family: var(--pr-sans);
  padding: 4px 0; background: none; border: none; outline: none;
  white-space: nowrap; cursor: pointer;
  position: relative;
}
/* Animated underline on hover */
.pr-nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .28s var(--ease-out);
}
.pr-nav-link:hover::after,
.pr-nav-item.is-open .pr-nav-link::after { width: 100%; }

/* Chevron arrow */
.pr-nav-chevron {
  width: 8px; height: 8px; fill: none;
  stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}
.pr-nav-item.is-open .pr-nav-chevron { transform: rotate(180deg); }

/* Direct link (no dropdown, no chevron) */
.pr-nav-link--direct { gap: 0; }


/* ═══════════════════════════════════════════════════
   MEGA DROPDOWN PANEL
═══════════════════════════════════════════════════ */
.pr-dropdown {
  position: fixed;
  top: var(--pr-drop-top, var(--hdr-h));
  left: 0; right: 0;
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
  padding: 48px 80px 52px;
  display: none;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  gap: 0 48px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  pointer-events: none;
  z-index: 499;
}
/* Visible state */
.pr-dropdown.is-open {
  display: grid;
}
.pr-dropdown.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Column heading */
.pr-drop-heading {
  font-family: var(--pr-sans);
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--pr-light); font-weight: 400;
  margin-bottom: 18px; display: block;
}

/* Column links */
.pr-drop-col ul { display: flex; flex-direction: column; gap: 0; }
.pr-drop-link {
  display: block;
  font-family: var(--pr-serif);
  font-size: 20px; font-weight: 300;
  color: var(--pr-black); line-height: 1;
  padding: 9px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s, transform .18s var(--ease-out);
  position: relative; overflow: hidden;
}
.pr-drop-link::before {
  content: ''; position: absolute;
  left: -16px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 1px;
  background: var(--pr-gold);
  transition: left .22s var(--ease-out), opacity .22s;
  opacity: 0;
}
.pr-drop-link:hover {
  color: var(--pr-gold);
  transform: translateX(10px);
}
.pr-drop-link:hover::before { left: 0; opacity: 1; }

/* Sub-label (italic descriptor under link) */
.pr-drop-sub {
  font-family: var(--pr-sans);
  font-size: 10px; color: var(--pr-light);
  font-weight: 300; letter-spacing: .05em;
  display: block; margin-top: 2px;
}

/* Featured panel (last column) */
.pr-drop-featured {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--pr-border);
  padding-left: 44px;
}
.pr-drop-feat-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  margin-bottom: 16px;
  filter: brightness(.95);
  transition: filter .4s var(--ease-out);
}
.pr-drop-feat-img:hover { filter: brightness(1); }
.pr-drop-feat-label {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--pr-light); font-family: var(--pr-sans); margin-bottom: 6px;
}
.pr-drop-feat-title {
  font-family: var(--pr-serif); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--pr-black); line-height: 1.2;
  margin-bottom: 14px;
}
.pr-drop-feat-cta {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  font-family: var(--pr-sans); font-weight: 400;
  color: var(--pr-black); border-bottom: 1px solid var(--pr-black);
  padding-bottom: 1px; display: inline-block;
  transition: opacity .2s;
}
.pr-drop-feat-cta:hover { opacity: .55; }

/* Staggered link entrance animation */
.pr-dropdown.is-visible .pr-drop-link {
  animation: prDropIn .32s var(--ease-out) both;
}
@keyframes prDropIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Stagger each link */
.pr-drop-col:nth-child(1) .pr-drop-link { animation-delay: calc(var(--i, 0) * 28ms + 0ms); }
.pr-drop-col:nth-child(2) .pr-drop-link { animation-delay: calc(var(--i, 0) * 28ms + 50ms); }
.pr-drop-col:nth-child(3) .pr-drop-link { animation-delay: calc(var(--i, 0) * 28ms + 100ms); }
.pr-drop-col:nth-child(4) .pr-drop-link { animation-delay: calc(var(--i, 0) * 28ms + 150ms); }


/* ═══════════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════════ */
/* Overlay */
.pr-mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .38s var(--ease-out);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.pr-mob-overlay.is-open {
  opacity: 1; pointer-events: all;
}

/* Drawer panel */
.pr-mob-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--pr-white);
  z-index: 700;
  transform: translateX(-100%);
  transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 6px 0 40px rgba(0,0,0,.15);
}
.pr-mob-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.pr-mob-drawer-hdr {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
  border-bottom: 1px solid var(--pr-border);
  flex-shrink: 0;
}
.pr-mob-drawer-logo img {
  height: 34px; width: auto;
}
.pr-mob-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0;
  color: var(--pr-black);
  transition: opacity .2s;
}
.pr-mob-close:hover { opacity: .5; }
.pr-mob-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }

/* Scroll area */
.pr-mob-scroll {
  flex: 1; overflow-y: auto; overscroll-behavior: contain;
  padding: 10px 0 40px;
  -webkit-overflow-scrolling: touch;
}

/* Top-level drawer item */
.pr-mob-item {
  border-bottom: 1px solid var(--pr-border);
}

/* Trigger button */
.pr-mob-trigger {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; padding: 16px 28px;
  background: none; border: none;
  font-family: var(--pr-serif);
  font-size: 26px; font-weight: 300; font-style: italic;
  color: var(--pr-black); text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.pr-mob-trigger:hover { color: var(--pr-gold); }

/* Chevron in drawer */
.pr-mob-chev {
  width: 16px; height: 16px; fill: none;
  stroke: var(--pr-light); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out), stroke .2s;
}
.pr-mob-trigger:hover .pr-mob-chev { stroke: var(--pr-gold); }
.pr-mob-item.is-open .pr-mob-chev { transform: rotate(90deg); }

/* Sub-menu panel */
.pr-mob-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-out);
}
.pr-mob-item.is-open .pr-mob-sub {
  grid-template-rows: 1fr;
}
.pr-mob-sub-inner { overflow: hidden; }

/* Sub-links */
.pr-mob-sub-links {
  padding: 4px 0 16px 28px;
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--pr-border);
  margin: 0 28px 0 40px;
}
.pr-mob-sub-link {
  font-family: var(--pr-sans);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 300; color: var(--pr-med);
  padding: 10px 0;
  border-bottom: 1px solid rgba(208,202,195,.4);
  display: flex; align-items: center; gap: 8px;
  transition: color .18s, padding-left .18s var(--ease-out);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), color .18s;
}
.pr-mob-item.is-open .pr-mob-sub-link {
  opacity: 1; transform: translateX(0);
}
/* Stagger each sub-link */
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(1) { transition-delay: 30ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(2) { transition-delay: 55ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(3) { transition-delay: 80ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(4) { transition-delay: 105ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(5) { transition-delay: 130ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(6) { transition-delay: 155ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(7) { transition-delay: 180ms; }
.pr-mob-item.is-open .pr-mob-sub-link:nth-child(8) { transition-delay: 205ms; }
.pr-mob-sub-link:last-child { border-bottom: none; }
.pr-mob-sub-link:hover { color: var(--pr-gold); padding-left: 6px; }

/* Direct mobile link (no sub-menu) */
.pr-mob-direct {
  display: block; padding: 16px 28px;
  font-family: var(--pr-serif);
  font-size: 26px; font-weight: 300; font-style: italic;
  color: var(--pr-black);
  transition: color .2s;
}
.pr-mob-direct:hover { color: var(--pr-gold); }

/* Drawer footer */
.pr-mob-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--pr-border);
  display: flex; flex-direction: column; gap: 12px;
  flex-shrink: 0;
}
.pr-mob-footer-link {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--pr-light); font-family: var(--pr-sans); font-weight: 400;
  transition: color .2s;
}
.pr-mob-footer-link:hover { color: var(--pr-black); }


/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .pr-mega-bar { display: none; }
  .pr-hdr { height: 62px; padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .pr-hdr-logo { padding: 0 14px; }
  .pr-hdr-logo img { height: 36px; }
  .pr-hdr-contact { display: none; }
  .pr-hdr-item-lbl { display: none; }
  .pr-hdr-right { gap: 14px; }
}

@media (min-width: 1024px) {
  /* Header is exactly icon-row height — no whitespace */
  .pr-hdr { height: var(--hdr-h); align-content: center; padding-top: 0; }

  /* ── Mega bar: proper dropdown ─────────────────────────────
     Detaches from inside the header, hangs at top:100% (below it).
     Default closed: max-height 0 + opacity 0 = invisible & zero-height.
     .menu-open: expands to 70px (enough for link row + padding).
  ─────────────────────────────────────────────────────────── */
  .pr-mega-bar {
    /* Reposition: below the header, not at its bottom edge */
    position: absolute;
    top: 100%; bottom: auto;
    left: 0; right: 0;
    /* Own background matching header default (black) */
    background: var(--pr-black);
    border-bottom: 1px solid rgba(255,255,255,.12);
    /* Slide-down animation */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .38s var(--ease-out),
                opacity .28s var(--ease-out),
                background .32s var(--ease-out),
                border-color .32s var(--ease-out);
  }
  /* Open state — slides down */
  .pr-hdr.menu-open .pr-mega-bar {
    max-height: 70px;
    opacity: 1;
    pointer-events: all;
  }
  /* Mega bar tracks header background when sticky or hovered */
  .pr-hdr.is-sticky .pr-mega-bar,
  .pr-hdr:hover:not(.is-sticky) .pr-mega-bar {
    background: var(--pr-white);
    border-bottom-color: var(--pr-border);
  }
  /* Inline search wider on desktop */
  .pr-search-inline.is-open { width: 260px; }
}

/* Sale badge */
.pr-nav-link--sale { color: #b5481a; }
.pr-nav-link--sale::after { background: #b5481a; }
.pr-hdr.is-sticky .pr-nav-link--sale { color: #b5481a; }

/* ═══════════════════════════════════════════════════
   INLINE SEARCH — expands to the right of the search button
═══════════════════════════════════════════════════ */
.pr-search-inline {
  display: flex; align-items: center;
  width: 0; overflow: hidden; opacity: 0;
  transition: width .38s var(--ease-out), opacity .28s var(--ease-out);
}
.pr-search-inline.is-open { width: 200px; opacity: 1; }
.pr-search-inline-input {
  width: 100%; min-width: 0;
  font-size: 11px; letter-spacing: .12em;
  font-family: var(--pr-sans); font-weight: 300;
  border: none; border-bottom: 1px solid currentColor;
  background: transparent; outline: none;
  padding: 3px 4px 4px 0;
  white-space: nowrap;
}
.pr-search-inline-input::placeholder { opacity: .45; }
/* END_SECTION:pr-nav-v7 */