
:root {
  --burgundy: #42131E;
  --dark: #1a1a1a;
  --cream: #F8F2EC;
  --light-cream: #FAF7F2;
  --gray-text: #878787;
  --border: #DEDEDE;
}

.flash-message {
  background: #f3f0ee;
  border-bottom: 1px solid var(--border);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 24px;
  text-align: center;
}

* { box-sizing: border-box; }

@font-face {
    font-family: 'Akzidenz Grotesk Pro regular';
    src: url('fonts/akzidenzgroteskpro_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'F37 Bergman Bold';
    src: url('fonts/F37 Bergman Bold.woff2') format('woff2'),
         url('fonts/F37 Bergman Bold.ttf') format('truetype'),
         url('fonts/F37 Bergman Bold.otf') format('opentype');
         font-weight: 700;font-style: normal;font-display: swap;}
         
@font-face {
    font-family: "F37 Bergman";
    src: url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.eot");
    src: url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/a6423273b08a534aae8fad1407f8ee46.svg#F37 Bergman Thin")format("svg");
}

a{text-decoration:none;}
    body { overflow-x: hidden; }
    .hero-section {
      position: relative;
      min-height: calc(100vh - 60px - 52px - 280px);
      background: #f5e8c0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('assets/home-bg.png');
      background-size: cover;
      background-position: center center;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 150px 20px;
    }
    .hero-content h1 {
      font-family: 'Akzidenz Grotesk Pro regular';
      font-weight: 600;
      font-size: 45px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero-content p {
      font-family: 'Akzidenz Grotesk Pro regular';
      font-weight: 300;
      font-size: 20px;
      color: #333;
      max-width: 340px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .get-started-btn {
      display: inline-block;
      background: var(--dark);
      color: #fff;
      font-family: 'Akzidenz Grotesk Pro regular';
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 16px 44px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .get-started-btn:hover { background: var(--burgundy); color: #fff; }
body {
  font-family: 'Akzidenz Grotesk Pro regular';
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.checkout{color:#202020; font-size: 18px;}
/* ─── TOP NAV ─── */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: relative;
  min-height: 60px;
}
.top-nav .back-btn {
  position: absolute;
  left: 24px;
  font-size: 22px;
  color: #333;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}
.top-nav .page-title {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin: 0;
}

/* ─── MAIN CONTENT ─── */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 580px;
}

/* ─── PROGRESS BAR AREA ─── */
/* .bottom-bar {
  display: flex;
  align-items: stretch;
  height: 52px;
  background: #fff;
}
.progress-section {
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-width: 160px;
} */
.next-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  background: #fff;
}
/* .next-btn {
  font-size: 22px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
} */

.bottom-bar{
    /* position:fixed; */
    bottom:0;
    left:0;
    width:100%;
    height:60px;
    display:flex;
    align-items:center;
    background:#f5f5f5;
    border-top: 1px solid var(--border);
}

.progress-track{
    position:relative;
    height:100%;
    width: 85%;
    background:#fff;
    overflow:hidden;
}

.progress-fill{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:0;
    background:#1d1d1d;
    transition:width .4s ease;
}

.progress-text{
    position:absolute;
    top:50%;
    left:40px;
    transform:translateY(-50%);
    color:#ffffff;
    font-size:16px;
    z-index:2;
}

.next-section{
    width:15%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content: flex-end;
    background:#fff;
}

.next-btn{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    text-decoration:none;
    color:#888;
    font-size:34px;
    line-height:1;
    transition:.3s;
}

.next-btn:hover{
    color:#000;
}



/* ─── FOOTER ─── */
.site-footer {
  background: var(--cream);
  padding: 48px 40px 0;
}
.footer-logo {
  width: 150px;
  height: 64px;
}
.footer-logo svg {
  width: 100%;
  height: 100%;
}
.footer-nav-title {
   font-family: "F37 Bergman bold";
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}
.footer-nav-links a {
  display: block;
  font-family: "F37 Bergman bold";
  font-size: 10px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 5px;
  line-height: 1.6;
}
.footer-nav-links a:hover { color: var(--burgundy); }
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 14px 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 10px;
  color: #888;
  margin: 0;
  font-weight: 300;
}
.footer-bottom a {
  font-size: 10px;
  color: #888;
  text-decoration: none;
  margin-left: 14px;
}
.footer-bottom a:hover { color: var(--burgundy); }
.social-icons a {
  color: #555;
  font-size: 15px;
  margin-left: 10px;
  text-decoration: none;
}
.social-icons a:hover { color: var(--burgundy); }

/* ─── CHECKOUT BAR ─── */
.checkout-bar {
  display: flex;
  align-items: stretch;
  height: 52px;
}
.checkout-bar .progress-section { flex: none; }
.checkout-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  background: #fff;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.checkout-right .checkout-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─── FORM INPUTS ─── */
.sawai-input {
  border: none;
  border-bottom: 1px solid #bbb;
  background: transparent;
  width: 100%;
  padding: 10px 0 8px;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 13px;
  font-weight: 300;
  color: #333;
  outline: none;
}
.sawai-input::placeholder { color: #aaa; }
.sawai-input:focus { border-bottom-color: #555; }

/* ─── DROPDOWN SELECT ─── */
.sawai-select-wrapper {
  position: relative;
  border: 1px solid #bbb;
  background: #fff;
}
.sawai-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 13px;
  font-weight: 300;
  color: #555;
  cursor: pointer;
  outline: none;
}
.sawai-select-wrapper::after {
  content: '∨';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #555;
  pointer-events: none;
}

/* ─── TAGS ─── */
.tag-list { list-style: none; padding: 0; margin: 6px 0 0; min-height: 0; }
.tag-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 11px;
  font-weight: 300;
  color: #444;
  padding: 2px 0;
  line-height: 1.35;
}
.tag-list li button {
  background: none;
  border: none;
  padding: 0 0 0 6px;
  color: #888;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}

/* ─── QUANTITY CONTROL ─── */
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bbb;
  gap: 0;
}
.qty-ctrl button {
  background: none;
  border: none;
  width: 28px;
  height: 26px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  line-height: 1;
}
.qty-ctrl span {
  font-size: 13px;
  min-width: 22px;
  text-align: center;
}

/* ─── CARD HOVER ─── */
.explore-card {
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.2s;
  text-align: center;
  padding: 40px 24px 32px;
  background: #fff;
  height: 100%;
}
.explore-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.explore-card img { max-height: 130px; object-fit: contain; margin-bottom: 24px; }
.explore-card h3 {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-weight: 400;
  font-size: 22px;
  text-decoration:none;
  color:#000000;
  margin-bottom: 8px;
}
.explore-card p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-text);
  margin: 0;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── FAMILY GRID ITEM ─── */
.family-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid transparent;
  height: 100%;
}
.family-item:hover, .family-item.active {
  background: var(--cream);
  border-color: #e0d8cc;
}
.family-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.family-item .name {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 17px;
  font-weight: 400;
  color: #1a1a1a;
}

/* ─── PRODUCT CARD ─── */
.fragrance-grid .fragrance-col {
  display: flex;
  margin-bottom: 4px;
}
.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px 6px 8px;
}
.product-card-img-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.product-card img,
.product-card .perfume-img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
}
.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.product-card .p-name {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 4px;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .p-meta {
  font-size: 10px;
  color: var(--gray-text);
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-bottom: 4px;
  gap: 4px;
}
.add-to-cart-btn {
  display: block;
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 7px 4px;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: auto;
  min-height: 30px;
  line-height: 1.2;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--burgundy); }
.add-to-cart-btn.in-selection { background: var(--burgundy); }

/* ─── SELECTION BAR ─── */
.selection-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.selection-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 100%;
}
.selection-label {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
}
.selection-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.selection-link {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.selection-link:hover { color: var(--burgundy); }
.selection-continue {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── CARD EXTRAS ─── */
.product-card .p-desc {
  font-size: 9px;
  font-weight: 300;
  color: var(--gray-text);
  margin: 0 2px 4px;
  line-height: 1.35;
  min-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .p-desc-placeholder {
  visibility: hidden;
}
.view-details-link {
  display: block;
  font-size: 9px;
  font-weight: 300;
  color: #555;
  margin-bottom: 6px;
  margin-top: auto;
  text-decoration: underline;
}
.view-details-link:hover { color: var(--burgundy); }
.card-detail-link {
  color: #1a1a1a;
  text-decoration: none;
}
.card-detail-link:hover { color: var(--burgundy); }
.no-results, .loading-text {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-text);
  text-align: center;
  padding: 24px 12px;
  margin: 0;
}
.fragrance-pagination .page-link {
  font-size: 12px;
  color: #333;
}
.fragrance-pagination .page-item.active .page-link {
  background: var(--dark);
  border-color: var(--dark);
}
.clear-filters-btn {
  background: none;
  border: 1px solid #bbb;
  color: #555;
  font-size: 12px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: 'Akzidenz Grotesk Pro regular';
}
.clear-filters-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* ─── MULTI-SELECT NOTES ─── */
.multi-select {
  position: relative;
  border: 1px solid #bbb;
  background: #fff;
  margin-bottom: 8px;
}
.multi-select .ms-toggle {
  appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  padding: 10px 36px 10px 12px;
  text-align: left;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 12px;
  font-weight: 300;
  color: #555;
  cursor: pointer;
}
.multi-select::after {
  content: '∨';
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 12px;
  color: #555;
  pointer-events: none;
}
.multi-select .ms-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 20;
  background: #fff;
  border: 1px solid #bbb;
  border-top: none;
  max-height: 220px;
  overflow-y: auto;
}
.multi-select.open .ms-panel { display: block; }
.ms-search-wrap { padding: 8px; border-bottom: 1px solid #eee; }
.ms-search {
  width: 100%;
  border: 1px solid #ddd;
  padding: 6px 8px;
  font-size: 12px;
  outline: none;
}
.ms-options { list-style: none; margin: 0; padding: 6px 0; }
.ms-options li { padding: 4px 10px; }
.ms-options li label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
  margin: 0;
}
.ms-options li:hover { background: var(--light-cream); }
.border-end-md { border-right: 1px solid var(--border); }
@media (max-width: 767px) {
  .border-end-md { border-right: none; }
  .selection-bar { padding: 10px 16px; }
}

/* ─── SIDEBAR FILTERS ─── */
.filter-sidebar { font-size: 12px; }
.filter-group { margin-bottom: 14px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group-title {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.filter-area-header .filter-group-title {
  font-size: 11px;
  margin-bottom: 0;
}
.filter-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 300;
  color: #444;
  line-height: 1.35;
}
.filter-item span {
  flex: 1;
  min-width: 0;
}
.filter-item input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: var(--burgundy);
  cursor: pointer;
}
.pick-results-count {
  font-family: 'Akzidenz Grotesk Pro regular';
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-text);
  margin-bottom: 16px;
}

/* ─── PYRAMID ─── */
.pyramid-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.pyramid-svg { width: 100%; height: auto; }

/* ─── RESULT SIDEBAR ─── */
.result-sidebar {
  border-left: 1px solid var(--border);
  padding: 20px;
}
.result-sidebar .sidebar-title {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.similar-item { margin-bottom: 24px; text-align: center; }
.similar-item img { max-width: 80px; object-fit: contain; margin-bottom: 6px; }
.similar-item p {
  font-size: 12px;
  font-weight: 300;
  color: #333;
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .top-nav .page-title { font-size: 13px; }
  .site-footer { padding: 32px 20px 0; }
  .footer-bottom { padding: 12px 20px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .explore-card { padding: 28px 16px 24px; }
  .result-sidebar { border-left: none; border-top: 1px solid var(--border); margin-top: 24px; }
  .family-item { padding: 14px 10px; }
  .family-item img { width: 60px; height: 60px; }
  .progress-section { min-width: 100px; padding: 0 16px; font-size: 13px; }
}

@media (max-width: 576px) {
  .top-nav { padding: 14px 16px; }
  .top-nav .back-btn { left: 14px; }
  .explore-card img { max-height: 90px; }
  font-family: 'Akzidenz Grotesk Pro regular'; { font-size: 18px; }
}
