:root {

  --nav-bg: #2C1F0E;

  --primary: #2C1F0E;

  --olive: #B8860B;
  --dark-olive: #8B6508;
  --gold-bright: #D4A017;
  --gold-muted: #C49A1A;
  --gold-light: #E8C96A;
  --gold-pale: #F5DFA0;

  --section-dark: #F7EDD8;
  --section-mid: #F2E4C4;
  --section-warm: #EDD9A8;
  --section-gold: #E5CC80;
  --section-cream: #FBF5E6;
  --section-ivory: #F7EDD8;
  --section-parch: #EDD9A8;
  --section-accent: #2C1F0E;

  --beige: #F2E4C4;
  --cream: #FBF5E6;
  --cream-dark: #EDD9A8;

  --border: rgba(184, 134, 11, 0.35);
  --border-bright: rgba(212, 160, 23, 0.60);
  --border-dark: rgba(184, 134, 11, 0.18);

  --text: #2C1F0E;
  --text-light: #FBF5E6;
  --text-muted: rgba(44, 31, 14, .60);
  --text-muted-lt: rgba(251, 245, 230, .65);
  --text-gold: #8B6508;

  --shadow: 0 20px 60px rgba(44, 31, 14, .12);
  --shadow-lg: 0 32px 80px rgba(44, 31, 14, .20);
  --shadow-gold: 0 12px 40px rgba(184, 134, 11, .22);
  --shadow-card: 0 8px 32px rgba(44, 31, 14, .10);

  --radius: 12px;
  --radius-sm: 6px;
  --radius-pill: 50px;

  --font-body: 'Jost', sans-serif;
  --transition: all .4s cubic-bezier(.165, .84, .44, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--section-cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.sugg-cat {
  font-size: .65rem;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--olive);
  color: #FBF5E6;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--font-body);
}

a {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--section-mid);
}

::-webkit-scrollbar-thumb {
  background: var(--olive);
  border-radius: 8px;
  border: 2px solid var(--section-mid);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}

#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}




.Banner {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background:
    linear-gradient(to bottom, rgba(44, 31, 14, .72) 0%, rgba(44, 31, 14, .30) 50%, rgba(44, 31, 14, .78) 100%),
    url('../../Images/Banner.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.Banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--section-cream), transparent);
}

.stock-warning {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff4e0;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: var(--r-sm);
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 500;
  width: 100%;
  flex-wrap: wrap;
}

.stock-warning i {
  color: #f59e0b;
  font-size: .8rem;
  flex-shrink: 0;
}

.stock-warning.out-of-stock {
  background: #fdf0ef;
  color: #c0392b;
  border-color: #f5c6c6;
}

.stock-warning.out-of-stock i {
  color: #c0392b;
}

.Banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold-light), var(--gold-bright), transparent);
  z-index: 2;
}

.BannerContent {
  max-width: 860px;
  padding: 20px;
  z-index: 1;
  position: relative;
  animation: fadeUp 1.1s cubic-bezier(.165, .84, .44, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.BannerHeading {

  font-size: clamp(42px, 8vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;

  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}

.AccentText {
  color: var(--gold-light);
  font-style: italic;
}

.BannerDescription {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(251, 245, 230, .78);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 40px;
}

.BannerButtons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.PrimaryBtn {
  background: var(--olive);
  color: #FBF5E6;
  padding: 14px 36px;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 24px rgba(184, 134, 11, .40);
}

.PrimaryBtn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, .50);
}

.SecondaryBtn {
  background: transparent;
  color: var(--text-light);
  padding: 14px 36px;
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(251, 245, 230, .50);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
}

.SecondaryBtn:hover {
  background: rgba(251, 245, 230, .12);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.StyleBar {
  background: var(--primary);
  padding: 16px 5%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid rgba(184, 134, 11, .30);
  border-bottom: 1px solid rgba(184, 134, 11, .20);
}

.StyleBar span {
  color: rgba(232, 201, 106, .65);
  font-size: .7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: default;
  transition: color .3s;
  font-weight: 500;
}

.StyleBar span:hover {
  color: var(--gold-light);
}

.Featured-Text {

  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5% 0;
}

.SectionHeading {

  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
}

.Featured {
  background: var(--section-cream);
  border-top: 1px solid rgba(184, 134, 11, .18);
  border-bottom: 1px solid rgba(184, 134, 11, .18);
}

.Featured .Featured-Text {
  color: var(--text);
}

.New-Arrivals {
  background: var(--section-mid);
  border-top: 1px solid rgba(184, 134, 11, .14);
  border-bottom: 1px solid rgba(184, 134, 11, .14);
}

.New-Arrivals .Featured-Text {
  color: var(--text);
}

.Best-Sellers {
  background: var(--section-warm);
  border-top: 1px solid rgba(184, 134, 11, .22);
  border-bottom: 1px solid rgba(184, 134, 11, .22);
}

.Best-Sellers .Featured-Text {
  color: var(--text);
}

.Slider {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 0 5% 20px;
}

.slider-window {
  overflow: hidden;
}

.sliderTrack {
  display: flex;
  gap: 22px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.sliderProgressContainer {
  width: 160px;
  height: 2px;
  background: rgba(184, 134, 11, .20);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.sliderProgress {
  width: 0;
  height: 100%;
  background: var(--olive);
  transition: width .35s ease;
}

.sliderButtons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, .40);
  background: rgba(184, 134, 11, .10);
  color: var(--olive);
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.nav-btn:hover {
  background: var(--olive);
  color: #FBF5E6;
  border-color: var(--olive);
}

.View-All {
  display: block;
  width: fit-content;
  margin: 28px auto 48px;
  padding: 13px 42px;
  background: transparent;
  border: 1px solid rgba(184, 134, 11, .45);
  color: var(--olive);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.View-All:hover {
  background: var(--olive);
  color: #FBF5E6;
  border-color: var(--olive);
  transform: translateY(-2px);
}

.product-card {
  width: 295px;
  min-width: 295px;
  max-width: 295px;
  flex-shrink: 0;
  flex-grow: 0;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, .25);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44, 31, 14, .18), 0 0 0 1px rgba(184, 134, 11, .45);
}

.image-container {
  width: 100%;
  height: 240px;
  position: relative;
  background: var(--section-warm);
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.product-card:hover .image-container img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--olive);
  color: #FBF5E6;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-card .content {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .category {
  font-size: .67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 7px;
}

.product-card .product-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
}

.product-card .description {
  font-size: .83rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.old-price {
  text-decoration: line-through;
  color: rgba(44, 31, 14, .30);
  font-size: .84rem;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--olive);
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn {
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}

.btn-primary {
  background: var(--olive);
  color: #FBF5E6;
}

.btn-primary:hover {
  background: var(--dark-olive);
}

.btn-secondary {
  background: transparent;
  color: var(--olive);
  border: 1px solid rgba(184, 134, 11, .35);
}

.btn-secondary:hover {
  background: rgba(184, 134, 11, .08);
  border-color: var(--olive);
}

.CategoriesSection {
  background: var(--section-warm);
  padding: 70px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  border-top: 3px solid var(--olive);
  border-bottom: 3px solid var(--olive);
}

.CategoriesSection .SectionHeading {
  color: var(--text);
}

.CategoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1400px;
}

.CategoryCard {
  background: url('Images/Banner.png') center / cover no-repeat;
  border-radius: var(--radius);
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(184, 134, 11, .35);
  box-shadow: var(--shadow-card);
}

.CategoryCard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;        
}

.CategoryCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 5, 0, 0.92) 0%,
    rgba(10, 5, 0, 0.65) 40%,
    rgba(10, 5, 0, 0.15) 100%
  );
  transition: opacity .4s;
  z-index: 1;       
}

.CategoryCard .CategoryTitle,
.CategoryCard .CategoryDetail {
  position: relative;
  z-index: 2;        
}
.CategoryTitle {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  padding-top: 50%;
  text-shadow:
    0 0 20px rgba(0, 0, 0, 1),
    0 2px 8px rgba(0, 0, 0, 1),
    0 4px 24px rgba(0, 0, 0, 0.9);
  line-height: 1.1;
  margin-bottom: 6px;
}

.CategoryDetail {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E8C96A;
  position: relative;
  z-index: 2;
  font-weight: 500;
  text-shadow:
    0 0 12px rgba(0, 0, 0, 1),
    0 1px 4px rgba(0, 0, 0, 1);
}
.CategoryCard:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 5, 0, 0.92) 0%,
    rgba(10, 5, 0, 0.65) 40%,
    rgba(10, 5, 0, 0.15) 100%
  );
}
.CategoryCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44, 31, 14, .25), 0 0 0 2px var(--olive);
}

.CategoryCard:hover::before {
  background: linear-gradient(
    to top,
    rgba(20, 10, 0, 0.95) 0%,
    rgba(20, 10, 0, 0.60) 45%,
    rgba(20, 10, 0, 0.25) 100%
  );
}

.CategoryCard:nth-child(1) {
  background-color: #C49A1A;
}

.CategoryCard:nth-child(2) {
  background-color: #B8860B;
}

.CategoryCard:nth-child(3) {
  background-color: #8B6508;
}

.CategoryCard:nth-child(4) {
  background-color: #A07828;
}

.CategoryTitle {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: #FBF5E6;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
  padding-top: 50%;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.80),
    0 1px 3px rgba(0, 0, 0, 0.95);
  line-height: 1.1;
  margin-bottom: 6px;
}

.CategoryDetail {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5DFA0;
  position: relative;
  z-index: 1;
}

.exclusive-offer-container {
  background: var(--primary);
  color: var(--text-light);
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.exclusive-offer-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212, 160, 23, .12), transparent 65%);
  pointer-events: none;
}

.exclusive-offer-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.exclusive-offer-label {
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  opacity: .8;
}

.exclusive-offer-title {

  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
}

.exclusive-offer-description {
  font-size: .94rem;
  line-height: 1.75;
  opacity: .65;
  max-width: 540px;
  color: var(--text-light);
}

.exclusive-offer-button {
  margin-top: 10px;
  background: var(--olive);
  color: #FBF5E6;
  padding: 14px 46px;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(184, 134, 11, .40);
}

.exclusive-offer-button:hover {
  background: var(--gold-bright);
  color: #FBF5E6;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, .45);
}

.about-label-wrap {
  text-align: center;
  padding-top: 70px;
  background: var(--section-ivory);
}

.about-brand-title {

  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text);
}

.about-brand-sub {
  font-size: .68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 6px;
}

.heritage-section {
  background: var(--section-ivory);
  padding: 80px 5%;
  border-bottom: 3px solid var(--olive);
}

.heritage-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.heritage-visual-frame {
  height: 460px;
  background: url(Images/Banner.png) center/cover no-repeat;
  border-radius: 20px;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(184, 134, 11, .35);
}

.heritage-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.heritage-text-block {
  font-size: .94rem;
  line-height: 1.85;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.heritage-button {
  display: inline-block;
  width: fit-content;
  padding: 13px 30px;
  background: var(--olive);
  color: #FBF5E6;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(184, 134, 11, .30);
}

.heritage-button:hover {
  background: var(--dark-olive);
  transform: translateY(-2px);
}

.heritage-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 4px;
  border-top: 1px solid rgba(184, 134, 11, .25);
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-size: 2rem;
  font-weight: 600;
  color: var(--olive);
  display: block;
}

.stat-label {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-section {
  background: var(--section-mid);
  padding: 80px 5%;
  border-top: 1px solid rgba(184, 134, 11, .18);
  border-bottom: 1px solid rgba(184, 134, 11, .18);
}

.testimonial-section-heading {

  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  color: var(--text);
  margin-bottom: 46px;
}

.testimonial-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-container {
  display: flex;
  gap: 20px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
  display: none;
}
/* ══════════════════════════════════════════
   TESTIMONIAL SECTION — FULLY RESPONSIVE
══════════════════════════════════════════ */

.testi {
  padding: 96px 5%;
  background: var(--cream-mid, #F2E4C4);
  overflow: hidden;
}

.testi-head {
  text-align: center;
  margin-bottom: 56px;
}

.testi-head .sec-tag {
  display: block;
  font-size: .6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dim, #8B6508);
  margin-bottom: 10px;
}

.testi-head .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--text, #2C1F0E);
}

.testi-head .sec-title em {
  font-style: italic;
  color: var(--gold-muted, #C49A1A);
}

/* Wrapper: arrows + track */
.testi-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}

.testi-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  /* slight clip so cards don't overflow on swipe */
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}
/* ══ REVIEW MODAL — responsive & overflow fixes ══ */

.review-modal-box {
  padding: 36px 28px;            /* tighter side padding on all screens */
  max-width: min(780px, 96vw);   /* never wider than viewport */
  overflow-x: hidden;
}

.review-modal-inner {
  grid-template-columns: 1fr 1fr;
  min-width: 0;                  /* allow grid children to shrink */
}

/* Title and body: hard-clamp long strings */
.review-modal-title,
.review-modal-body {
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}

.review-modal-title {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.review-modal-body {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}

/* Stack to single column on small screens */
@media (max-width: 640px) {
  .review-modal-box {
    padding: 20px 16px;
    border-radius: 14px;
    max-height: 92vh;
  }

  .review-modal-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-modal-inner.no-images {
    grid-template-columns: 1fr;
  }

  .rmg-main {
    aspect-ratio: 4 / 3;
    max-height: 220px;
  }

  .review-modal-title {
    font-size: 1.1rem;
  }

  .review-modal-body {
    font-size: .86rem;
  }
}

@media (max-width: 400px) {
  .review-modal-box {
    padding: 16px 12px;
    border-radius: 10px;
  }

  .review-modal-close {
    top: 10px;
    right: 12px;
  }
}
/* ── Card ── */
.tcard {
  /* desktop: 3 cards visible; tablet: 2; mobile: 1 */
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: #fff;
  padding: 30px 28px 26px;
  border-radius: 16px;
  border: 1px solid rgba(196, 154, 26, .15);
  box-shadow: 0 6px 24px rgba(44, 31, 14, .07);
  transition: border-color .3s, transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s;
  position: relative;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.tcard::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold-light, #E8C96A);
  opacity: .18;
  position: absolute;
  top: -6px;
  left: 16px;
  pointer-events: none;
  user-select: none;
}

.tcard:hover {
  border-color: rgba(196, 154, 26, .38);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, .2);
}

.tcard-stars {
  color: var(--gold, #C49A1A);
  font-size: .95rem;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.tcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text, #2C1F0E);
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tcard-body {
  font-size: .87rem;
  font-style: italic;
  color: var(--text-muted, rgba(44, 31, 14, .6));
  line-height: 1.7;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.tcard-foot {
  border-top: 1px solid rgba(196, 154, 26, .12);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tcard-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text, #2C1F0E);
}

.tcard-meta {
  font-size: .65rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted, rgba(44, 31, 14, .55));
}

.tcard-meta.tag {
  color: var(--gold-dim, #8B6508);
  font-size: .6rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Arrow buttons ── */
.tcontrol {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 26, .28);
  background: rgba(196, 154, 26, .06);
  color: var(--gold-dim, #8B6508);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .3s, box-shadow .25s;
}

.tcontrol:hover {
  background: var(--gold-dim, #8B6508);
  border-color: var(--gold-dim, #8B6508);
  color: #FBF5E6;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(139, 101, 8, .3);
}

/* Desktop arrows (inside flex row) */
.tcontrol-desktop {
  display: flex;
}

/* Mobile controls row (hidden on desktop) */
.testi-mobile-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

/* Dot indicators */
.testi-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(139, 101, 8, .25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.testi-dot.active {
  background: var(--gold-dim, #8B6508);
  transform: scale(1.35);
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .tcard {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Small tablet: 2 cards, tighter padding */
@media (max-width: 768px) {
  .testi {
    padding: 72px 4%;
  }

  .tcard {
    flex: 0 0 calc(50% - 10px);
    padding: 24px 20px 20px;
  }
}

/* Mobile: 1 card, hide desktop arrows, show mobile controls */
@media (max-width: 600px) {
  .testi {
    padding: 60px 5%;
  }

  .testi-head {
    margin-bottom: 40px;
  }

  /* Hide the side arrows inside the wrapper */
  .tcontrol-desktop {
    display: none !important;
  }

  .testi-wrapper {
    gap: 0;
  }

  /* Remove mask on mobile (unnecessary at 1 card) */
  .testi-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 12px;
  }

  .tcard {
    flex: 0 0 100%;
    padding: 22px 18px 18px;
    border-radius: 12px;
  }

  .tcard::before {
    font-size: 3.5rem;
  }

  .tcard-title {
    font-size: 1rem;
  }

  .tcard-body {
    font-size: .84rem;
    -webkit-line-clamp: 5;
  }

  /* Show mobile arrow row with dots */
  .testi-mobile-controls {
    display: flex;
  }
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 14px);
  background: #FFFFFF;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, .22);
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonial-card:hover {
  border-color: rgba(184, 134, 11, .50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(184, 134, 11, .18);
  padding-top: 16px;
}


.review-title {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;        /* max 2 lines for title */
  -webkit-box-orient: vertical;
}
/* ── Home FAQ ──────────────────────────────────────────── */
.home-faq {
  padding: 90px 24px;
  background: var(--bg, #faf7f0);
  border-bottom: 3px solid var(--border-bright, #d4c9a8);
}

.home-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.home-faq-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold, #7A5800);
  margin-bottom: 12px;
}

.home-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text, #2a1f0e);
  margin-bottom: 44px;
}

.home-faq .faq-item {
  border-bottom: 1px solid var(--border-bright, #d4c9a8);
}

.home-faq .faq-item:first-of-type {
  border-top: 1px solid var(--border-bright, #d4c9a8);
}

.home-faq .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text, #2a1f0e);
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}

.home-faq .faq-item summary::-webkit-details-marker { display: none; }

.home-faq .faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold, #7A5800);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}

.home-faq .faq-item[open] summary::after { transform: rotate(45deg); }
.home-faq .faq-item[open] summary { color: var(--gold, #7A5800); }

.home-faq .faq-item p {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted, #6b5c42);
  padding: 0 4px 22px;
  margin: 0;
}

.home-faq .faq-item p a {
  color: var(--gold, #7A5800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-faq .faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold, #7A5800);
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .2s;
}

.home-faq .faq-more-link:hover { gap: 12px; }
.review-text {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
 line-clamp: 4;        /* max 4 lines for body */
  -webkit-box-orient: vertical;
}
.avatar {
  background: var(--olive);
  color: #FBF5E6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.client-info strong {
  font-size: .84rem;
  display: block;
  color: var(--text);
  font-weight: 600;
}

.client-info span {
  font-size: .7rem;
  letter-spacing: .5px;
  color: var(--text-muted);
}

.testimonial-wrapper .prev,
.testimonial-wrapper .next {
  flex-shrink: 0;
}

.exclusive-newsletter-section {
  background: var(--primary);
  padding: 100px 5%;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(184, 134, 11, .30);
  border-bottom: 2px solid rgba(184, 134, 11, .30);
}

.exclusive-newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, .09), transparent 65%);
}

.exclusive-newsletter-container {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}

.exclusive-newsletter-label {
  display: block;
  font-size: .67rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.exclusive-newsletter-title {

  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-light);
}

.exclusive-newsletter-text {
  font-size: .92rem;
  line-height: 1.75;
  opacity: .55;
  margin-bottom: 40px;
}

.exclusive-newsletter-form {
  display: flex;
  border: 1px solid rgba(184, 134, 11, .35);
  border-radius: var(--radius-pill);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(184, 134, 11, .07);
}

.exclusive-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 22px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: .84rem;
  outline: none;
}

.exclusive-newsletter-input::placeholder {
  color: rgba(251, 245, 230, .28);
}

.exclusive-newsletter-submit {
  background: var(--olive);
  color: #FBF5E6;
  border: none;
  padding: 0 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
}

.exclusive-newsletter-submit:hover {
  background: var(--gold-bright);
}

.newsletter-success-message {
  display: none;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: .88rem;
}

.stats-counter-section {
  background: var(--section-gold);
  padding: 90px 5%;
  border-top: 1px solid rgba(184, 134, 11, .25);
  border-bottom: 1px solid rgba(184, 134, 11, .25);
}

.stats-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-group {
  text-align: center;
}

.stat-number {

  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-group .stat-label {
  font-size: .63rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(44, 31, 14, .60);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 14, .55);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  max-width: 100vw;
  height: 100%;
  background: #FBF5E6;
  z-index: 1200;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(44, 31, 14, .25);
  border-left: 1px solid rgba(184, 134, 11, .25);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(184, 134, 11, .18);
  flex-shrink: 0;
  background: var(--section-warm);
}

.cart-drawer-header h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: rgba(44, 31, 14, .35);
  line-height: 1;
  transition: color .2s, transform .3s;
}

.cart-close-btn:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FBF5E6;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(44, 31, 14, .28);
  gap: 12px;
}

.cart-empty i {
  font-size: 2.5rem;
}

.cart-empty p {
  font-size: .9rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(184, 134, 11, .18);
  position: relative;
  animation: cartIn .3s ease;
}

@keyframes cartIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--section-warm);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: .8rem;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-qty-row button {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184, 134, 11, .28);
  background: var(--section-warm);
  border-radius: 4px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.cart-qty-row button:hover {
  background: rgba(184, 134, 11, .18);
}

.cart-qty-row span {
  font-size: .85rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
  color: var(--text);
}

.cart-item-remove {
  position: absolute;
  top: 7px;
  right: 9px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(44, 31, 14, .18);
  transition: color .2s;
  line-height: 1;
}

.cart-item-remove:hover {
  color: #e07070;
}

.cart-coupon {
  padding: 12px 16px;
  border-top: 1px solid rgba(184, 134, 11, .15);
  flex-shrink: 0;
  background: var(--section-cream);
}

.coupon-input-row {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid rgba(184, 134, 11, .25);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--text);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color .25s;
}

.coupon-input:focus {
  border-color: var(--olive);
}

.coupon-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(44, 31, 14, .28);
}

.coupon-apply-btn {
  padding: 9px 15px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
  white-space: nowrap;
}

.coupon-apply-btn:hover {
  background: var(--dark-olive);
}

.coupon-msg {
  font-size: .78rem;
  margin-top: 7px;
  min-height: 18px;
}

.coupon-msg.success {
    color: rgb(184, 134, 11);

}

.coupon-msg.error {
  color: #c04040;
}

.cart-footer {
  padding: 14px 18px 22px;
  border-top: 1px solid rgba(184, 134, 11, .15);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--section-cream);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-muted);
}

.cart-grand-total {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid rgba(184, 134, 11, .18);
  margin-top: 2px;
}


.cart-checkout-btn {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 6px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.cart-checkout-btn:hover {
  background: var(--dark-olive);
  transform: translateY(-1px);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 14, .65);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: modalFade .3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  background: #FBF5E6;
  border: 1px solid rgba(184, 134, 11, .28);
  width: 100%;
  max-width: 880px;
  padding: 44px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(44, 31, 14, .35);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp .35s cubic-bezier(.165, .84, .44, 1);
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.modal-image-wrap {
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--section-warm);
  position: relative;
  border: 1px solid rgba(184, 134, 11, .22);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.modal-content-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-cat {
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.modal-title {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-price-row .old-price {
  text-decoration: line-through;
  color: rgba(44, 31, 14, .30);
  font-size: .9rem;
}

.modal-price-row .cur-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--olive);
}

.specs-label {
  font-size: .67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 6px;
}

.specs-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.specs-list li {
  font-size: .84rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.specs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
}

.ship-note {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 12px 16px;
  background: rgba(184, 134, 11, .08);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--olive);
}

.size-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.size-selector label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}

.size-selector select {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: .83rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
}

.add-to-cart-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.qty-btn {
  width: 40px;
  height: 42px;
  background: var(--section-warm);
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.qty-btn:hover {
  background: rgba(184, 134, 11, .15);
}

.qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #FFFFFF;
}

.add-btn {
  flex: 1;
  background: var(--olive);
  color: #FBF5E6;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
}

.add-btn:hover {
  background: var(--dark-olive);
  transform: translateY(-1px);
}

.modal-sku {
  font-size: .67rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(44, 31, 14, .22);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(44, 31, 14, .28);
  transition: color .2s, transform .3s;
}

.close-btn:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--olive);
  color: #FBF5E6;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  letter-spacing: .5px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all .35s cubic-bezier(.165, .84, .44, 1);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(44, 31, 14, .25);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .CategoryGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .heritage-container {
    grid-template-columns: 1fr;
  }

  .heritage-visual-frame {
    height: 260px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 28px 20px;
  }

  .modal-image-wrap {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .NavLinks {
    display: none;
  }

  .search-wrapper {
    max-width: 150px;
  }

  .hamburger {
    display: flex;
  }

  .BannerHeading {
    font-size: clamp(34px, 9vw, 56px);
  }

  .BannerDescription {
    font-size: .9rem;
  }

  .BannerButtons {
    flex-direction: column;
    align-items: center;
  }

  .PrimaryBtn,
  .SecondaryBtn {
    width: 240px;
    text-align: center;
  }

  .Slider {
    padding: 0 4% 20px;
  }

  .heritage-stats-row {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 80%;
  }

  .cart-drawer {
    width: 100%;
  }

  .stats-wrapper {
    gap: 28px;
  }
}

@media (max-width: 500px) {
  .Sub-Navbar {
    padding: 0 4%;
    gap: 12px;
  }

  .Logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .CategoryGrid {
    grid-template-columns: 1fr;
  }

  .exclusive-newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .exclusive-newsletter-submit {
    padding: 14px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .modal-box {
    padding: 20px 14px;
  }

  .add-to-cart-row {
    flex-wrap: wrap;
  }

  .add-btn {
    width: 100%;
  }

  .StyleBar {
    justify-content: center;
    gap: 10px 18px;
  }

  .StyleBar span {
    font-size: .62rem;
  }

  .testimonial-card {
    flex: 0 0 92%;
  }
}

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(44, 31, 14, .72) 0%, rgba(44, 31, 14, .30) 55%, rgba(44, 31, 14, .78) 100%),
    url('Images/Banner.png') center / cover no-repeat;
  padding: 140px 5% 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--section-cream), transparent);
}

.about-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
  animation: fadeUp 1s cubic-bezier(.165, .84, .44, 1) both;
}

.about-hero-label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.about-hero h1 {

  font-size: clamp(42px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.about-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.about-hero p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(251, 245, 230, .75);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: .68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.about-story {
  background: var(--section-ivory);
  padding: 100px 5%;
}

.about-story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-img {
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gold-pale);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(184, 134, 11, .25);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-story-text h2 {

  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

.about-story-text p {
  font-size: .94rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
  transition: gap .3s;
}

.about-story-link:hover {
  gap: 16px;
}

.about-story-link i {
  font-size: .75rem;
}

.about-numbers {
  background: var(--primary);
  padding: 70px 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

.about-num-val {

  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.about-num-label {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(251, 245, 230, .45);
}

.about-values {
  background: var(--section-cream);
  padding: 100px 5%;
}

.about-values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.about-values-header h2 {

  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
}

.about-values-header p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-value-card {
  background: #FFFFFF;
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, .22);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--olive);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  background: var(--olive);
  color: #FBF5E6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-value-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.about-value-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-team {
  background: var(--section-ivory);
  padding: 100px 5%;
  text-align: center;
}

.about-team h2 {

  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}

.about-team>p {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 64px;
  line-height: 1.75;
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--section-cream);
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, .20);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--olive);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--section-parch);
  border: 3px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--olive);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
}

.team-role {
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--olive);
}

.team-bio {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.about-timeline {
  background: var(--section-warm);
  padding: 100px 5%;
  text-align: center;
}

.about-timeline h2 {

  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 70px;
}

.timeline-track {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(184, 134, 11, .30);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  padding: 28px 0;
}

.timeline-item:nth-child(odd) .timeline-text {
  grid-column: 1;
  text-align: right;
  padding-right: 36px;
}

.timeline-item:nth-child(odd) .timeline-dot {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-empty {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-empty {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-text {
  grid-column: 3;
  text-align: left;
  padding-left: 36px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--olive);
  border-radius: 50%;
  border: 2px solid var(--section-warm);
  box-shadow: 0 0 0 3px var(--olive);
  justify-self: center;
}

.timeline-year {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--olive);
  display: block;
  margin-bottom: 6px;
}

.timeline-text h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-text p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-cta {
  background: var(--primary);
  padding: 100px 5%;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184, 134, 11, .12), transparent 65%);
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.about-cta h2 {

  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-light);
}

.about-cta p {
  font-size: .94rem;
  opacity: .60;
  margin-bottom: 44px;
  line-height: 1.75;
  color: var(--text-light);
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--olive);
  color: #FBF5E6;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 18px rgba(184, 134, 11, .35);
}

.cta-btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.cta-btn-outline {
  background: transparent;
  color: var(--text-light);
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 245, 230, .30);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.cta-btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-story-img {
    height: 300px;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-track::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
  }

  .timeline-item:nth-child(odd) .timeline-text,
  .timeline-item:nth-child(even) .timeline-text {
    grid-column: 2;
    text-align: left;
    padding-left: 24px;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-numbers {
    flex-direction: column;
    gap: 32px;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 240px;
    text-align: center;
  }
}

.cart-item-size {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 3px;
}

.stock-warning.out-of-stock {
  background: rgba(180, 50, 50, .08);
  color: #c04040;
  border-color: rgba(180, 50, 50, .25);
}

.add-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

.StyleBar {
  overflow: hidden;
  white-space: nowrap;
}

.StyleBar-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.StyleBar span {
  padding: 0 2rem;
  display: inline-block;
  color: #1e2008;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}



.Banner {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Scrolling style bar ── */
.StyleBar {
  overflow: hidden;
  white-space: nowrap;
}

.StyleBar-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.StyleBar span {
  padding: 0 2rem;
  display: inline-block;
  color: #1e2008;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.Banner {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: none;
}

/* FIX: CategoryCard now uses <img> tags instead of background-image */
.CategoryCard {
  position: relative;
  overflow: hidden;
  display: block;
}





.noscript-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  padding: 1rem;
}

.noscript-product-card {
  border: 1px solid #e0d8c8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.noscript-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.noscript-product-card p {
  padding: 8px;
  font-size: 13px;
  margin: 0;
}

.noscript-product-card span {
  padding: 0 8px 8px;
  display: block;
  font-size: 12px;
  color: #666;
}
/* ── Shared tokens (already in your :root — kept for demo) ── */
:root {
  --gold: #C49A1A;
  --gold-bright: #D4A820;
  --gold-light: #E8C96A;
  --gold-pale: #F5DFA0;
  --gold-dim: #8B6508;
  --dark: #2C1F0E;
  --cream: #FBF5E6;
  --cream-mid: #F2E4C4;
  --cream-deep: #EDD9A8;
  --text: #2C1F0E;
  --text-muted: rgba(44,31,14,.55);
  --border: rgba(196,154,26,.25);
  --shadow: 0 20px 60px rgba(44,31,14,.12);
  --shadow-gold: 0 12px 40px rgba(196,154,26,.2);
  --ease: cubic-bezier(.19,1,.22,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --r: 16px;
  --r-sm: 8px;
  --r-pill: 50px;
  --font-body: 'Outfit', sans-serif;
  --font-family: 'Cormorant Garamond', serif;
  --border-bright: rgba(212,168,32,.5);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body{font-family:var(--font-body);background:var(--cream);color:var(--text);}
img{display:block;max-width:100%;}
button{font-family:var(--font-body);cursor:pointer;}
a{text-decoration:none;color:inherit;}
 
/* ══════════════════════════════════════════════════
   NEW PRODUCT CARD
   Replace old .product-card rules with these .pcard rules.
   In your PHP loop, change class="product-card" → class="pcard"
   and update child class names as shown in the HTML below.
══════════════════════════════════════════════════ */
 
.pcard {
  width: 295px; min-width: 295px; max-width: 295px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(196,154,26,.18);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(44,31,14,.08);
  transition: transform .5s var(--spring), box-shadow .5s, border-color .3s;
  cursor: pointer; position: relative;
}
.pcard::after {
  content:''; position:absolute; inset:0; border-radius:var(--r);
  box-shadow: inset 0 0 0 2px var(--gold-bright);
  opacity:0; transition:opacity .35s; pointer-events:none;
}
.pcard:hover {  box-shadow:0 24px 64px rgba(44,31,14,.16), var(--shadow-gold); border-color:rgba(196,154,26,.4); }
.pcard:hover::after { opacity:1; }
 
/* Image */
.pcard-img {
  height: 260px; overflow:hidden;
  background: var(--cream-deep); position:relative;
  border-radius: var(--r) var(--r) 0 0;
}
.pcard-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease), filter .5s;
  border-radius: var(--r) var(--r) 0 0;
}
.pcard:hover .pcard-img img { transform:scale(1.08); filter:brightness(1.04) saturate(1.1); }
.pcard-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(44,31,14,.35), transparent 55%);
  opacity:0; transition:opacity .4s;
}
.pcard:hover .pcard-img::after { opacity:1; }
 
/* "Quick View" hint */
.pcard-hint {
  position:absolute; bottom:14px; left:50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(251,245,230,.96); color:var(--dark);
  font-size:.57rem; letter-spacing:2px; text-transform:uppercase;
  padding:6px 18px; border-radius:var(--r-pill); white-space:nowrap;
  opacity:0; transition:opacity .3s, transform .35s var(--spring); z-index:2;
}
.pcard-hint { opacity:1; transform:translateX(-50%) translateY(0); }
 .pcard:hover:hover{
  opacity: 1;
 }
/* Discount badge */
.pcard-badge {
  position:absolute; top:12px; left:12px;
  background: var(--gold-dim); color:#FBF5E6;
  padding:4px 12px; border-radius:var(--r-pill);
  font-size:.56rem; font-weight:500; letter-spacing:1.5px;
  text-transform:uppercase; z-index:2; line-height:1;
}
 
/* Body */
.pcard-body { padding:20px 22px; flex:1; display:flex; flex-direction:column; }
.pcard-cat  { font-size:.6rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:7px; }
.pcard-name { font-family:var(--font-family); font-size:1.35rem; font-weight:500; color:var(--text); line-height:1.15; margin-bottom:8px; }
.pcard-desc {
  font-size:.82rem; line-height:1.55; color:var(--text-muted); margin-bottom:14px;
  overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.pcard-price { display:flex; align-items:center; gap:9px; margin-bottom:16px; }
.price-old   { text-decoration:line-through; color:rgba(44,31,14,.22); font-size:.83rem; }
.price-cur   { font-size:1.1rem; font-weight:500; color:var(--gold-dim); }
.pcard-btns  { display:flex; gap:8px; margin-top:auto; }
 
/* Buttons inside card */
.pbtn {
  flex:1; padding:11px; border-radius:var(--r-sm);
  font-size:.64rem; font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  transition: background .25s, transform .2s var(--spring), border-color .25s, color .25s;
  border:none; position:relative; overflow:hidden;
}
.pbtn::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.12);
  transform:translateX(-100%); transition:transform .35s;
}
.pbtn:hover::after { transform:translateX(100%); }
.pbtn-add  { background:var(--gold-dim); color:#FBF5E6; }
.pbtn-add:hover  { background:var(--gold-bright); transform:translateY(-2px); }
.pbtn-view { background:transparent; color:var(--gold-dim); border:1px solid rgba(139,101,8,.25) !important; }
.pbtn-view:hover { background:rgba(139,101,8,.07); border-color:var(--gold-dim); }
 
/* ── Shared section labels ── */
.sec-tag   { display:block; font-size:.6rem; letter-spacing:5px; text-transform:uppercase; color:var(--gold-dim); margin-bottom:10px; }
.sec-title { font-family:var(--font-family); font-size:clamp(30px,4.5vw,60px); font-weight:300; letter-spacing:.5px; color:var(--text); }
.sec-title em { font-style:italic; color:var(--gold); }
.sec-rule  { width:52px; height:1px; background:linear-gradient(90deg,var(--gold-bright),transparent); margin-top:18px; }
 
/* ── Fix: Product Card Buttons ── */
.pcard-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: nowrap; /* prevent wrapping */
}

.pbtn {
  flex: 1;
  padding: 11px 6px; /* reduce horizontal padding */
  border-radius: var(--r-sm);
  font-size: .58rem; /* slightly smaller so text fits on one line */
  font-weight: 500;
  letter-spacing: 1px; /* reduce letter-spacing */
  text-transform: uppercase;
  transition: background .25s, transform .2s var(--spring), border-color .25s, color .25s;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* KEY: prevent text wrap */
  min-width: 0;
}

/* On smaller cards (mobile) */
@media (max-width: 600px) {
  .pcard {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
  }

  .pbtn {
    font-size: .55rem;
    letter-spacing: .5px;
    padding: 10px 4px;
  }
}
/* ── Fix: Modal close button always visible ── */
.modal-box {
  position: relative; /* ensure absolute children work */
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 10; /* ensure it's above content */
  background: rgba(44, 31, 14, .06);
  border: 1px solid rgba(184, 134, 11, .2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(44, 31, 14, .5);
  transition: color .2s, transform .3s, background .2s;
}

.close-btn:hover {
  color: var(--text);
  background: rgba(44, 31, 14, .1);
  transform: rotate(90deg);
}

/* ── Fix: Modal responsive on mobile ── */
@media (max-width: 600px) {
  .modal-overlay {
    padding: 12px;
    align-items: flex-end; /* slide up from bottom on mobile */
  }

  .modal-box {
    padding: 20px 16px 28px;
    border-radius: 20px 20px 0 0;
    max-height: 95vh;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-image-wrap {
    height: 220px;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .add-to-cart-row {
    flex-wrap: nowrap;
  }

  .add-btn {
    white-space: nowrap;
  }
}
 
/* Card */
.tcard {
  flex: 0 0 calc(33.33% - 14px);
  background:#fff; padding:30px 28px; border-radius:var(--r);
  border:1px solid rgba(196,154,26,.15);
  box-shadow:0 6px 24px rgba(44,31,14,.07);
  transition:border-color .3s, transform .4s var(--spring), box-shadow .4s;
  position:relative; overflow:hidden;
  word-break:break-word; overflow-wrap:break-word;
}
.tcard::before {
  content:'\201C';
  font-family:var(--font-family); font-size:6rem; line-height:1;
  color:var(--gold-light); opacity:.18;
  position:absolute; top:-8px; left:18px; pointer-events:none;
}
.tcard:hover { border-color:rgba(196,154,26,.38); transform:translateY(-5px); box-shadow:var(--shadow-gold); }
.tcard-stars { color:var(--gold); font-size:.95rem; letter-spacing:1.5px; margin-bottom:14px; }
.tcard-title {
  font-family:var(--font-family); font-size:1.1rem; font-weight:500;
  color:var(--text); margin-bottom:10px;
  overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.tcard-body {
  font-size:.87rem; font-style:italic; color:var(--text-muted);
  line-height:1.7; margin-bottom:20px;
  overflow:hidden; display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical;
}
.tcard-foot {
  border-top:1px solid rgba(196,154,26,.12); padding-top:16px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:6px;
}
.tcard-name { font-size:.82rem; font-weight:500; color:var(--text); }
.tcard-meta { font-size:.65rem; letter-spacing:1.2px; text-transform:uppercase; color:var(--text-muted); }
 
/* Slider arrow buttons */
.tcontrol {
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(196,154,26,.28); background:rgba(196,154,26,.06);
  color:var(--gold-dim); font-size:.8rem;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:background .25s, border-color .25s, transform .3s var(--spring), box-shadow .25s;
}
.tcontrol:hover {
  background:var(--gold-dim); border-color:var(--gold-dim);
  color:#FBF5E6; transform:scale(1.08);
  box-shadow:0 6px 20px rgba(139,101,8,.3);
}
 
/* ══════════════════════════════════════════════════
   NEW HERITAGE / ABOUT SECTION
   Replace old .heritage-section / .heritage-container rules.
══════════════════════════════════════════════════ */
 
/* Brand label above section */
.heritage-brand-label {
  text-align:center; padding-top:72px; background:var(--cream);
}
.heritage-brand-name {
  font-family:var(--font-family); font-size:clamp(32px,5vw,62px);
  font-weight:300; letter-spacing:5px; color:var(--text);
}
.heritage-brand-sub {
  font-size:.66rem; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold-dim); margin-top:7px;
}
 
.heritage {
  padding:80px 6% 100px; background:var(--cream);
  border-bottom:3px solid var(--border-bright);
}
.heritage-wrap {
  max-width:1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
 
/* Photo frame */
.heritage-img-wrap {
  position:relative; height:520px;
  border-radius:var(--r); overflow:hidden;
  box-shadow:var(--shadow-gold);
}
.heritage-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  filter:brightness(.76) sepia(.14);
  transition:filter .6s;
}
.heritage-img-wrap:hover img { filter:brightness(.84) sepia(.07); }
 
/* Thin inset border */
.heritage-img-wrap::before {
  content:''; position:absolute; inset:14px;
  border:1px solid rgba(196,154,26,.28);
  border-radius:calc(var(--r) - 4px);
  z-index:2; pointer-events:none;
}
/* Bottom fade */
.heritage-img-wrap::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:36%;
  background:linear-gradient(to top,rgba(251,245,230,1),transparent);
  z-index:1;
}
 
/* Text column */
.heritage-text { display:flex; flex-direction:column; }
.heritage-body { font-size:.93rem; line-height:2; color:var(--text-muted); margin-bottom:18px; }
 
/* CTA pill */
.heritage-cta {
  display:inline-block; width:fit-content;
  padding:13px 32px; margin-top:6px;
  border:1px solid rgba(139,101,8,.3); color:var(--gold-dim);
  font-size:.64rem; font-weight:500; letter-spacing:2.5px;
  text-transform:uppercase; border-radius:var(--r-pill);
  transition:background .3s, border-color .3s, transform .35s var(--spring);
}
.heritage-cta:hover {
  background:rgba(139,101,8,.08); border-color:var(--gold-dim);
  transform:translateY(-2px);
}
 
/* Stats row */
.heritage-stats {
  display:flex; gap:0;
  margin-top:46px; border-top:1px solid rgba(196,154,26,.18); padding-top:38px;
}
.hstat { flex:1; }
.hstat:not(:last-child) {
  border-right:1px solid rgba(196,154,26,.12);
  margin-right:20px; padding-right:20px;
}
.hstat-num {
  font-family:var(--font-family); font-size:2.4rem; font-weight:600;
  color:var(--gold-dim); display:block; line-height:1; margin-bottom:5px;
}
.hstat-lbl { font-size:.58rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--text-muted); }
 
/* ── Responsive ── */
@media(max-width:1024px){
  .heritage-wrap{grid-template-columns:1fr;gap:48px;}
  .heritage-img-wrap{height:300px;}
}
@media(max-width:900px){
  .tcard{flex:0 0 calc(50% - 10px);}
}
@media(max-width:640px){
  .tcard{flex:0 0 88%; padding:20px 18px;}
  .tcard::before { font-size:3.5rem; }
  .tcard-title { font-size:1rem; -webkit-line-clamp:2; }
  .tcard-body { font-size:.8rem; -webkit-line-clamp:3; }
  .tcard-stars { font-size:.9rem; margin-bottom:10px; }
  .pcard{width:260px;min-width:260px;max-width:260px;}
  .heritage-stats{flex-direction:column;gap:20px;}
  .hstat:not(:last-child){border-right:none;border-bottom:1px solid rgba(196,154,26,.15);margin-right:0;padding-right:0;padding-bottom:20px;margin-bottom:0;}
}
.tcard-meta .tag{
color:var(--gold-dim);
  font-size:.55rem; letter-spacing:1.2px; text-transform:uppercase;
  margin-left:6px;
  font-weight: bolder !important;
}
/* ── Demo page wrapper ── */
.demo-page{background:var(--cream);}
 
/* ── Slider/product section shell (keep your existing .prod-section) ── */
.prod-section{padding:96px 0 80px;border-bottom:3px solid var(--border-bright);}
.prod-section.bg-cream{background:var(--cream);}
.prod-section.bg-mid{background:var(--cream-mid);}
.prod-section-inner{padding:0 6%;}
.prod-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:52px;flex-wrap:wrap;gap:20px;}
.link-underline{font-size:.6rem;letter-spacing:3px;text-transform:uppercase;color:var(--gold-dim);border-bottom:1px solid rgba(139,101,8,.28);padding-bottom:2px;transition:color .3s,border-color .3s;}
.link-underline:hover{color:var(--gold-bright);border-color:var(--gold-bright);}
.slider-outer{position:relative;padding:0 6%;}
.slider-viewport{overflow:hidden;}
.slider-track{display:flex;gap:22px;transition:transform .55s cubic-bezier(.19,1,.22,1);will-change:transform;}
.slider-controls{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:36px;}
.slider-progress-wrap{width:140px;height:2px;background:rgba(196,154,26,.18);border-radius:2px;overflow:hidden;}
.slider-progress{height:100%;background:var(--gold-dim);transition:width .35s ease;width:0;}
.snav{width:42px;height:42px;border-radius:50%;border:1px solid rgba(196,154,26,.35);background:rgba(196,154,26,.08);color:var(--gold-dim);font-size:.82rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .25s,border-color .25s,transform .3s var(--spring),box-shadow .25s,opacity .25s;}
.snav:hover{background:var(--gold-dim);border-color:var(--gold-dim);color:#FBF5E6;transform:scale(1.08);box-shadow:0 6px 20px rgba(139,101,8,.3);}
.snav:disabled{opacity:.3;pointer-events:none;}
/* ── Tcard hover cursor + read-more hint ── */
.tcard {
  cursor: pointer;
}
.tcard:focus-visible {
  outline: 2px solid var(--olive, #B8860B);
  outline-offset: 4px;
}
.tcard-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim, #8B6508);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.tcard:hover .tcard-read-more {
  opacity: 1;
  transform: translateY(0);
}

/* ── Optional thumbnail on card ── */
.tcard-img-thumb {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--section-warm, #EDD9A8);
}
.tcard-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tcard:hover .tcard-img-thumb img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════════
   REVIEW DETAIL MODAL
══════════════════════════════════════════ */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 14, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal-overlay.open {
  display: flex;
  animation: modalFade .3s ease;
}

.review-modal-box {
  background: #FBF5E6;
  border: 1px solid rgba(184, 134, 11, .25);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  box-shadow: 0 40px 100px rgba(44, 31, 14, .35);
  animation: modalUp .35s cubic-bezier(.165, .84, .44, 1);
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(44, 31, 14, .3);
  transition: color .2s, transform .3s;
}
.review-modal-close:hover {
  color: var(--text, #2C1F0E);
  transform: rotate(90deg);
}

.review-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* When no images: single column */
.review-modal-inner.no-images {
  grid-template-columns: 1fr;
}

/* Gallery */
.review-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rmg-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--section-warm, #EDD9A8);
  border: 1px solid rgba(184, 134, 11, .2);
}
.rmg-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s;
}
.rmg-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rmg-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  flex-shrink: 0;
}
.rmg-thumb:hover,
.rmg-thumb.active {
  border-color: var(--olive, #B8860B);
  transform: scale(1.05);
}
.rmg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.review-modal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.review-modal-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold-muted, #C49A1A);
}
.review-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text, #2C1F0E);
}
.review-modal-body {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-muted, rgba(44,31,14,.6));
  font-style: italic;
}
.review-modal-foot {
  border-top: 1px solid rgba(184, 134, 11, .15);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.review-modal-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text, #2C1F0E);
}

/* Responsive */
@media (max-width: 640px) {
  .review-modal-box {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .review-modal-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rmg-main {
    aspect-ratio: 4 / 3;
  }
}