/* ===== DESIGN TOKENS ===== */
:root {
  --black: #1a1a1a;
  --cream: #f5f1e8;
  --cream-dark: #ede8dc;
  --gold: #c9a961;
  --gold-dark: #b8924a;
  --brown: #4a3f35;
  --white: #ffffff;
  --gray: #6b6b6b;
  --charcoal: #2a2a2a;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  /* padding-top: 80px; */
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
}

.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.header-since {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.05) 0%,
    rgba(201, 169, 97, 0.1) 100%
  );
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
  display: inline;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-dark);
  padding: 15px 36px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.btn-accent {
  width: fit-content;
  padding: 0.7rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--gold);
  font-family: var(--font-serif);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.btn-accent:hover {
  border-color: var(--gold-dark);
  background: white;
  color: var(--gold-dark);
}

/* Hero Video */
.hero-visual {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: var(--charcoal);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3a3a 100%);
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 0 12px rgba(201, 169, 97, 0.2);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(201, 169, 97, 0.25);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--black);
  margin-left: 4px;
}

.video-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-floating .number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-floating .text {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

.hero-floating .text strong {
  display: block;
  color: var(--black);
  font-size: 0.9rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid #f0ebe0;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.1),
    rgba(201, 169, 97, 0.2)
  );
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;

  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.products-grid .product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: no-repeat center / cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.products-grid .product-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.products-grid .product-card:nth-child(2) {
  grid-column: span 5;
}

.products-grid .product-card:nth-child(3) {
  grid-column: span 5;
}

.products-grid .product-card:nth-child(4) {
  grid-column: span 4;
}

.products-grid .product-card:nth-child(5) {
  grid-column: span 4;
}

.products-grid .product-card:nth-child(6) {
  grid-column: span 4;
}

.products-grid .product-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  top: 0;
  left: 0;
  z-index: 0;
}

.products-grid .product-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.products-grid .product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-overlay .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.product-overlay .explore-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.products-grid .product-card:hover .explore-link svg {
  transform: translateX(6px);
}

/* ===== VIDEO REVIEWS ===== */
.reviews {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.5) 0%, rgba(237, 232, 220, 0.3) 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.reviews-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  min-width: calc(33.333% - 21px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 420px;
  max-height: 520px;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
}

.review-video {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3a3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.review-video-element:not([src]) {
  display: none;
}

.review-video .review-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.review-card:hover .review-thumb {
  opacity: 0.7;
}

.review-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.review-play:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(201, 169, 97, 0.45);
}

.review-play svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  margin-left: 3px;
}

.review-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.review-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  filter: drop-shadow(0 1px 2px rgba(201, 169, 97, 0.2));
}

.review-quote {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.review-customer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.15);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  letter-spacing: 0.3px;
}

.review-location {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 3px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}

.carousel-btn:hover::before {
  width: 100%;
  height: 100%;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
  position: relative;
  z-index: 1;
}

.carousel-btn:hover svg {
  stroke: var(--black);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  justify-content: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot:hover {
  background: rgba(201, 169, 97, 0.5);
}

.carousel-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

/* Responsive styles moved to responsive.css */

/* ===== HERITAGE ===== */
.heritage {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--white);
}

.heritage .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.heritage-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.heritage-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(0.3);
}

.heritage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  transform: translate(16px, 16px);
  pointer-events: none;
}

.heritage-content .section-label {
  color: var(--gold);
}

.heritage-content .section-label::before,
.heritage-content .section-label::after {
  background: var(--gold);
}

.heritage h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.heritage p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.heritage-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.heritage-stat .stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
}

.heritage-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  /* no filter — show the real logo colours */
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.18));
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.footer-tagline span {
  color: rgb(43, 102, 150);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-link:hover svg {
  fill: var(--black);
}

.footer h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===== PRODUCT PAGE ===== */
.product-banner {
  width: 100%;
  height: 80vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/bannerBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(245, 238, 238);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.category-navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 20px 0;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
}
.category-navbar a {
  padding: 0 10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.5px;
}
.category-navbar a:hover {
  background-color: var(--gold);
  color: white;
}
.category-navbar a.active {
  background: var(--gold);
  color: white;
}

.featured-products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}

.featured-products .product-card {
  flex: 1 1 48%;
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: var(--cream);
}

.featured-products .product-card img {
  width: 55%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray);
  padding: 20px 0 0 40px;
}

.offers-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  padding: 20px 0 20px 40px;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 10px;
}

.product-info h3 {
  font-family: var(--font-serif);
  color: var(--gold-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-info del {
  font-family: var(--font-serif);
  color: gray;
  margin-right: 8px;
  /* font-size: 1.2rem; */
}

.product-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.product-info h5 {
  font-family: var(--font-serif);
  display: flex;
  /* align-items: center; */
  justify-content: space-evenly;
  flex-wrap: wrap;
  /* gap: 10px; */
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 2rem 3rem;
  justify-content: center;
}

.cat-card {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 16px;
  background: var(--cream);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cat-card img {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.03);
}

.cat-card button {
  margin-left: 0;
  align-self: flex-start;
}

/* ===== RESPONSIVE — see responsive.css ===== */
/* Product page responsive — see responsive.css */

/* ===== CONTACT US STYLES START ===== */
.contact-section {
  padding: 80px 0 60px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.contact-info {
  max-width: 450px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.contact-info h4 {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--black);
}

.contact-info p a {
  color: var(--black);
  font-weight: 600;
}

.contact-form-wrapper {
  display: flex;
  justify-content: flex-start;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid #f0ebe0;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #e9e3d7;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: linear-gradient(180deg, #fff, #fbfaf8);
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.contact-form .btn-accent {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
}

/* Contact responsive — see responsive.css */

/* ===== CONTACT US STYLES END ===== */

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  /* background: linear-gradient(135deg, #25d366, #20ba5a); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  /* box-shadow: 0 10px 40px rgba(11, 99, 43, 0.4); */
  transition: all 0.5s ease;
  border: none;
  color: var(--white);
  font-size: 28px;

}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
 
} 

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* WhatsApp button responsive — see responsive.css */

/* from left padding  */
#form-success {
  padding: 80px 20px;
  max-width: 600px;
}