/* ==========================================================================
   NCR Crafts — main.css
   Full design system: variables, reset, typography, components, sections
   ========================================================================== */

/* ─── 1. CSS VARIABLES ──────────────────────────────────────────────────── */
:root {
  /* Brand Colors (Light & Calm Romantic Indian Aesthetic) */
  --gold:          #6D2E46; /* Primary Burgundy */
  --gold-light:    #D5B9B2; /* Calm Dusty Rose */
  --gold-pale:     #F3EEEC; /* Ultra-light Rose Pearl */
  --pink:          #A26769; /* Mauve Accent */
  --pink-light:    #CEBEBE; /* Soft Taupe for borders */
  --pink-pale:     #FDFBF7; /* Ivory Base Background */
  
  --white:         #ffffff;
  --cream:         #F7F3EB; /* Lightened Ivory for airier feel */
  --cream-warm:    #F7F3EB;
  --bg-warm:       #F7F3EB;

  /* Text (Calm & Readable) */
  --text-dark:     #4A3B34; /* Soft Brown-Plum instead of harsh black */
  --text-muted:    #8C7C75;
  --text-light:    #CEBEBE;
  --text-white:    #ffffff;

  /* Border Radius */
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-pill:   9999px;

  /* Shadows (Minimal & Airy) */
  --shadow-xs:     0 1px 3px rgba(109,46,70,0.02);
  --shadow-sm:     0 2px 8px rgba(109,46,70,0.03);
  --shadow-md:     0 4px 20px rgba(109,46,70,0.04);
  --shadow-lg:     0 8px 40px rgba(109,46,70,0.06);
  --shadow-gold:   0 4px 20px rgba(109,46,70,0.15);
  --shadow-pink:   0 4px 20px rgba(213,185,178,0.10);

  /* Spacing */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      1.5rem;
  --space-xl:      1.0rem;
  --space-2xl:     1.5rem;

  /* Typography */
  --font-main:     'Nunito', system-ui, -apple-system, sans-serif;
  --font-heading:  'Cormorant Garamond', 'Georgia', serif;
  --fw-light:      300;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;

  /* Sizes */
  --header-h:      60px;
  --shipping-h:    32px;
  --container-max: 100%;
  --container-px:  clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.35s var(--ease);
  --transition-slow: 0.5s var(--ease);
}
/* main css file, responsible for main structure*/

/* ─── 2. RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-family, var(--font-main));
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Space for fixed header/announcement bar */
  padding-top: calc(var(--header-h) + var(--shipping-h));
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: 1; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: var(--fw-medium); line-height: 1.25; color: var(--text-dark); }

/* ─── 3. TYPOGRAPHY ──────────────────────────────────────────────────────── */
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.entry-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.entry-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; list-style: disc; }

/* ─── 4. UTILITIES ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.container--narrow { max-width: 860px; }

.sr-only, .screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; top: -9999px; }
.skip-link:focus { top: 0; left: 0; z-index: 9999; padding: 0.5rem 1rem; background: var(--gold); color: var(--white); }

/* ─── 5. BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { 
  background: var(--gold-light); 
  border-color: var(--gold-light); 
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}


.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

.btn--hero-primary {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  font-weight: var(--fw-bold);
}
.btn--hero-primary:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--hero-outline:hover { background: var(--white); color: var(--text-dark); }

.btn--him {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--her {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--cart,
.btn--view-details {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(109, 46, 70, 0.08); /* Adjusted to match primary plum #6D2E46 */
}
.btn--cart:hover,
.btn--view-details:hover { 
  background: var(--gold); 
  color: var(--white);
  box-shadow: 0 8px 24px rgba(109, 46, 70, 0.25);
  transform: translateY(-2px);
}

/* Revert to solid gold on Home Page only as requested — HIGH IMPACT ENHANCEMENT */
.home .btn--view-details {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(109, 46, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  border: none;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.home .btn--view-details::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  opacity: 0.9;
}

.home .btn--view-details:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(109, 46, 70, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.home .btn--view-details:hover::after {
  transform: translateX(6px);
  opacity: 1;
}



/* ─── 5B. SECTION HEADERS ────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-header__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.section-header__title--gold { color: var(--gold); }
.section-header__line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: var(--radius-pill);
}

/* ─── 6. SHIPPING BAR ────────────────────────────────────────────────────── */
.shipping-bar {
  width: 100%;
  height: var(--shipping-h);
  background: var(--bg-warm);
  text-align: center;
  padding: 0 var(--container-px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-bar .shipping-bar {
  top: 32px;
}
.admin-bar .site-header {
  top: calc(32px + var(--shipping-h));
}

@media screen and (max-width: 782px) {
  .admin-bar .shipping-bar {
    top: 46px;
  }
  .admin-bar .site-header {
    top: calc(46px + var(--shipping-h));
  }
}
.shipping-bar__text {
  font-size: 0.80rem;
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── 7. NAVBAR ──────────────────────────────────────────────────────────── */

/*
 * The navbar sits in a fixed wrapper just below the shipping bar.
 * It slides up (translateY(-100%)) on any downward scroll and
 * slides back down on upward scroll. JS adds .navbar--hidden to trigger/* At very top */
.site-header {
  position: fixed;
  top: var(--shipping-h);
  left: 0;
  right: 0;
  z-index: 1000;
  /* Completely transparent as requested */
  background: transparent;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

/* Hide: slide the navbar fully away */
.site-header.navbar--hidden {
  transform: translateY(calc(-100% - var(--shipping-h)));
}

/* Account for admin bar in hidden state */
.admin-bar .site-header.navbar--hidden {
  transform: translateY(calc(-100% - var(--shipping-h) - 32px));
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header.navbar--hidden {
    transform: translateY(calc(-100% - var(--shipping-h) - 46px));
  }
}

/* Opaque state when user scrolls back up past a threshold */
body:not(.home) .site-header,
.site-header.navbar--opaque {
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
}

/* Slide up to 0 only when in opaque mode (scrolled down) */
.site-header.navbar--opaque {
  top: 0 !important;
}

/* Adjust for Admin Bar */
.admin-bar .site-header.navbar--opaque {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header.navbar--opaque {
    top: 46px !important;
  }
}

/* ── Text colours ─── */
/* Default — dark text */
.site-header .navbar__logo-text,
.site-header .navbar__menu li a,
.site-header .navbar__icon-btn {
  color: var(--text-dark);
  transition: color 0.35s var(--ease);
}


/* Logo image filter */
.site-header .custom-logo {
  filter: none;
  transition: filter 0.35s var(--ease);
}


/* Hover states */
.site-header .navbar__menu li a:hover {
  background: rgba(255,255,255,0.12);
}
body:not(.home) .site-header .navbar__menu li a:hover,
.site-header.navbar--opaque .navbar__menu li a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

/* Hamburger lines */
.site-header .hamburger__line {
  background: var(--text-dark);
}


.navbar { width: 100%; }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 3rem); /* Added slight more horizontal padding for edges */
  max-width: 100%; /* Stretch to full width of screen */
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo */
.navbar__logo a { display: flex; align-items: center; }
.navbar__logo img { height: 44px; width: auto; object-fit: contain; transition: height 0.4s var(--ease); }
.navbar__logo-text {
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.navbar__logo .custom-logo { height: 44px; width: auto; object-fit: contain; transition: height 0.4s var(--ease); }

.site-header.scrolled .navbar__logo img,
.site-header.scrolled .navbar__logo .custom-logo {
  height: 36px;
}

/* Primary menu */
.navbar__menu-wrap { display: flex; flex: 1; justify-content: flex-start; margin-left: 1.5rem; }
.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}
.navbar__menu li a, .navbar__menu li > a {
  display: block;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500; /* Normal weight to match target */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
}
.navbar__menu li a:hover,
.navbar__menu li.current-menu-item > a,
.navbar__menu li.current-page-ancestor > a {
  color: var(--gold);
  opacity: 1;
}
.navbar__menu li.current-menu-item > a { font-weight: 600; }

/* Utility icons & Right Menu Items */
.navbar__utils {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.navbar__menu--right {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  margin-right: 1.5rem;
}
.navbar__menu--right li a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
}
.navbar__menu--right li a:hover {
  color: var(--gold);
  opacity: 1;
}
.site-header .navbar__menu--right li a { color: var(--text-dark); }
body:not(.home) .site-header .navbar__menu--right li a,
.site-header.navbar--opaque .navbar__menu--right li a { color: var(--text-dark); }
body:not(.home) .site-header .navbar__menu--right li a:hover,
.site-header.navbar--opaque .navbar__menu--right li a:hover { color: var(--gold); }
.navbar__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
}
.navbar__icon-btn:hover { 
  background: var(--gold-pale) !important; 
  color: var(--gold) !important; 
  opacity: 1; 
}
.navbar__icon-btn:hover svg {
  stroke: var(--gold) !important;
}
.navbar__icon-btn:hover .ncrcrafts-cart-amount {
  color: var(--gold) !important;
}

/* Cart button needs auto width to hold the price amount */
.navbar__cart-btn {
  width: auto;
  padding: 0 0.5rem;
  gap: 0.2rem;
}
.ncrcrafts-cart-amount {
  font-size: 0.95rem;
  font-weight: 600;
  color: inherit;
}

/* Cart count badge */
.ncrcrafts-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ncrcrafts-cart-count:empty,
.ncrcrafts-cart-count[data-count="0"] { display: none; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.navbar__hamburger.active .hamburger__line--bot { transform: translateY(-7px) rotate(-45deg); }
.navbar__menu-close { display: none; }

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gold-pale);
  padding: 1rem var(--container-px);
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 998;
}
.search-dropdown.open { display: block; animation: slideDown 0.2s var(--ease); }
/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--gold-pale);
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}
.search-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.search-dropdown__field-wrap {
  display: flex;
  gap: 1rem;
  background: var(--bg-warm);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-pale);
}
.search-dropdown__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-main);
  color: var(--text-dark);
}
.search-dropdown__submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.search-dropdown__submit:hover {
  background: var(--text-dark);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ─── 8. HERO ─────────────────────────────────────────────────────────────── */
/* Body needs no padding on home page because the hero handles the spacing for overlap */
body.home, 
.admin-bar body.home {
  padding-top: 0 !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #6D2E46; /* Brand Burgundy base for dark contrast */
  padding-top: calc(var(--header-h) + var(--shipping-h));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(calc(1 - var(--hero-scroll, 0) * 0.5));
  transition: filter 0.1s linear;
  opacity: 0.65; /* Increased opacity to make image more visible */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 15, 18, 0.45) 0%, /* Reduced dark tint opacity */
    rgba(26, 15, 18, 0.25) 50%,
    rgba(26, 15, 18, 0) 100%
  );
  z-index: 1;
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--gold);
  pointer-events: none;
}
.hero__deco--1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero__deco--2 { width: 300px; height: 300px; bottom: -80px; right: 200px; background: var(--pink); opacity: 0.06; }

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 0 3.5rem;
}
.hero__inner { max-width: var(--container-max); }

.hero__title {
  font-size: 58px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 18px;
  font-family: var(--font-main);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.6;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn--hero-primary {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
}
.btn--hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
}
.btn--hero-outline:hover {
  background: #ffffff;
  color: var(--gold);
  transform: translateY(-2px);
}

/* Wave */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  margin-bottom: -1px;
}
.hero__wave svg { 
  width: 100%; 
  height: 80px; 
  transform: scaleY(-1);
}

/* ─── 9. CATEGORIES ──────────────────────────────────────────────────────── */
.categories-section {
  padding: 1rem 0 1rem;
  background: var(--white);
  position: relative;
}

.categories-section__track-wrap {
  position: relative;
  display: block; /* Removed flex flow so arrows can be absolute and track takes 100% width */
  padding: 0; /* Remove horizontal padding so the track uses max width */
  max-width: 1000px; /* Restrict width to pull category circles closer together */
  margin: 0 auto;
}

.categories-section__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; /* Larger hit area */
  height: 44px;
  background: transparent;
  border: none;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}
.categories-section__arrow--prev {
  left: 0;
}
.categories-section__arrow--next {
  right: 0;
}
.categories-section__arrow:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

/* The scrollable track */
.categories-section__track {
  display: flex;
  gap: 0; /* Remove fixed gap, use percentage scaling */
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}
.categories-section__track::-webkit-scrollbar { display: none; }

.category-pill { 
  flex: 0 0 33.33333%; /* Force exactly 3 visible */
  min-width: 0; 
}
@media (max-width: 900px) {
  .category-pill { flex: 0 0 33.33333%; } /* Show 3 across */
}
@media (max-width: 575px) {
  .category-pill { flex: 0 0 33.33333%; } /* Force 3 on mobile too */
}

.category-pill__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  transition: transform var(--transition);
}
.category-pill__link:hover { transform: translateY(-4px); opacity: 1; }

.category-pill__circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), var(--gold-light)); /* Soft Ivory to Rose */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(109, 46, 70, 0.05); /* Extremely soft tint */
  transition: all 0.4s var(--ease);
  padding: 6px;
}

/* The thin white border inside the gold circle (to match target design precisely) */
.category-pill__circle::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5); /* Even softer inner line */
  pointer-events: none;
  opacity: 0.8;
}

.category-pill__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
}

.category-pill__link:hover .category-pill__circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(109, 46, 70, 0.1);
}

.category-pill__link:hover .category-pill__img {
  transform: scale(1.08);
}

.category-pill__label {
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.category-pill__link:hover .category-pill__label {
  color: var(--gold);
}

/* ─── DOTS NAVIGATION ────────────────────────────────────────────────────── */
.categories-section__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.categories-section__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d1d1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categories-section__dot--active {
  background: var(--gold);
  transform: scale(1.1);
}

.categories-section__divider {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 1.5rem;
  opacity: 0.6;
}

/* ─── 10. PRODUCT CARDS ──────────────────────────────────────────────────── */
.products-section {
  padding: 0.25rem 0;
  background: var(--bg-warm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* product-card__link must be a flex column so the info inside can push the
   action button to the bottom with margin-top: auto */
.product-card__link { 
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit; 
}
.product-card__link:hover { opacity: 1; }

.product-card__thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--cream);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  z-index: 1;
}
.product-card__badge--sale { background: #A26769; color: #ffffff; }
.product-card__badge--new  { background: #D5B9B2; color: #6D2E46; }

/* Info wrapper fills remaining link height, flex column to allow
   price + button to be pushed to the bottom */
.product-card__info { 
  padding: 1.25rem 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;  /* Grows to fill the card below the image */
  text-align: left; /* Switching to left-aligned for a calmer, less 'loud' feel */
}
.product-card__cat {
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 400;
  color: #A26769;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.product-card__cat a { color: #A26769; }
.product-card__title {
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em; /* Fixed height for 2 lines to keep alignment */
}
.product-card__price { 
  font-size: 1.1rem; 
  font-family: var(--font-main);
  color: #A26769; 
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center; /* Center price */
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.product-card__price del { 
  color: var(--text-light); 
  font-weight: 400; 
  font-size: 0.85rem; 
  text-decoration: line-through;
}
.product-card__price ins { text-decoration: none; }

.product-card__actions {
  margin-top: auto; 
  padding: 0.75rem 1.25rem 2rem; /* Generous bottom padding as per target */
  display: flex;
  justify-content: center;
}

/* Ensure button isn't full width in this specific context */
.product-card__actions .btn {
  width: auto !important;
  min-width: 140px;
  padding: 0.65rem 1.5rem;
}

.products-section__cta { text-align: center; }
.products-section__empty { text-align: center; color: var(--text-muted); padding: 3rem 0; }

/* ─── 11. QUOTE SECTION ──────────────────────────────────────────────────── */
.quote-section {
  padding: 1rem 0 0.25rem;
  background: #ffffff !important; /* Force white full-width background */
}
.quote-section__blockquote {
  text-align: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}
.quote-section__mark {
  font-size: 8rem;
  color: #D5B9B2;
  line-height: 0.5;
  font-family: Georgia, serif;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 0;
  opacity: 0.7;
}
.quote-section__text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-family: var(--font-heading);
  font-style: italic;
  color: #6D2E46;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.quote-section__hearts { margin-top: 1.5rem; font-size: 1.5rem; color: #A26769; }


/* ─── 14. BUDGET STRIP (POLAROID STYLE) ──────────────────────────────────── */
.budget-section {
  padding: 1rem 0;
  background: #ffffff; /* Full-width white background as requested */
  text-align: center;
}

.budget-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

.budget-section__subtitle {
  color: #d12e2e; /* Red as in mockup */
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.budget-strip-wrap {
  position: relative;
  background: transparent; /* Seamless with the white section background */
  padding: 0.75rem 0;
  border-top: 1px solid #D5B9B2;
  border-bottom: 1px solid #D5B9B2;
  margin: 0.5rem 0;
  overflow: visible; /* Allow tape to show */
}

/* Decorative center icon for lines */
.budget-strip-wrap::before {
  content: '♥';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 0 1rem;
  color: #A26769;
  font-size: 1.2rem;
  z-index: 2;
}

.budget-strip-inner {
  max-width: 1800px; /* Aggressive expansion for "wider area" request */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  padding: 0 var(--container-px);
}

/* Polaroid Card */
.polaroid-card {
  flex: 1;
  max-width: 380px; /* Larger cards for wider space */
  background: var(--white);
  padding: 0.75rem 0.75rem 4rem 0.75rem;
  box-shadow: 0 15px 45px rgba(109,46,70,0.08);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(213,185,178,0.3);
}

/* Washi Tape Effect */
.polaroid-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px;
  height: 30px;
  background: rgba(213,185,178,0.4);
  backdrop-filter: blur(1px);
  z-index: 2;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.polaroid-card--0 { transform: rotate(-3deg); }
.polaroid-card--1 { transform: rotate(2deg); }
.polaroid-card--2 { transform: rotate(-2.5deg); }
.polaroid-card--3 { transform: rotate(3deg); }

.polaroid-card:hover {
  transform: translateY(-15px) rotate(0deg) !important;
  z-index: 5;
  box-shadow: 0 30px 60px rgba(109,46,70,0.15);
}

.polaroid-card__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #eee;
}

.polaroid-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-card__caption {
  text-align: center;
}

.polaroid-card__title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: #6D2E46;
  display: block;
}

/* Labels row */
.budget-labels {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 2rem auto 0;
}

.budget-label-btn {
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: #6D2E46;
  background: transparent;
  border: 1.5px solid #D5B9B2;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.budget-label-btn:hover {
  background: #6D2E46;
  color: #ffffff;
  border-color: #6D2E46;
}

.budget-label-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .budget-strip-inner {
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
  }
  .polaroid-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .budget-labels {
    gap: 1rem;
    padding: 0 1rem;
  }
  .budget-label-btn {
    flex: 0 0 calc(50% - 0.5rem);
    font-size: 1rem;
    padding: 0.6rem 0.5rem;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .polaroid-card {
    flex: 0 0 100%;
    max-width: 300px;
  }
}

/* ─── 15. VIDEO STRIP ────────────────────────────────────────────────────── */
.videos-section {
  padding: 0.25rem 0;
  background: var(--cream); /* Apply consistent theme background color */
  overflow: hidden;
}
.videos-section .section-header__title {
  color: #6D2E46;
  font-weight: 600;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.videos-section__track-wrap {
  padding: 0 var(--container-px);
  max-width: 1400px;
  margin: 0 auto;
}
.videos-section__track {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 0.5rem; 
  -webkit-overflow-scrolling: touch;
  justify-content: space-between;
}

/* Custom Scrollbar for Videos */
.videos-section__track::-webkit-scrollbar {
  height: 6px;
}
.videos-section__track::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}
.videos-section__track::-webkit-scrollbar-thumb {
  background: #D5B9B2;
  border-radius: 10px;
}
.videos-section__track::-webkit-scrollbar-thumb:hover {
  background: #A26769;
}

.reel-card {
  flex: 1;
  min-width: 280px;
  max-width: 310px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(109,46,70,0.05);
  scroll-snap-align: start;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(213,185,178,0.2);
}
.reel-card:hover { 
  box-shadow: 0 20px 50px rgba(109,46,70,0.12); 
  transform: translateY(-8px); 
  border-color: #D5B9B2;
}

.reel-card__link, .reel-card__link--no-url {
  display: block;
  text-decoration: none;
  color: inherit;
}
.reel-card__thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--cream);
}
.reel-card__img, .reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.reel-card:hover .reel-card__img, .reel-card:hover .reel-card__video { transform: scale(1.06); }
.reel-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.reel-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
  opacity: 0.7;
}
.reel-card:hover .reel-card__play { opacity: 1; }
.reel-card__content {
  padding: 1.25rem 1rem;
  text-align: center;
  background: #ffffff;
}
.reel-card__title {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: #6D2E46;
  letter-spacing: 0.01em;
}

.reel-link-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6D2E46;
  background: transparent;
  border: 1.5px solid #D5B9B2;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  margin-top: 0.25rem;
}

.reel-link-btn:hover {
  background: #6D2E46;
  color: #ffffff;
  border-color: #6D2E46;
  transform: translateY(-2px);
}

/* ─── 16. REVIEW CARDS ───────────────────────────────────────────────────── */
.reviews-section {
  padding: 0.25rem 0;
  background: var(--white);
  overflow: hidden;
}

.reviews-section__quote {
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}

.reviews-section__quote p {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  color: #6D2E46;
  line-height: 1.4;
  margin: 0;
}

/* Reviews Grid (2 columns on desktop) */
.reviews-grid {
  display: flex !important;
  align-items: stretch !important; /* Force all cards to match tallest height */
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem; /* Space for scrollbar */
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Reviews */
.reviews-grid::-webkit-scrollbar {
  height: 6px;
}
.reviews-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}
.reviews-grid::-webkit-scrollbar-thumb {
  background: #D5B9B2;
  border-radius: 10px;
}
.reviews-grid::-webkit-scrollbar-thumb:hover {
  background: #A26769;
}

.review-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 45px rgba(109, 46, 70, 0.05); /* Softer brand-tinted shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(213, 185, 178, 0.2);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(162, 103, 105, 0.15); /* Soft rose glow on hover */
  border-color: #D5B9B2;
}

/* Review Card Shimmer Magic */
.review-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.7s;
  pointer-events: none;
}

.review-card:hover::after {
  left: 150%;
}

/* 1. Stars */
.review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-card__stars .star {
  font-size: 1.25rem;
  color: #A26769;
}

/* 2. Name */
.review-card__name {
  font-size: 1.1rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

/* 3. Review text */
.review-card__text {
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: #A26769;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
  flex-grow: 1; /* Fills empty space to push photo to bottom */
}

/* 4. Photo wrap */
.review-card__photo-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-top: auto;
}

.review-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Decoration */
.reviews-section__footer-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 1.5rem;
}

.decor-heart {
  font-size: 2.5rem;
  color: #A26769;
  display: flex;
  align-items: center;
}

.decor-line {
  flex: 1;
  height: 2.5px;
  background: #D5B9B2;
  position: relative;
}

/* Dots on lines */
.decor-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #D5B9B2;
  border-radius: 50%;
}

.decor-line--left::after { right: -15px; }
.decor-line--right::after { left: -15px; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(85vw - 1.5rem);
  }
}

@media (max-width: 500px) {
  .reviews-section { padding: 4rem 0; }
  .review-card { padding: 2rem 1.25rem; }
}

/* ─── 17. TRUST BAR ──────────────────────────────────────────────────────── */
.trust-bar-section {
  padding: 0.25rem 0;
  background: var(--white); 
  position: relative;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.trust-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #F3EEEC;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(109, 46, 70, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(109, 46, 70, 0.08);
  border-color: #D5B9B2;
}

.trust-item__icon {
  width: 70px;
  height: 70px;
  background: #F3EEEC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: 0.4s ease;
}

.trust-item:hover .trust-item__icon {
  background: #D5B9B2;
  transform: scale(1.1);
}

.trust-item__title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.5rem;
}

.trust-item__desc {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #A26769;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .trust-bar { padding: 4rem 0; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .trust-item { padding: 1.5rem 0.75rem; }
}

/* ─── 18. ABOUT SECTION ──────────────────────────────────────────────────── */
.quote-section {
  padding: 4rem 0;
  background: var(--cream);
  text-align: center;
}
.about-section {
  padding: 0.25rem 0;
  background: var(--white);
  text-align: center;
}
.about-section__inner { max-width: var(--container-max); margin: 0 auto; }
.about-section__logo-wrap { margin-bottom: 0.5rem; }
.about-section__logo-wrap img,
.about-section__logo-wrap .custom-logo { height: 60px; width: auto; margin: 0 auto; }
.about-section__site-name { font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--gold); }
.about-section__heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.4rem;
}
.about-section__text {
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: #A26769;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.about-section__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.about-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #6D2E46;
  border: 1.5px solid #D5B9B2;
}
.about-social-icon:hover { 
  transform: translateY(-3px); 
  background: #6D2E46;
  color: #ffffff;
  border-color: #6D2E46;
  box-shadow: 0 8px 20px rgba(109, 46, 70, 0.15);
}
.about-social-icon--instagram:hover { background: #E1306C; border-color: #E1306C; }
.about-social-icon--facebook:hover  { background: #1877F2; border-color: #1877F2; }
.about-social-icon--whatsapp:hover  { background: #25D366; border-color: #25D366; }

/* ─── 19. FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  background: #6D2E46;
  color: #ffffff;
  padding: 2rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Artisanal Texture Magic for Footer */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.footer__main {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D5B9B2;
  margin-bottom: 0.85rem;
}

.footer__logo img,
.footer__logo .custom-logo {
  max-height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
}

.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer__contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer__nav-list li a {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__nav-list li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 12px;
  font-family: var(--font-main);
  font-weight: 400;
  color: #CEBEBE;
  margin: 0;
}
.footer__copy a { color: var(--gold-light); }
.footer__policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}
.footer__policy-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__policy-links a:hover { color: var(--gold-light); opacity: 1; }

/* ─── 20. PAGES (generic) ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1.5px solid rgba(213, 185, 178, 0.3);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.25rem var(--container-px);
}
.page-hero__title {
  color: #6D2E46;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 600;
  text-shadow: none;
  margin-bottom: 0.5rem;
}
.page-hero__desc {
  color: #A26769;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.95rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.page-content-wrap { padding: var(--space-md) 0; }
.page-article__body { max-width: var(--container-max); margin: 0 auto; }

/* Global content reset to remove gaps */
#page, .site-main { margin-top: 0 !important; padding-top: 0 !important; }

/* ─── 21. 404 ────────────────────────────────────────────────────────────── */
.error-404 {
  padding: 5rem 0;
  text-align: center;
  background: var(--pink-pale);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-404__inner { max-width: var(--container-max); margin: 0 auto; }
.error-404__emoji  { font-size: 5rem; margin-bottom: 0.75rem; }
.error-404__title  { font-size: clamp(4rem, 12vw, 8rem); font-weight: var(--fw-bold); color: var(--gold); line-height: 1; margin-bottom: 0; }
.error-404__subtitle { font-size: 1.5rem; font-weight: var(--fw-semibold); color: var(--text-dark); margin-bottom: 1rem; }
.error-404__msg    { color: var(--text-muted); margin-bottom: 2rem; }
.error-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.error-404__search p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }

/* ─── 22. ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes floatingHearts {
  0% { transform: translateY(0) scale(1) rotate(0); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-200px) scale(1.5) rotate(45deg); opacity: 0; }
}

.reviews-section::before {
  content: "♥";
  position: absolute;
  bottom: 0;
  left: 10%;
  font-size: 2rem;
  color: #A26769;
  animation: floatingHearts 4s infinite linear;
  opacity: 0;
  pointer-events: none;
}
.reviews-section::after {
  content: "♥";
  position: absolute;
  bottom: 50px;
  right: 15%;
  font-size: 1.5rem;
  color: #D5B9B2;
  animation: floatingHearts 6s infinite linear 2s;
  opacity: 0;
  pointer-events: none;
}

.anim-fade-in { animation: fadeIn 0.5s var(--ease) both; }

/* ─── 23. SINGLE POST ────────────────────────────────────────────────────── */
.single-post-wrap { padding: var(--space-xl) 0; }
.single-post__thumb { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.single-post__thumb img { width: 100%; }
.single-post__header { margin-bottom: 1.5rem; }
.single-post__meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.single-post__sep  { margin: 0 0.4rem; }
.single-post__title { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: var(--fw-bold); }
.single-post__body  { margin-bottom: 2rem; }
.single-post__footer { border-top: 1px solid var(--gold-pale); padding-top: 1.5rem; }
.single-post__tags { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.tag-label { color: var(--text-dark); font-weight: var(--fw-medium); }
.single-post__nav { display: flex; justify-content: space-between; gap: 1rem; }
.single-post__nav a { font-size: 0.9rem; color: var(--gold); font-weight: var(--fw-medium); }

/* ─── 24. FILM STRIP SECTION ─────────────────────────────────────────────── */
.hsm-film-strip-section {
  width: 100%;
  background: var(--bg-warm, #eae6e0); /* Background holding the film */
  padding: var(--space-xl) 0;
  overflow: hidden;
}
.hsm-film-strip-section h2,
.hsm-film-strip-section h3,
.hsm-film-strip-section .hsm-title,
.hsm-film-strip-section [class*="title"] {
  font-family: var(--font-heading) !important;
  color: #6D2E46 !important;
}

.hsm-film-strip-wrap {
  width: 100%;
  max-width: 100%;
  background-color: #D5B9B2;
  padding: 30px 10px;
  position: relative;
}

/* Simulated Perforation Holes */
.hsm-film-strip-wrap::before,
.hsm-film-strip-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--bg-warm, #eae6e0) 0,
    var(--bg-warm, #eae6e0) 10px,
    transparent 10px,
    transparent 20px
  );
}
.hsm-film-strip-wrap::before { top: 8px; }
.hsm-film-strip-wrap::after { bottom: 8px; }

.hsm-film-strip-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Auto-hide scrollbars on supported browsers */
  -webkit-overflow-scrolling: touch;
}
.hsm-film-strip-track::-webkit-scrollbar {
  display: none;
}

.hsm-film-strip-item {
  flex: 0 0 calc(20% - 12px); /* 5 items: (100% / 5) minus gap */
  scroll-snap-align: start;
  aspect-ratio: 4/3;
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease);
}

.hsm-film-strip-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.hsm-film-strip-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hsm-film-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.hsm-film-strip-item:hover .hsm-film-strip-img {
  transform: scale(1.08); /* Hover zoom bonus effect */
}

/* Responsiveness */
@media (max-width: 991px) {
  .hsm-film-strip-item {
    flex: 0 0 calc(33.333% - 10px); /* 3 items on tablet */
  }
}

@media (max-width: 576px) {
  .hsm-film-strip-item {
    flex: 0 0 calc(80% - 15px); /* 1-2 items sideways on mobile layout */
  }
}

/* ─── 25. FLOATING WHATSAPP BUTTON ───────────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128C7E;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
  color: #fff;
  opacity: 1;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hide Floating Cart Buttons (Plugins or Default) */
.xoo-wsc-cart-trigger,
.woo-floating-cart-button,
.side-cart-icon,
.floating-cart-btn,
.ncrcrafts-floating-cart,
#woo-floating-cart-tab,
.woofc-area,
.woofc,
.woofc-trigger,
.woofc-count,
.xt_woofc,
.xt_woofc-trigger,
.wbc-cart,
.jck_wfc_btn,
.wpmenucart,
.catch-fly-cart,
.aws-container.aws-show-cart,
.elementor-widget-woocommerce-menu-cart,
.tinvel-cart-btn,
#xt_woofc,
#wpc-fly-cart {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -9999 !important;
}

@media (max-width: 767px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   THEME RESTYLE OVERRIDES — NCRCrafts Palette & Font Alignment
   Only colors and fonts. No layout, spacing, or structure changes.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero Responsive Font Sizes ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__title { font-size: 38px; }
}
@media (max-width: 576px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 15px; }
}

/* ─── Shipping / Announcement Bar ─────────────────────────────────────── */
.shipping-bar {
  /* Colors are now managed via template-parts/announcement-bar.php and ACF */
}
.shipping-bar__text {
  font-family: var(--font-main);
}

/* ─── Navbar Background ───────────────────────────────────────────────── */
body:not(.home) .site-header,
.site-header.navbar--opaque {
  background: #6D2E46 !important;
  box-shadow: 0 2px 24px rgba(109,46,70,0.15) !important;
}
body:not(.home) .site-header .navbar__logo-text,
body:not(.home) .site-header .navbar__menu li a,
body:not(.home) .site-header .navbar__icon-btn,
body:not(.home) .site-header .navbar__menu--right li a,
.site-header.navbar--opaque .navbar__logo-text,
.site-header.navbar--opaque .navbar__menu li a,
.site-header.navbar--opaque .navbar__icon-btn,
.site-header.navbar--opaque .navbar__menu--right li a {
  color: #ffffff !important;
}
body:not(.home) .site-header .navbar__menu li a:hover,
body:not(.home) .site-header .navbar__menu--right li a:hover,
.site-header.navbar--opaque .navbar__menu li a:hover,
.site-header.navbar--opaque .navbar__menu--right li a:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ECE2D0 !important;
}
body:not(.home) .site-header .hamburger__line,
.site-header.navbar--opaque .hamburger__line {
  background: #ffffff !important;
}
body:not(.home) .site-header .custom-logo,
.site-header.navbar--opaque .custom-logo {
  filter: brightness(0) invert(1) !important;
}

/* Fix navbar visibility on Home Page while transparent */
.home .site-header:not(.navbar--opaque) .navbar__logo-text,
.home .site-header:not(.navbar--opaque) .navbar__menu li a,
.home .site-header:not(.navbar--opaque) .navbar__icon-btn,
.home .site-header:not(.navbar--opaque) .navbar__menu--right li a {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2) !important;
}
.home .site-header:not(.navbar--opaque) .custom-logo {
  filter: brightness(0) invert(1) !important;
}
.home .site-header:not(.navbar--opaque) .hamburger__line {
  background: #ffffff !important;
}
.home .site-header:not(.navbar--opaque) .navbar__menu li a:hover {
  color: #ECE2D0 !important;
}

/* ─── Global Section Headers Styling ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-header__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
  font-weight: 600 !important;
  color: #6D2E46 !important;
  margin-bottom: 0.15rem !important;
}
.section-header__line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.decor-line {
  flex: 1;
  height: 1.5px;
  background: #D5B9B2;
}
.decor-heart {
  color: #A26769;
  font-size: 1.1rem;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ─── MAGIC ANIMATIONS ────────────────────────────────────────────────── */
@keyframes floatingHearts {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-150px) rotate(45deg); opacity: 0; }
}

.floating-heart {
  position: absolute;
  color: rgba(162, 103, 105, 0.4);
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 0;
  animation: floatingHearts 6s linear infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* ─── VIEW DETAILS Button — Homepage ──────────────────────────────────── */
.home .btn--view-details,
.home .product-card-view-btn {
  background: #6D2E46 !important;
  color: #ffffff !important;
  border: none !important;
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
}
.home .btn--view-details:hover,
.home .product-card-view-btn:hover {
  background: #A26769 !important;
  color: #ffffff !important;
}

/* ─── Shop Category Pill Buttons ──────────────────────────────────────── */
.budget-label-btn {
  font-family: var(--font-main) !important;
  font-weight: 500 !important;
  color: #A26769 !important;
  background: transparent !important;
  border: 2px solid #A26769 !important;
}
.budget-label-btn:hover {
  background: #6D2E46 !important;
  color: #ffffff !important;
  border-color: #6D2E46 !important;
}

/* ─── Personalized Magazine Button ────────────────────────────────────── */
.hsm-film-strip-section .btn,
.hsm-film-strip-section a.btn,
.hsm-film-strip-section [class*="btn"] {
  background: #6D2E46 !important;
  color: #ffffff !important;
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
}

/* ─── Film strip perforations match bg ────────────────────────────────── */
.hsm-film-strip-item {
  background-color: #ECE2D0 !important;
}

/* ─── Footer "Made with ♥ in India" ───────────────────────────────────── */
.footer__made-in {
  font-family: var(--font-main);
  font-weight: 400;
  color: #D5B9B2;
  font-size: 0.85rem;
}

/* ─── Footer Social Icons ─────────────────────────────────────────────── */
.site-footer .social-icon {
  color: #D5B9B2;
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-right: 1.25rem;
}
.site-footer .social-icon:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.site-footer .social-icon svg {
  width: 22px;
  height: 22px;
}

/* ─── Footer Policy Links ─────────────────────────────────────────────── */
.footer__policy-links a {
  color: #CEBEBE !important;
}
.footer__policy-links a:hover {
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT US PAGE — page-about.php
   ═══════════════════════════════════════════════════════════════════════════ */

/* Shared label style */
.about-label,
.contact-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #A26769;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* 1. About Hero */
.about-page-hero {
  background: #ECE2D0;
  padding: 4rem 0 3rem;
  text-align: center;
}
.about-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #6D2E46;
  margin: 0;
}

/* 2. Brand Story */
.about-story {
  padding: 5rem 0;
  background: #ffffff;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story__text {
  border-left: 3px solid #D5B9B2;
  padding-left: 2rem;
}
.about-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #6D2E46;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.about-story__body p {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: #A26769;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-story__img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid #D5B9B2;
  object-fit: cover;
}
.about-story__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ECE2D0;
  border-radius: 16px;
  border: 2px solid #D5B9B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* 3. Values */
.about-values {
  padding: 5rem 0;
  background: #ECE2D0;
}
.about-values__header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-values__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #6D2E46;
  margin: 0;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-value-card {
  background: #ffffff;
  border: 1px solid #D5B9B2;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(109,46,70,0.08);
}
.about-value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.about-value-card__title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.75rem;
}
.about-value-card__text {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #A26769;
  line-height: 1.7;
  margin: 0;
}

/* 4. Mission Statement */
.about-mission {
  padding: 5rem 0;
  background: #6D2E46;
  text-align: center;
}
.about-mission__quote {
  margin: 0;
  padding: 0;
  border: none;
}
.about-mission__quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  color: #ECE2D0;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-mission__attribution {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #CEBEBE;
}

/* 6. Trust Icons */
.about-trust {
  padding: 4rem 0;
  background: #ffffff;
}
.about-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.about-trust-item__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #A26769;
}
.about-trust-item__title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.5rem;
}
.about-trust-item__desc {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  color: #A26769;
  margin: 0;
}

/* About page responsive */
@media (max-width: 768px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story__image { order: -1; }
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .about-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT US PAGE — page-contact.php
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. Contact Hero */
.contact-page-hero {
  background: #ECE2D0;
  padding: 4rem 0 3rem;
  text-align: center;
}
.contact-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #6D2E46;
  margin: 0;
}

/* 2. Contact Info Cards */
.contact-cards {
  padding: 3rem 0;
  background: #ECE2D0;
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid #D5B9B2;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(109,46,70,0.08);
}
.contact-info-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-info-card__title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.75rem;
}
.contact-info-card__detail {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: #A26769;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.contact-info-card__detail:hover {
  color: #6D2E46;
  opacity: 1;
}
.contact-info-card__sub {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  color: #A26769;
  margin: 0;
}

/* 3. Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: #ffffff;
}
.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-form-section__text {
  border-left: 3px solid #D5B9B2;
  padding-left: 2rem;
}
.contact-form-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #6D2E46;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.contact-form-section__body p {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  color: #A26769;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* Form styles */
.ncr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ncr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ncr-form-group {
  display: flex;
  flex-direction: column;
}
.ncr-form-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: #A26769;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ncr-form-input {
  background: #ffffff;
  border: 1px solid #D5B9B2;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #6D2E46;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.ncr-form-input::placeholder {
  color: #CEBEBE;
  font-weight: 400;
}
.ncr-form-input:focus {
  border-color: #A26769;
}
.ncr-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.ncr-form-submit {
  background: #6D2E46;
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ncr-form-submit:hover {
  background: #A26769;
  transform: translateY(-2px);
}

/* 4. Reassurance Strip */
.contact-reassurance {
  padding: 3rem 0;
  background: #ECE2D0;
}
.contact-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.contact-reassurance-item__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.contact-reassurance-item__title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #6D2E46;
  margin-bottom: 0.4rem;
}
.contact-reassurance-item__desc {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  color: #A26769;
  margin: 0;
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-info-card {
    padding: 2.25rem 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px; /* Force a more square shape */
  }
  .contact-info-card--combined {
    padding: 1.5rem 0.75rem;
    justify-content: flex-start;
  }
  .contact-combined-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(213, 185, 178, 0.3);
  }
  .contact-combined-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .contact-info-card__icon {
    font-size: 1.85rem;
    margin-bottom: 0.65rem;
  }
  .contact-info-card__title {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  .contact-info-card__detail {
    font-size: 0.8rem;
    word-break: break-all;
  }
  .contact-info-card__sub {
    font-size: 12px;
  }
  .contact-form-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ncr-form-row {
    grid-template-columns: 1fr;
  }
  .contact-reassurance__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .contact-reassurance-item {
    text-align: center;
  }
  .contact-reassurance-item__title {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .contact-reassurance-item__desc {
    font-size: 10px;
    line-height: 1.3;
  }
  .contact-reassurance-item__icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
}
