/* =====================================================
   BRECLO® LINEN BREECHES — linen-breeches.css
   Inherits: style.css (fonts, vars, navbar, footer)
   Fonts: Cormorant Garamond + Jost
   Background palette: warm cream #f2ede4
===================================================== */

/* ── Page-level background ── */
body {
  background: #f2ede4;
}

/* ══════════════════════════════════════
   PRODUCT HEADER
══════════════════════════════════════ */
.lb-header {
  background: #f2ede4;
  text-align: center;
  padding: 52px 24px 36px;
}
.lb-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* "Breclo®" italic serif line */
.lb-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #2b3a1e;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.lb-brand-line sup { font-size: 10px; vertical-align: super; }

/* Thin decorative lines flanking text */
.lb-line-ornament {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #8a7a5a;
  vertical-align: middle;
}

/* BRECLO® LINEN BREECHES – all caps bold */
.lb-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a2a12;
  margin: 8px 0 10px;
  line-height: 1.1;
  text-transform: uppercase;
}
.lb-main-title sup { font-size: 0.4em; vertical-align: super; }

/* PURE LINEN COLLECTION line */
.lb-collection-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a6a4a;
  margin-bottom: 18px;
}

/* Green pill badge */
.lb-badge {
  display: inline-block;
  background: #2b4a2b;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 3px;
  margin-bottom: 20px;
}

/* Sub headline */
.lb-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* Italic tagline */
.lb-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: #666;
  margin: 0;
}

/* ══════════════════════════════════════
   HERO IMAGE — full-width with border-radius
══════════════════════════════════════ */
.lb-hero-img-section {
  padding: 0 32px 28px;
  background: #f2ede4;
}
.lb-hero-img-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.lb-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ══════════════════════════════════════
   3-COLUMN VIEW SHOTS
══════════════════════════════════════ */
.lb-views-section {
  padding: 0 32px 10px;
  background: #f2ede4;
}
.lb-views-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lb-view-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-view-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}
.lb-view-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-top: 10px;
  text-align: center;
}

/* ══════════════════════════════════════
   4-COLUMN DETAIL CLOSE-UPS
══════════════════════════════════════ */
.lb-details-section {
  padding: 16px 32px 10px;
  background: #f2ede4;
}
.lb-details-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lb-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-detail-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.lb-detail-label {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-top: 9px;
  text-align: center;
}

/* ══════════════════════════════════════
   FEATURES + COLOURS 2-COL
══════════════════════════════════════ */
.lb-info-section {
  padding: 28px 32px 36px;
  background: #f2ede4;
}
.lb-info-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0 36px;
  align-items: start;
}

/* Feature list (left) */
.lb-features { padding-right: 20px; }
.lb-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}
.lb-feat-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #c8b898;
  background: #ece5d6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5a4a2a;
}

/* Vertical divider */
.lb-info-divider {
  width: 1px;
  background: #c8b898;
  min-height: 200px;
  margin: 10px 0;
  align-self: stretch;
}

/* Colours block (right) */
.lb-colours-block { padding-left: 20px; }
.lb-colours-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a6a4a;
  margin-bottom: 14px;
}
.lb-colour-swatches {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lb-swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.lb-swatch {
  width: 62px;
  height: 62px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.lb-swatch-item span {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: #555;
  text-align: center;
  line-height: 1.35;
}

/* MOQ badge */
.lb-moq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #b8a070;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3a2a10;
  background: #faf5ec;
  margin-bottom: 22px;
}
.lb-moq-badge svg { color: #7a5a2a; flex-shrink: 0; }

/* Breclo logo mark */
.lb-logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.lb-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #2b4a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lb-logo-b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #2b4a2b;
  line-height: 1;
}
.lb-logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lb-logo-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.lb-logo-brand sup { font-size: 9px; vertical-align: super; }
.lb-logo-sub-text {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7a6a4a;
}

/* ══════════════════════════════════════
   BOTTOM PROMISE BAR
══════════════════════════════════════ */
.lb-promise-section {
  background: #ebe4d8;
  border-top: 1px solid #d4c8b0;
}
.lb-promise-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.lb-promise-left,
.lb-promise-right {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.lb-promise-ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #c0aa80;
  background: #f0e8d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-promise-left strong,
.lb-promise-right strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2a1a08;
  margin-bottom: 6px;
}
.lb-promise-left p,
.lb-promise-right p {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Bottom strip */
.lb-tagline-strip {
  background: #2b4a2b;
  color: #c8d8b8;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 20px;
}

/* ══════════════════════════════════════
   RESPONSIVE — 960px (tablet)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .lb-hero-img { height: 380px; }
  .lb-views-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .lb-view-item img { height: 240px; }
  .lb-details-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lb-detail-item img { height: 170px; }
  .lb-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .lb-info-divider { width: 100%; height: 1px; min-height: 0; }
  .lb-features { padding-right: 0; }
  .lb-colours-block { padding-left: 0; }
  .lb-promise-grid { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 640px (mobile)
══════════════════════════════════════ */
@media (max-width: 640px) {
  .lb-header { padding: 36px 16px 28px; }
  .lb-main-title { font-size: 26px; letter-spacing: 1px; }
  .lb-sub-title { font-size: 20px; }
  .lb-brand-line { font-size: 15px; }
  .lb-line-ornament { width: 32px; }
  .lb-hero-img-section { padding: 0 12px 20px; }
  .lb-hero-img { height: 260px; }
  .lb-views-section { padding: 0 12px 8px; }
  .lb-views-grid { grid-template-columns: 1fr; gap: 12px; }
  .lb-view-item img { height: 280px; }
  .lb-details-section { padding: 12px 12px 8px; }
  .lb-details-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lb-detail-item img { height: 140px; }
  .lb-info-section { padding: 20px 16px 28px; }
  .lb-colour-swatches { gap: 12px; }
  .lb-swatch { width: 50px; height: 50px; }
  .lb-promise-grid { padding: 24px 16px; gap: 20px; }
  .lb-promise-left,
  .lb-promise-right { gap: 12px; }
  .lb-promise-ico { width: 42px; height: 42px; }
  .lb-logo-mark { flex-direction: column; align-items: flex-start; }
  .lb-tagline-strip { font-size: 9px; letter-spacing: 1.5px; padding: 11px 14px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 400px (small phones)
══════════════════════════════════════ */
@media (max-width: 400px) {
  .lb-main-title { font-size: 22px; }
  .lb-hero-img { height: 210px; }
  .lb-details-grid { grid-template-columns: 1fr 1fr; }
}

/* desktop */
.dropdown {
  position: relative;
}

.dropdown-menu.vertical {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
  z-index: 999;
}

/* hover (desktop) */
.dropdown:hover .dropdown-menu.vertical {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* mobile default hidden */
@media(max-width:768px){

  .dropdown-menu.vertical{
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;

    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.active .dropdown-menu.vertical{
    display: flex;
  }
}

/* default hide arrow */
.arrow{
  display:none;
  margin-left:6px;
  font-size:20px;
  transition:0.2s ease;
}

/* mobile only show arrow */
@media(max-width:768px){

  .arrow{
    display:inline-block;
  }

  /* rotate when active */
  .dropdown.active .arrow{
    transform:rotate(180deg);
  }
}