@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

: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, .35);
  --border-bright: rgba(212, 160, 23, .60);
  --border-dark: rgba(184, 134, 11, .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;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', sans-serif;
  --ease: cubic-bezier(.165, .84, .44, 1);
  --transition: all .4s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--fb);
  cursor: pointer;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

input,
select,
textarea {
  font-family: var(--fb);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--olive);
  border-radius: 8px;
  border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-olive);
}

#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99999;
  transition: opacity .7s ease, visibility .7s ease;
}

#pageLoader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  position: relative;
  width: 148px;
  height: 148px;
}

.loader-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-track {
  fill: none;
  stroke: rgba(184, 134, 11, .12);
  stroke-width: 5;
}

.loader-fill {
  fill: none;
  stroke: var(--olive);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset .08s linear;
  filter: drop-shadow(0 0 8px rgba(184, 134, 11, .45));
}

.loader-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-pct {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--cream);
  line-height: 1;
  min-width: 64px;
  text-align: center;
  transition: all .1s ease;
}

.loader-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loader-brand-name {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream);
}

.loader-brand-name span {
  color: var(--olive);
}

.loader-status {
  font-family: var(--fb);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(184, 134, 11, .6);
}

.loader-dots span {
  display: inline-block;
  animation: dotPop .9s ease-in-out infinite;
  opacity: 0;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: .2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dotPop {

  0%,
  80%,
  100% {
    opacity: 0;
    transform: translateY(0)
  }

  40% {
    opacity: 1;
    transform: translateY(-3px)
  }
}

@keyframes statusSwap {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  40% {
    opacity: 0;
    transform: translateY(-6px)
  }

  60% {
    opacity: 0;
    transform: translateY(6px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.loader-status.change {
  animation: statusSwap .35s ease;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

#NavBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(184, 134, 11, .20);
  z-index: 1000;
  transition: transform .35s ease;
  will-change: transform;
}

.Sub-Navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 5%;
  height: 70px;
  max-width: 1600px;
  margin: 0 auto;
}

.Logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.Logo span {
  color: var(--olive);
}

.NavLinks {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}

.NavLinks a {
  color: rgba(251, 245, 230, .75);
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color .3s;
}

.NavLinks a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--olive);
  transition: width .3s;
}

.NavLinks a:hover,
.NavLinks a.nav-active {
  color: var(--olive);
}

.NavLinks a:hover::after,
.NavLinks a.nav-active::after {
  width: 100%;
}

.mobile-nav a.nav-active {
  color: var(--olive);
  padding-left: 10px;
  border-left: 2px solid var(--olive);
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 200px;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(184, 134, 11, .55);
  font-size: .75rem;
  pointer-events: none;
}

.SearchBar {
  width: 100%;
  padding: 8px 12px 8px 30px;
  background: rgba(44, 31, 14, .55);
  border: 1px solid rgba(184, 134, 11, .25);
  border-radius: var(--radius-sm);
  color: var(--gold-pale);
  font-family: var(--fb);
  font-size: .78rem;
  outline: none;
  transition: border-color .3s;
}

.SearchBar:focus {
  border-color: var(--olive);
}

.SearchBar::placeholder {
  color: rgba(245, 223, 160, .38);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(44, 31, 14, .18);
  display: none;
  z-index: 2000;
  overflow: hidden;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--cream-dark);
  transition: background .2s;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: var(--cream-dark);
}

.suggestion-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  flex-shrink: 0;
}

.suggestion-info {
  flex: 1;
  min-width: 0;
}

.suggestion-title {
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-category {
  font-size: .67rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .5;
  margin-top: 1px;
}

.suggestion-price {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-olive);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 8px;
}

.NavRight {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--olive);
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color .25s, background .25s;
}

.nav-icon-btn:hover {
  color: var(--cream);
  background: rgba(184, 134, 11, .15);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--olive);
  color: var(--nav-bg);
  border-radius: 50px;
  font-size: .55rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  line-height: 1;
}

.cart-badge.show {
  display: flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  border-top: 1px solid rgba(184, 134, 11, .18);
  padding: 20px 5% 24px;
  gap: 4px;
}

.mobile-nav.show {
  display: flex;
  animation: mobileNavIn .3s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.mobile-nav a {
  color: rgba(251, 245, 230, .78);
  padding: 12px 0;
  font-size: .82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 134, 11, .12);
  transition: color .25s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--olive);
}

.user-dropdown-wrap {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(44, 31, 14, .20);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.97);
  transform-origin: top right;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 2000;
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.user-dropdown-header {
  padding: 15px 18px 11px;
  border-bottom: 1px solid var(--cream-dark);
}

.user-dropdown-header p {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 3px;
}

.user-dropdown-header strong {
  font-family: var(--fd);
  font-size: 1.05rem;
  color: var(--text);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  font-size: .82rem;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
  transition: background .18s, padding-left .18s;
}

.user-dropdown-item:last-child {
  border-bottom: none;
}

.user-dropdown-item:hover {
  background: var(--cream-dark);
  padding-left: 22px;
}

.user-dropdown-item i {
  width: 16px;
  text-align: center;
  color: var(--olive);
  font-size: .82rem;
}

.user-dropdown-item.logout {
  color: #c0392b;
}

.user-dropdown-item.logout i {
  color: #c0392b;
}

.user-dropdown-item.logout:hover {
  background: #fdf0ef;
}

.Banner {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(44, 31, 14, .62) 0%, rgba(44, 31, 14, .18) 50%, rgba(44, 31, 14, .58) 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: 100px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.BannerContent {
  max-width: 860px;
  padding: 20px;
  z-index: 1;
  position: relative;
  animation: fadeUp 1.1s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.BannerHeading {
  font-family: var(--fd);
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.AccentText {
  color: var(--gold-light);
  font-style: italic;
}

.BannerDescription {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(251, 245, 230, .85);
  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: var(--nav-bg);
  padding: 14px 36px;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
}

.PrimaryBtn:hover {
  background: var(--dark-olive);
  transform: translateY(-2px);
}

.SecondaryBtn {
  background: transparent;
  color: var(--cream);
  padding: 14px 36px;
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(251, 245, 230, .4);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
}

.SecondaryBtn:hover {
  background: rgba(251, 245, 230, .1);
  border-color: rgba(251, 245, 230, .7);
  transform: translateY(-2px);
}

.StyleBar {
  background: var(--primary);
  padding: 18px 5%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-bottom: 1px solid rgba(184, 134, 11, .18);
}

.StyleBar span {
  color: rgba(184, 134, 11, .55);
  font-size: .7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: default;
  transition: color .3s;
}

.StyleBar span:hover {
  color: var(--olive);
}

.Featured-Text {
  font-family: var(--fd);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5% 0;
}

.SectionHeading {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--primary);
  text-align: center;
}

.Featured {
  background: var(--section-mid);
}

.New-Arrivals {
  background: var(--section-cream);
}

.Best-Sellers {
  background: var(--section-dark);
}

.Slider {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 0 5% 20px;
}

.slider-window {
  overflow: hidden;
}

.sliderTrack {
  display: flex;
  gap: 22px;
  transition: transform .5s var(--ease);
}

.sliderProgressContainer {
  width: 160px;
  height: 2px;
  background: rgba(44, 31, 14, .1);
  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 var(--border);
  background: var(--cream);
  color: var(--primary);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.nav-btn:hover {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}

.View-All {
  display: block;
  width: fit-content;
  margin: 28px auto 48px;
  padding: 13px 42px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--fb);
  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(--primary);
  color: var(--cream);
  transform: translateY(-2px);
}

.product-card {
  width: 295px;
  min-width: 295px;
  max-width: 295px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
  contain: layout style;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.image-container {
  width: 100%;
  height: 240px;
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.product-card:hover .image-container img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--olive);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: .63rem;
  font-weight: 600;
  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(--dark-olive);
  margin-bottom: 7px;
}

.product-card .product-title {
  font-family: var(--fd);
  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;
  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, .38);
  font-size: .84rem;
}

.current-price {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn {
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .25s ease;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--dark-olive);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--beige);
}

.CategoriesSection {
  background: var(--section-warm);
  padding: 70px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.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);
}

.CategoryCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 31, 14, .80) 0%, rgba(44, 31, 14, .18) 60%, transparent 100%);
  transition: opacity .4s;
}

.CategoryCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.CategoryTitle {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
}

.CategoryDetail {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  position: relative;
  z-index: 1;
}

.exclusive-offer-container {
  background: var(--primary);
  color: var(--cream);
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}

.exclusive-offer-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184, 134, 11, .09), transparent 70%);
  pointer-events: none;
}

.exclusive-offer-label {
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive);
}

.exclusive-offer-title {
  font-family: var(--fd);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
}

.exclusive-offer-description {
  font-size: .94rem;
  line-height: 1.75;
  opacity: .7;
  max-width: 540px;
}

.exclusive-offer-button {
  margin-top: 10px;
  background: var(--olive);
  color: var(--primary);
  padding: 14px 46px;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
}

.exclusive-offer-button:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
}

.about-label-wrap {
  text-align: center;
  padding-top: 70px;
}

.about-brand-title {
  font-family: var(--fd);
  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-mid);
  padding: 80px 5%;
}

.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: linear-gradient(135deg, var(--beige), var(--cream-dark));
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.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(--primary);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.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 var(--border);
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-section {
  background: var(--section-warm);
  padding: 80px 5%;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.testimonial-section-heading {
  font-family: var(--fd);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  color: var(--primary);
  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-card {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--cream);
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
}

.testimonial-card p {
  font-family: var(--fd);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(44, 31, 14, .8);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.avatar {
  background: var(--primary);
  color: var(--olive);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.client-info strong {
  font-size: .84rem;
  display: block;
  color: var(--primary);
  font-weight: 600;
}

.client-info span {
  font-size: .7rem;
  letter-spacing: .5px;
  color: var(--text-muted);
}

.exclusive-newsletter-section {
  background: var(--primary);
  padding: 100px 5%;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}

.exclusive-newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(184, 134, 11, .08), transparent 60%);
}

.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(--olive);
}

.exclusive-newsletter-title {
  font-family: var(--fd);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}

.exclusive-newsletter-text {
  font-size: .92rem;
  line-height: 1.75;
  opacity: .65;
  margin-bottom: 40px;
}

.exclusive-newsletter-form {
  display: flex;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: var(--radius-pill);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(184, 134, 11, .06);
}

.exclusive-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 22px;
  color: var(--cream);
  font-family: var(--fb);
  font-size: .84rem;
  outline: none;
}

.exclusive-newsletter-input::placeholder {
  color: rgba(245, 223, 160, .38);
}

.exclusive-newsletter-submit {
  background: var(--olive);
  color: var(--primary);
  border: none;
  padding: 0 28px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
  white-space: nowrap;
}

.exclusive-newsletter-submit:hover {
  background: var(--gold-bright);
}

.newsletter-success-message {
  display: none;
  margin-top: 18px;
  color: var(--olive);
  font-size: .88rem;
}

.stats-counter-section {
  background: var(--section-warm);
  padding: 90px 5%;
}

.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-family: var(--fd);
  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: var(--text-muted);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 14, .55);
  backdrop-filter: blur(4px);
  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: var(--cream);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(44, 31, 14, .18);
  will-change: transform;
}

.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 var(--border);
  flex-shrink: 0;
  background: var(--cream);
}

.cart-drawer-header h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  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;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(44, 31, 14, .3);
  gap: 12px;
}

.cart-empty i {
  font-size: 2.5rem;
}

.cart-empty p {
  font-size: .9rem;
}

@keyframes cartIn {
  from {
    opacity: 0;
    transform: translateX(20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  position: relative;
  animation: cartIn .3s ease;
}

.cart-item-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream-dark);
  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-size {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-olive);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: .8rem;
  color: var(--dark-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 var(--border);
  background: var(--cream);
  border-radius: 4px;
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.cart-qty-row button:hover {
  background: var(--beige);
}

.cart-qty-row span {
  font-size: .85rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 7px;
  right: 9px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(44, 31, 14, .22);
  transition: color .2s;
  line-height: 1;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-coupon {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.coupon-input-row,
.coupon-row {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--fb);
  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, .35);
}

.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,
.coupon-msg.err {
  color: #c0392b;
}

.cart-footer {
  padding: 14px 18px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-muted);
}

.cart-grand-total,
.cart-grand {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  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, .78);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}
/* ── FAQ Section ─────────────────────────────────────────── */
.about-faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}

.about-faq .section-label {
  display: block;
  margin-bottom: 10px;
}

.about-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text, #2a1f0e);
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border-bright, #d4c9a8);
  padding: 0;
  margin-bottom: 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border-bright, #d4c9a8);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text, #2a1f0e);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold, #7A5800);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--gold, #7A5800);
}

.faq-item p {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted, #6b5c42);
  padding: 0 4px 24px;
  margin: 0;
}

.faq-item p a {
  color: var(--gold, #7A5800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item p a:hover {
  opacity: 0.75;
}
.modal-overlay.open {
  display: flex;
  animation: modalFade .3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-box {
  background: var(--cream);
  width: 100%;
  max-width: 880px;
  padding: 44px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(44, 31, 14, .28);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp .35s var(--ease);
}

@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(--cream-dark);
  position: relative;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge,
.modal-price-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--olive);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.modal-price-row .modal-price-badge {
  position: static;
  display: inline-block;
}

.modal-content-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-cat {
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark-olive);
}

.modal-title {
  font-family: var(--fd);
  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, .38);
  font-size: .9rem;
}

.modal-price-row .cur-price {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.modal-price-row .disc-badge {
  background: var(--primary);
  color: var(--olive);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.specs-label {
  font-size: .67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-olive);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.specs-list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.specs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
}

.ship-note {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 13px 16px;
  background: var(--cream-dark);
  border-radius: 8px;
  border-left: 2px solid var(--olive);
  margin: 0;
}

.size-selector {
  display: flex;
  align-items: center;
  gap: 14px;
}

.size-selector label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  font-weight: 500;
}

.size-selector select {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: .88rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  font-family: var(--fb);
}

.size-selector select:focus {
  border-color: var(--olive);
}

.add-to-cart-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.qty-btn {
  width: 44px;
  height: 46px;
  background: var(--cream-dark);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--beige);
}

.qty-input {
  width: 56px;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  font-family: var(--fb);
}

.add-btn {
  flex: 1;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .73rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
  font-family: var(--fb);
}

.add-btn:hover:not(:disabled) {
  background: var(--dark-olive);
  transform: translateY(-1px);
}

.add-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(44, 31, 14, .3);
  transition: color .2s, transform .3s;
  z-index: 1;
}

.close-btn:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.stock-warning {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff4e0;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 500;
  width: 100%;
  margin-bottom: 8px;
}

.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;
}

.modal-sku {
  font-size: .67rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(44, 31, 14, .3);
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--cream);
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  letter-spacing: .5px;
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(44, 31, 14, .25);
  will-change: transform, opacity;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast.toast-error {
  background: #c0392b;
}

.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, .65) 0%, rgba(44, 31, 14, .25) 55%, rgba(44, 31, 14, .7) 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(--cream), transparent);
}

.about-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
  animation: fadeUp 1s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.about-hero-label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.about-hero h1 em {
  color: var(--olive);
  font-style: italic;
}

.about-hero p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(251, 245, 230, .82);
  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(--cream);
  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(--cream-dark);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.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-family: var(--fd);
  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(--dark-olive);
  font-weight: 600;
  transition: gap .3s;
}

.about-story-link:hover {
  gap: 16px;
}

.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;
  border-top: 1px solid rgba(184, 134, 11, .18);
  border-bottom: 1px solid rgba(184, 134, 11, .18);
}

.about-num-val {
  font-family: var(--fd);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  color: var(--olive);
  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, .55);
}

.about-values {
  background: var(--section-mid);
  padding: 100px 5%;
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.about-values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.about-values-header h2 {
  font-family: var(--fd);
  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: var(--cream);
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  contain: layout style;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--olive);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-value-card h3 {
  font-family: var(--fd);
  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(--cream);
  padding: 100px 5%;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.about-team h2 {
  font-family: var(--fd);
  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-dark);
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  contain: layout style;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
  border: 3px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--fd);
  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-mid);
  padding: 100px 5%;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.about-timeline h2 {
  font-family: var(--fd);
  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;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  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(--cream);
  box-shadow: 0 0 0 3px var(--olive);
  justify-self: center;
}

.timeline-year {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--olive);
  display: block;
  margin-bottom: 6px;
}

.timeline-text h3 {
  font-family: var(--fd);
  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(--cream);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184, 134, 11, .09), transparent 65%);
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.about-cta h2 {
  font-family: var(--fd);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-cta p {
  font-size: .94rem;
  opacity: .7;
  margin-bottom: 44px;
  line-height: 1.75;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--olive);
  color: var(--primary);
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.cta-btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.cta-btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 134, 11, .4);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.cta-btn-outline:hover {
  border-color: rgba(184, 134, 11, .8);
  transform: translateY(-2px);
}

.exclusive-footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 3% 0;
}

.exclusive-footer {
  background: #1C1008;
  border-top: 1px solid rgba(184, 134, 11, .30);
}

@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);
  }

  .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;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .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);
  }

  .BannerButtons {
    flex-direction: column;
    align-items: center;
  }

  .PrimaryBtn,
  .SecondaryBtn {
    width: 240px;
    text-align: center;
  }

  .heritage-stats-row {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 80%;
  }

  .cart-drawer {
    width: 100%;
  }

  .stats-wrapper {
    gap: 28px;
  }
}

@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;
  }

  .modal-box {
    padding: 24px;
  }
}

@media (max-width: 500px) {
  .search-wrapper {
    display: none;
  }

  .Sub-Navbar {
    padding: 0 4%;
    gap: 10px;
  }

  .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);
  }

  .StyleBar {
    justify-content: center;
    gap: 10px 18px;
  }

  .StyleBar span {
    font-size: .62rem;
  }

  .testimonial-card {
    flex: 0 0 92%;
  }

  .add-to-cart-row {
    flex-wrap: wrap;
  }

  .add-btn {
    width: 100%;
  }
}