@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* HNST Studio Font System */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Raleway', sans-serif;

  /* HNST Studio Brand Palette */
  --color-rust-hearth: #892500;
  --color-blush-whisper: #ea9195;
  --color-linen: #ffffff;
  --color-raw-silk: #f9f6f2;
  --color-sand-plaster: #eee5d9;
  --color-charcoal-ink: #0e0e0e;
  --color-stone: #868686;
  --color-ash: #b7b7b7;
  --color-frost: #d7d7d7;

  /* Mappings to existing design classes for minimal template changes */
  --color-bg-light: var(--color-raw-silk);
  --color-bg-alt: var(--color-sand-plaster);
  --color-footer-bg: var(--color-raw-silk);
  --color-tan-bar: var(--color-sand-plaster);
  --color-navy: var(--color-charcoal-ink);
  --color-dark: var(--color-charcoal-ink);
  --color-text-main: var(--color-charcoal-ink);
  --color-text-muted: var(--color-stone);
  --color-border: var(--color-stone);
  --color-gold: var(--color-rust-hearth);
  --color-gold-light: var(--color-blush-whisper);

  /* Elevation (No Shadows!) */
  --shadow-card: none;
  --shadow-drawer: none;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);

  /* Named Radii (0px for sharp corners except pills) */
  --radius-cards: 0px;
  --radius-pills: 10px;
  --radius-badges: 0px;
  --radius-buttons: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.154em;
  text-transform: uppercase;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Light Tan Announcement Bar */
.twamev-tan-strip {
  background-color: var(--color-tan-bar);
  color: #1e1b18;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid var(--color-border);
}

/* 2. Header Architecture (Homepage Floating Light Blur vs Inner Sticky) */
.twamev-header-wrapper {
  z-index: 100;
  width: 100%;
  transition: all 0.35s ease;
}

.twamev-header {
  width: 100%;
  padding: 12px 24px;
  position: relative;
  z-index: 100;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.twamev-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.twamev-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.twamev-header-left a {
  color: var(--color-stone);
}
.twamev-header-left a:hover,
.twamev-header-left a.active {
  color: var(--color-rust-hearth);
}

.twamev-hamburger {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-stone);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}
.twamev-hamburger:hover {
  color: var(--color-rust-hearth);
}

.twamev-logo {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.192em;
  color: var(--color-rust-hearth);
  text-transform: lowercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo-img {
  max-height: 40px;
  object-fit: contain;
}

.twamev-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--color-stone);
}
.twamev-header-right a {
  color: var(--color-stone);
}
.twamev-header-right a:hover {
  color: var(--color-rust-hearth);
}
.twamev-search-link {
  font-size: 12px;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* HOMEPAGE FLOATING HEADER OVER LIGHT HERO */
body.home-page .twamev-header-wrapper {
  position: absolute;
  top: 36px;
  background: transparent;
}
body.home-page .twamev-header-left a,
body.home-page .twamev-hamburger,
body.home-page .twamev-logo,
body.home-page .twamev-header-right a {
  color: #ffffff;
  text-shadow: none;
}

body.home-page .twamev-header-wrapper:hover,
body.home-page .twamev-header-wrapper.scrolled {
  position: fixed;
  top: 0;
  background: rgba(249, 246, 242, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}
body.home-page .twamev-header-wrapper:hover .twamev-header-left a,
body.home-page .twamev-header-wrapper.scrolled .twamev-header-left a,
body.home-page .twamev-header-wrapper:hover .twamev-hamburger,
body.home-page .twamev-header-wrapper.scrolled .twamev-hamburger,
body.home-page .twamev-header-wrapper:hover .twamev-logo,
body.home-page .twamev-header-wrapper.scrolled .twamev-logo,
body.home-page .twamev-header-wrapper:hover .twamev-header-right a,
body.home-page .twamev-header-wrapper.scrolled .twamev-header-right a {
  color: var(--color-stone);
}
body.home-page .twamev-header-wrapper:hover .twamev-logo,
body.home-page .twamev-header-wrapper.scrolled .twamev-logo {
  color: var(--color-rust-hearth);
}

/* INNER PAGES SPECIFIC HEADER */
body.inner-page .twamev-header-wrapper {
  position: sticky;
  top: 0;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

/* 3. Minimalist Cinema Hero Banner */
.twamev-hero-section {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 720px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 75px;
}
.twamev-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.4);
}
.twamev-hero-buttons {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 20px;
}
.twamev-btn-white {
  background: var(--color-linen);
  color: var(--color-charcoal-ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 0px;
  box-shadow: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-stone);
}
.twamev-btn-white:hover {
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  border-color: var(--color-charcoal-ink);
  transform: translateY(-2px);
}

/* Royal Manifesto Section */
.royal-manifesto-section {
  padding: 90px 24px;
  background: var(--color-bg-light);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.royal-manifesto-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-charcoal-ink);
  max-width: 900px;
  margin: 0 auto 22px;
  font-weight: 400;
  letter-spacing: 1px;
}
.royal-manifesto-sub {
  font-size: 0.78rem;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-rust-hearth);
  font-weight: 600;
}

/* Section Title Styling */
.twamev-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-charcoal-ink);
  letter-spacing: 0.154em;
  text-transform: uppercase;
  margin: 90px 0 48px;
}

/* 4. LARGE EDITORIAL SHOWCASE (Light Cream Style) */
.mm-2col-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 85px;
}
.mm-showcase-card {
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.mm-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.mm-showcase-card:hover img {
  transform: scale(1.06);
}
.mm-showcase-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-light);
  padding: 24px 34px;
  text-align: center;
  width: 88%;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.mm-showcase-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-charcoal-ink);
  letter-spacing: 0.154em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.mm-showcase-sub {
  font-size: 0.78rem;
  letter-spacing: 0.192em;
  color: var(--color-rust-hearth);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.twamev-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 85px;
}
.twamev-card {
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-bg-alt);
}
.twamev-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}
.twamev-card:hover img {
  transform: scale(1.06);
}
.twamev-card-overlay-box {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-light);
  padding: 20px 28px;
  text-align: center;
  width: 84%;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.twamev-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal-ink);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.154em;
  text-transform: uppercase;
}
.twamev-card-btn {
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  padding: 9px 22px;
  display: inline-block;
  transition: var(--transition-smooth);
}
.twamev-card-btn:hover {
  background: var(--color-rust-hearth);
  color: var(--color-linen);
}

/* 5. Brand Story Masonry Grid */
.brand-story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 24px;
  margin-bottom: 90px;
}
.brand-story-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story-img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.story-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.story-img-card:hover img {
  transform: scale(1.05);
}

/* 6. Trending Looks Reels Carousel */
.trending-reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 85px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.reel-card:hover img {
  transform: scale(1.06);
}
.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14,14,14,0.8);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: var(--radius-cards);
  display: flex;
  align-items: center;
  gap: 4px;
}
.reel-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-cards);
  white-space: nowrap;
  box-shadow: none;
  transition: var(--transition-smooth);
}
.reel-btn:hover {
  background: var(--color-rust-hearth);
  color: #ffffff;
}

/* 7. Schedule Appointment Banner */
.appointment-banner-section {
  position: relative;
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 85px;
}
.appointment-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.5);
}
.appointment-banner-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  max-width: 720px;
  padding: 0 20px;
}
.appointment-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 0.154em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.appointment-sub {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 32px;
  font-weight: 300;
}
.btn-pill-white {
  background: var(--color-linen);
  color: var(--color-charcoal-ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-buttons);
  transition: var(--transition-smooth);
  border: 1px solid var(--color-stone);
}
.btn-pill-white:hover {
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  border-color: var(--color-charcoal-ink);
}

/* 8. Carousel Arrows */
.recommended-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg-light);
  color: var(--color-charcoal-ink);
  border: 1px solid var(--color-border);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-cards);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition-smooth);
  box-shadow: none;
}
.recommended-arrow:hover {
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  transform: translateY(-50%) scale(1.05);
  border-color: var(--color-charcoal-ink);
}
.arrow-left {
  left: 24px;
}
.arrow-right {
  right: 24px;
}

/* 9. FIND US NEAR YOU! Banner */
.find-us-banner-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 85px;
}
.find-us-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.5);
}
.find-us-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  max-width: 760px;
  padding: 0 20px;
}
.find-us-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #ffffff;
  letter-spacing: 0.154em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.find-us-sub {
  font-size: 1rem;
  color: #e5e5e5;
  margin-bottom: 32px;
  font-weight: 300;
}
.btn-outline-white {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius-buttons);
  display: inline-block;
  transition: var(--transition-smooth);
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--color-charcoal-ink);
}

/* 10. CUSTOMER TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 85px;
}
.testimonial-card {
  display: flex;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.testimonial-text-side {
  width: 50%;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg-alt);
}
.testimonial-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-charcoal-ink);
  letter-spacing: 0.154em;
  text-transform: uppercase;
}
.testimonial-subhead {
  font-size: 0.62rem;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-rust-hearth);
  margin-bottom: 14px;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-charcoal-ink);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal-ink);
}
.testimonial-img-side {
  width: 50%;
  aspect-ratio: 3/4;
}
.testimonial-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 11. 4-Column Luxury Trust Strip */
.trust-strip-light {
  padding: 55px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  margin-bottom: 0;
}
.trust-grid-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.trust-icon-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trust-icon-svg {
  font-size: 2.3rem;
  color: var(--color-rust-hearth);
  margin-bottom: 14px;
}
.trust-icon-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-charcoal-ink);
}

/* Category Circular Subcategories & Editorial Product List */
.category-breadcrumb-bar {
  padding: 26px 0 12px;
  font-size: 0.78rem;
  color: var(--color-stone);
}
.category-breadcrumb-bar a {
  color: var(--color-stone);
}

.circular-subcat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin: 22px 0 38px;
  flex-wrap: wrap;
}
.circular-subcat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 115px;
  cursor: pointer;
}
.circular-subcat-img-box {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  box-shadow: none;
  transition: transform 0.35s ease;
}
.circular-subcat-item:hover .circular-subcat-img-box {
  transform: translateY(-5px);
}
.circular-subcat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circular-subcat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal-ink);
}

.category-main-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.154em;
  color: var(--color-charcoal-ink);
  text-transform: uppercase;
  margin-bottom: 42px;
}

/* Category Filter Strip */
.category-filter-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
  background: var(--color-bg-light);
}
.filter-count-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-charcoal-ink);
}
.filter-trigger-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-charcoal-ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-filter-drawer {
  display: none;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 22px 26px;
}
.category-filter-drawer.active {
  display: block;
}

/* Editorial Category Product Grid */
.twamev-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  border-top: 1px solid var(--color-border);
}
.twamev-editorial-grid::-webkit-scrollbar {
  display: none;
}

.twamev-editorial-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.6;
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.twamev-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.twamev-editorial-card:hover img {
  transform: scale(1.05);
}

.twamev-wishlist-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  filter: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.twamev-wishlist-btn:hover {
  transform: scale(1.18);
  color: var(--color-rust-hearth);
}

.twamev-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.75) 0%, rgba(14, 14, 14, 0.2) 25%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  z-index: 5;
  transition: background 0.4s ease;
}
.twamev-editorial-card:hover .twamev-editorial-overlay {
  background: linear-gradient(to top, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.3) 30%, transparent 60%);
}

.twamev-product-title-overlay {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 4px;
}

.twamev-product-price-overlay {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Sidebar Drawer - Ultra Light Luxury Panel */
.sidebar-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.4);
  backdrop-filter: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.sidebar-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sidebar-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 330px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-bg-light);
  border-right: 1px solid var(--color-border);
  box-shadow: none;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar-drawer-overlay.active .sidebar-drawer {
  transform: translateX(0);
}

.drawer-top-bar {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}
.drawer-country-selector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  color: var(--color-charcoal-ink);
  text-transform: uppercase;
}
.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-charcoal-ink);
  cursor: pointer;
}

.drawer-body-content {
  padding: 10px 24px 30px;
  flex-grow: 1;
}

.drawer-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-top: 24px;
  margin-bottom: 12px;
}

.drawer-category-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-charcoal-ink);
  padding: 8px 0;
  transition: var(--transition-smooth);
}
.drawer-category-link:hover {
  color: var(--color-rust-hearth);
  padding-left: 4px;
}

.drawer-footer-contact {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  font-size: 0.72rem;
  color: var(--color-stone);
  line-height: 1.6;
}

/* Modal Popup Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.4);
  backdrop-filter: none;
  z-index: 1000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex !important;
}

.modal-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-cards);
  max-width: 550px;
  width: 100%;
  padding: 38px;
  box-shadow: none;
  position: relative;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  color: var(--color-charcoal-ink);
  font-size: 1.6rem;
  cursor: pointer;
}
.modal-header-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--color-charcoal-ink);
  margin-bottom: 4px;
}
.modal-header-sub {
  font-size: 0.85rem;
  color: var(--color-stone);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.192em;
  color: var(--color-charcoal-ink);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-charcoal-ink);
  border-radius: var(--radius-cards);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

/* Buttons */
.btn-gold-filled {
  padding: 13px 30px;
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  border-radius: var(--radius-buttons);
  border: 1px solid var(--color-charcoal-ink);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-gold-filled:hover {
  background: var(--color-rust-hearth);
  border-color: var(--color-rust-hearth);
  color: var(--color-linen);
}

.btn-dark-filled {
  padding: 13px 30px;
  background: var(--color-charcoal-ink);
  color: var(--color-linen);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  border-radius: var(--radius-buttons);
  border: 1px solid var(--color-charcoal-ink);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-dark-filled:hover {
  background: var(--color-rust-hearth);
  border-color: var(--color-rust-hearth);
  color: var(--color-linen);
}

/* Floating WhatsApp & Scroll To Top */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: none;
  z-index: 99;
}
.scroll-top-btn {
  position: fixed;
  bottom: 94px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--color-bg-light);
  color: var(--color-charcoal-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: none;
  z-index: 99;
  cursor: pointer;
  border: 1px solid var(--color-border);
}

/* 12. Ultra Light Cream 5-Column Footer */
.twamev-light-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border);
  padding: 70px 0 28px;
  color: var(--color-charcoal-ink);
  font-size: 0.85rem;
}
.footer-5col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 55px;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.192em;
  text-transform: uppercase;
  color: var(--color-charcoal-ink);
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list a {
  color: var(--color-stone);
  transition: var(--transition-smooth);
}
.footer-list a:hover {
  color: var(--color-rust-hearth);
}

.footer-bottom-bar {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-stone);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-partners-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .mm-2col-showcase {
    grid-template-columns: 1fr;
    margin-bottom: 36px !important;
  }
  .twamev-3col-grid {
    grid-template-columns: 1fr;
    margin-bottom: 36px !important;
  }
  .brand-story-grid {
    grid-template-columns: 1fr;
    margin-bottom: 36px !important;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-bottom: 36px !important;
  }
  .trending-reels-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 36px !important;
  }
  .twamev-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twamev-section-title {
    margin: 40px 0 24px !important;
    font-size: 2rem !important;
  }
  .category-main-title {
    font-size: 2.2rem !important;
    margin-bottom: 24px !important;
  }
  .appointment-banner-section,
  .find-us-banner-section {
    margin-bottom: 36px !important;
    height: 360px !important;
  }
  .appointment-title,
  .find-us-title {
    font-size: 2rem !important;
  }
}
@media (max-width: 576px) {
  .trust-grid-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trending-reels-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px !important;
  }
  .twamev-editorial-grid {
    grid-template-columns: 1fr;
  }
  .circular-subcat-row {
    gap: 15px;
    margin: 12px 0 24px !important;
  }
  .circular-subcat-item {
    width: 80px;
  }
  .circular-subcat-img-box {
    width: 75px;
    height: 75px;
  }
  .footer-5col-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SABLE Style Marquee Announcement Bar ────────────────────────── */
:root {
  --bone: #f9f6f2; /* canvas background */
  --ink: #0e0e0e; /* core text and primary fills */
  --mid: #868686; /* fine secondary text */
  --line: rgba(14, 14, 14, 0.14);
  --nav: 96px;
}

.ann {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.ann .row {
  display: flex;
  width: max-content;
}
.ann .tk {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 52px;
  padding-right: 52px;
  animation: tick 34s linear infinite;
  font: 500 10px/1 Archivo, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-top: 9px;
  padding-bottom: 9px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.ann:hover .tk {
  animation-play-state: paused;
}
.ann .tk i {
  font-style: normal;
  opacity: .5;
}

/* ── SABLE Style Sticky Header ───────────────────────────────────── */
nav.sable-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(249, 246, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav.sable-nav .bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: var(--nav);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3.4vw, 44px);
}
nav.sable-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.sable-nav ul a {
  font: 500 11px/1 Archivo, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  text-decoration: none;
}
nav.sable-nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.6,0,.2,1);
}
nav.sable-nav ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
nav.sable-nav .mk {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .26em;
  text-align: center;
  padding-left: .26em;
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
}
nav.sable-nav .util {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  align-items: center;
  font: 500 11px/1 Archivo, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
nav.sable-nav .util a {
  color: var(--ink);
  text-decoration: none;
}
nav.sable-nav .util span {
  opacity: .55;
  cursor: pointer;
}

@media(max-width:900px) {
  nav.sable-nav ul, nav.sable-nav .util span { display: none; }
  nav.sable-nav .bar { grid-template-columns: 1fr auto 1fr; }
}

/* Pagination SVG and Navigation Constraints */
nav[role="navigation"] svg,
.pagination svg,
svg.w-5,
svg.h-5 {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

nav[role="navigation"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 20px;
  width: 100%;
  max-width: 800px;
  font-family: 'Archivo', sans-serif;
}

nav[role="navigation"] > div:first-child {
  display: none;
}

nav[role="navigation"] > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

@media (min-width: 640px) {
  nav[role="navigation"] > div:last-child {
    flex-direction: row;
    justify-content: space-between;
  }
}

nav[role="navigation"] p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #868686;
  margin: 0;
}

nav[role="navigation"] p span.font-medium,
nav[role="navigation"] p span.font-semibold {
  color: #0e0e0e;
  font-weight: 700;
}

nav[role="navigation"] span.relative.z-0.inline-flex,
nav[role="navigation"] .shadow-sm {
  box-shadow: none !important;
  display: inline-flex;
  gap: 4px;
  border-radius: 0;
}

nav[role="navigation"] span.relative,
nav[role="navigation"] a.relative {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0e0e0e;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.2);
  border-radius: 0 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

nav[role="navigation"] a.relative:hover {
  background: #0e0e0e;
  color: #ffffff;
  border-color: #0e0e0e;
}

nav[role="navigation"] span[aria-current="page"] > span,
nav[role="navigation"] span.relative[aria-current="page"] {
  background: #0e0e0e !important;
  color: #ffffff !important;
  border-color: #0e0e0e !important;
  font-weight: 700;
}

nav[role="navigation"] span[aria-disabled="true"] {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f9f6f2;
}


