/*
Theme Name: Topco Zamzam Jewellery Theme
Theme URI: https://topcozamzam.com/
Author: Topco Zamzam Heritage Digital Team
Author URI: https://topcozamzam.com/
Description: Custom-coded, production-ready WordPress theme for Topco Zamzam Jewellery — 35 Years of Trust and Purity. No page-builder dependency. Parakkat-style luxury model showcase catalog & direct WhatsApp ordering engine.
Version: 1.6.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Proprietary
Text Domain: topco-zamzam
*/

/* ==========================================================================
   1. BRAND DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  --color-primary-bg:       #FFFFFF; /* white is the primary site background */
  --color-primary-bg-alt:   #FBF9F5; /* warm ivory secondary surface */
  --color-accent-gold:      #C6A15B; /* refined jewellery gold accent */
  --color-accent-gold-dark: #9A7535; /* darker gold for readable text and hover states */
  --color-gold-gradient:    linear-gradient(135deg, #FFF6BD 0%, #DBB629 50%, #9E7D11 100%);
  --color-white:            #FFFFFF; /* primary text on dark backgrounds and logo wordmark */
  --color-offwhite:         #F8F5EF; /* warm ivory light background */
  --color-card-white:       #FFFFFF; /* crisp pure white background for elevated light cards */
  --color-text-dark:        #4A3025; /* warm brown body text */
  --color-muted:            #806E63; /* secondary and metadata text */
  --color-border-light:     #E8DDCC; /* subtle gold-tinged border for white cards */
  --color-brown:            #5A392C; /* secondary brown for header/footer/button surfaces */

  --font-serif:             'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:              'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  
  --container-max-width:    1280px;
  --header-height:          85px;
  
  --radius-sm:              4px;
  --radius-md:              8px;
  --radius-lg:              16px;

  --shadow-gold:            0 10px 30px rgba(219, 182, 41, 0.25);
  --shadow-glow:            0 0 40px rgba(219, 182, 41, 0.3);
  --shadow-light-card:      0 10px 30px rgba(36, 17, 9, 0.06);
  --shadow-dark:            0 15px 35px rgba(0, 0, 0, 0.4);
  --transition-base:        all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: #FFFFFF;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold { color: var(--color-accent-gold) !important; }
.text-ivory { color: var(--color-offwhite) !important; }
.text-dark { color: var(--color-text-dark) !important; }
.text-muted { color: var(--color-muted) !important; }

.text-gold-gradient {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Container & Grid Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-primary-bg-alt);
}

.section-white {
  background-color: var(--color-card-white);
  color: var(--color-text-dark);
}

.section-white h1, 
.section-white h2, 
.section-white h3, 
.section-white h4 {
  color: var(--color-text-dark);
}

.section-ivory {
  background-color: var(--color-offwhite);
  color: var(--color-text-dark);
}

.section-ivory h1, 
.section-ivory h2, 
.section-ivory h3, 
.section-ivory h4 {
  color: var(--color-text-dark);
}

.card-white {
  background-color: var(--color-card-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light-card);
  color: var(--color-text-dark);
  transition: var(--transition-base);
}

.card-white:hover {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.card-white h1, 
.card-white h2, 
.card-white h3, 
.card-white h4 {
  color: var(--color-text-dark);
}

/* Three Gold Flame Mark Divider Motif */
.flame-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 1.25rem 0 1.75rem 0;
}

.flame-divider span {
  display: block;
  background-color: var(--color-accent-gold);
  border-radius: 2px;
}

.flame-divider span:nth-child(1),
.flame-divider span:nth-child(3) {
  width: 3px;
  height: 18px;
  opacity: 0.7;
}

.flame-divider span:nth-child(2) {
  width: 4px;
  height: 26px;
}

.hairline-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
  border: none;
  margin: 0;
}

/* ==========================================================================
   3. BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: var(--color-text-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover, .btn-gold:focus {
  background-color: var(--color-accent-gold-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(43, 20, 15, 0.45);
  backdrop-filter: blur(8px);
  color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

.btn-outline-gold:hover {
  background: var(--color-accent-gold);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}

.btn-dark-maroon {
  background-color: var(--color-primary-bg);
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
}

.btn-dark-maroon:hover {
  background-color: var(--color-primary-bg-alt);
  color: var(--color-white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  color: #FFFFFF;
}

/* ==========================================================================
   4. STICKY HEADER, TICKER & UTILITY BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-primary-bg);
  border-bottom: 1px solid rgba(219, 182, 41, 0.2);
  transition: var(--transition-base);
}

.top-rate-ticker-bar {
  background-color: #1D0C09;
  border-bottom: 1px solid rgba(219, 182, 41, 0.15);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  color: var(--color-offwhite);
}

.top-ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ticker-rates {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rate-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rate-item .label {
  color: var(--color-accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-item .val {
  font-weight: 500;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-offwhite);
  font-size: 0.8rem;
}

.utility-actions a:hover {
  color: var(--color-accent-gold);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0.5rem 0;
  position: relative;
}

.brand-logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-mark {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.logo-mark span {
  display: inline-block;
  background: linear-gradient(180deg, #FDF0A6 0%, #DBB629 100%);
  border-radius: 1px;
}

.logo-mark span:nth-child(1),
.logo-mark span:nth-child(3) { width: 4px; height: 14px; }
.logo-mark span:nth-child(2) { width: 5px; height: 20px; }

.logo-text-main {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
}

.logo-text-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--color-offwhite);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-offwhite);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--color-accent-gold);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-base);
}

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

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-accent-gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   5. HERO SECTION & VIDEO BACKGROUND
   ========================================================================== */
.hero-video-wrapper {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--color-accent-gold);
  padding: 5rem 0;
  background: transparent;
}

.hero-bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(29, 12, 9, 0.78) 0%, rgba(15, 6, 4, 0.9) 100%);
  z-index: 1;
}

.hero-video-content-layout {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(219, 182, 41, 0.15);
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.hero-pill-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  box-shadow: 0 0 10px var(--color-accent-gold);
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle-desc {
  font-size: 1.15rem;
  color: var(--color-offwhite);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  max-width: 760px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(219, 182, 41, 0.3);
}

.hero-metric-item {
  display: flex;
  flex-direction: column;
}

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

.hero-metric-label {
  font-size: 0.75rem;
  color: var(--color-offwhite);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ==========================================================================
   5B. TRUST STRIP, HERITAGE STORY, CATEGORY GRID & PRODUCT CARDS
   ========================================================================== */
.trust-strip-light {
  background-color: var(--color-card-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.trust-card:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary-bg);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-accent-gold);
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
}

/* Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 2px solid var(--color-accent-gold);
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-primary-bg);
  border: 2px solid var(--color-accent-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.story-badge .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent-gold);
  line-height: 1;
}

.story-badge .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-offwhite);
  margin-top: 4px;
}

.story-content {
  display: flex;
  flex-direction: column;
}

/* Category Showcase Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(219, 182, 41, 0.3);
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-base);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-glow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,17,9,0.1) 0%, rgba(36,17,9,0.85) 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.category-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Products Grid & Parakkat Style Catalog Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card-white, .product-card-catalog {
  background-color: var(--color-card-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  box-shadow: 0 10px 30px rgba(36, 17, 9, 0.05);
  position: relative;
}

.product-card-white:hover, .product-card-catalog:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #FDFBF7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card-white:hover .product-thumb img, .product-card-catalog:hover .product-thumb img {
  transform: scale(1.08);
}

.product-purity-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background-color: var(--color-primary-bg);
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-status-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background-color: rgba(37, 211, 102, 0.95);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-details-light {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--color-card-white);
}

.product-cat-light {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-title-light {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.product-weight-light {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
  background-color: var(--color-offwhite);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--color-border-light);
  display: inline-block;
}

.btn-whatsapp-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding: 0.8rem 1rem;
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp-catalog i {
  flex: 0 0 auto;
}

.btn-whatsapp-catalog:hover {
  background-color: #1EBE5D;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.whatsapp-cta-banner {
  background: linear-gradient(135deg, #1B0A07 0%, #2B140F 100%);
  border: 2px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: #FFFFFF;
  margin-top: 3rem;
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   6. HIGH-END STORE LOCATOR BLOCK & 2/3-COLUMN GRID SPACING
   ========================================================================== */
.store-locator-box-white {
  background-color: var(--color-card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 15px 40px rgba(36, 17, 9, 0.06);
  color: var(--color-text-dark);
}

.store-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
  flex-wrap: wrap;
}

.state-filter-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.state-tab-light {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-base);
  font-weight: 600;
}

.state-tab-light.active, .state-tab-light:hover {
  background: var(--color-accent-gold);
  color: var(--color-text-dark);
  font-weight: 700;
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.store-search-input-light {
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  min-width: 280px;
}

.store-search-input-light:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  background-color: var(--color-card-white);
}

/* Multi-Column Grid Layout for Showrooms (Prevents Stretched Cards) */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}

.branch-card-white {
  background-color: var(--color-card-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-base);
  color: var(--color-text-dark);
  box-shadow: 0 8px 25px rgba(36, 17, 9, 0.04);
  display: flex;
  flex-direction: column;
}

.branch-card-white:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.branch-region-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.branch-name-dark {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.branch-address-dark {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.branch-contacts-dark {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--color-border-light);
}

.branch-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   7. LUXURY GOLD RATE DASHBOARD & TABLES
   ========================================================================== */
.rate-dashboard-card {
  background: linear-gradient(135deg, #341E19 0%, #220F0B 100%);
  border: 2px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-dark), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.rate-cards-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.rate-pill {
  background-color: var(--color-primary-bg);
  border: 1px solid rgba(219, 182, 41, 0.4);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.5rem;
  min-width: 250px;
  transition: var(--transition-base);
}

.rate-pill:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.rate-pill-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.rate-pill-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.rate-pill-unit {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
}

.rate-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.rate-breakdown-table th {
  background: var(--color-primary-bg-alt);
  color: var(--color-accent-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 1rem;
  border-bottom: 2px solid var(--color-accent-gold);
  text-align: left;
}

.rate-breakdown-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
}

/* ==========================================================================
   8. GLOBAL FOOTER & MOBILE STICKY CTAS
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-bg);
  border-top: 1px solid rgba(219, 182, 41, 0.3);
  margin-top: auto;
}

.footer-trust-bar {
  background-color: #1B0A07;
  border-bottom: 1px solid rgba(219, 182, 41, 0.15);
  padding: 1.5rem 0;
}

.footer-trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-offwhite);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-trust-item i, .footer-trust-item svg {
  color: var(--color-accent-gold);
  font-size: 1.2rem;
}

.footer-main {
  padding: 4rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
  gap: 3rem;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-accent-gold);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: var(--color-offwhite);
}

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

.branches-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.branches-link-grid a {
  font-size: 0.8rem;
  color: var(--color-offwhite);
}

.branches-link-grid a:hover {
  color: var(--color-accent-gold);
}

.footer-bottom-bar {
  background-color: #170806;
  border-top: 1px solid rgba(219, 182, 41, 0.1);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

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

.mobile-sticky-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-primary-bg);
  border-top: 1px solid var(--color-accent-gold);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.mobile-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-action-btn.call {
  background-color: var(--color-accent-gold);
  color: var(--color-text-dark);
}

.mobile-action-btn.whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS (480px, 768px, 1024px, 1280px)
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .store-locator-box-white {
    padding: 2rem 1.5rem;
  }
}

/* Keep the long primary navigation from colliding with the brand lockup on
   tablets and narrow laptop viewports. */
@media (max-width: 1100px) {
  .top-rate-ticker-bar {
    display: none;
  }

  .header-main {
    height: 78px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu[style*="display: flex"] {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
  }
}

@media (max-width: 768px) {
  .top-rate-ticker-bar {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-actions {
    display: block;
  }
  .stores-grid {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 50px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-video-wrapper {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero-video-content-layout {
    max-width: none;
  }

  .hero-main-title {
    margin-bottom: 1rem;
  }

  .hero-subtitle-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-metrics-strip {
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .trust-strip-light {
    padding: 1.5rem 0;
  }

  .trust-card {
    padding: 1rem;
  }

  .section-alt[style*="border-bottom"] {
    padding: 2.25rem 0 !important;
  }

  .section-alt[style*="border-bottom"] h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
    line-height: 1.15;
  }

  .section-alt[style*="border-bottom"] > .container > div:last-child {
    padding: 1rem !important;
  }

  .section-white > .container > .card-white {
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
  }

  .products-grid {
    gap: 1rem;
  }

  .product-thumb {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .header-main {
    height: 70px;
  }
  .logo-text-main {
    font-size: 1.1rem;
  }
  .hero-main-title {
    font-size: 2.1rem;
  }
  .hero-metrics-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}


/* ==========================================================================
   10. WHITE + GOLD + BROWN BRAND OVERRIDES
   ========================================================================== */
body {
  background: #FFFFFF;
  color: var(--color-text-dark);
}

.top-rate-ticker-bar {
  background: var(--color-brown);
  border-bottom-color: rgba(198, 161, 91, 0.45);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border-light);
  box-shadow: 0 4px 18px rgba(74, 48, 37, 0.08);
}

.logo-text-main,
.nav-menu a,
.mobile-menu-toggle {
  color: var(--color-brown);
}

.logo-text-sub {
  color: var(--color-muted);
}

.nav-menu a:hover,
.nav-menu a.active,
.utility-actions a:hover {
  color: var(--color-accent-gold-dark);
}

.hero-video-wrapper {
  background: #FFFFFF;
}

.hero-video-overlay {
  /* Keep the jewellery image visible without the previous brown shade. */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.25) 56%, rgba(255, 255, 255, 0.04) 100%);
}

.hero-main-title,
.hero-subtitle-desc,
.hero-metric-label {
  color: var(--color-brown);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.75);
}

.hero-metrics-strip {
  border-top-color: rgba(198, 161, 91, 0.55);
}

.hero-video-wrapper,
.section-alt {
  background-color: #FFFFFF;
}

.trust-strip-light,
.section-white,
.section-ivory {
  background-color: var(--color-primary-bg-alt);
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-ivory h1,
.section-ivory h2,
.section-ivory h3,
.section-ivory h4 {
  color: var(--color-text-dark);
}

.btn-dark-maroon {
  background-color: var(--color-brown);
  color: #FFFFFF;
  border-color: var(--color-brown);
}

.btn-dark-maroon:hover,
.btn-dark-maroon:focus {
  background-color: var(--color-accent-gold-dark);
  border-color: var(--color-accent-gold-dark);
  color: #FFFFFF;
}

.site-footer,
.footer-main {
  background-color: var(--color-brown);
}

.footer-trust-bar,
.footer-bottom-bar {
  background-color: #432A21;
}

@media (max-width: 1100px) {
  .nav-menu[style*="display: flex"] {
    background: #FFFFFF !important;
    border-bottom-color: var(--color-border-light) !important;
    box-shadow: 0 10px 25px rgba(74, 48, 37, 0.12);
  }
}


/* Hero media: no brown tint or darkening; use the source video/image as-is. */
.hero-bg-video,
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-bg-image {
  display: block;
}

.hero-video-overlay {
  background: transparent;
}


/* Contrast corrections after removing the hero tint. */
.hero-video-wrapper .hero-main-title,
.hero-video-wrapper .hero-subtitle-desc,
.hero-video-wrapper .hero-metric-label {
  color: #FFFFFF;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.82), 0 0 18px rgba(0, 0, 0, 0.45);
}

.hero-video-wrapper .hero-metric-num {
  color: var(--color-accent-gold);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.78);
}

.hero-video-wrapper .hero-pill-badge {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.section-alt,
.section-alt p,
.section-alt li {
  color: var(--color-text-dark);
}

.section-white,
.section-white p,
.section-white li,
.section-ivory,
.section-ivory p,
.section-ivory li {
  color: var(--color-text-dark);
}

.section-white a:not(.btn):not(.btn-whatsapp-catalog),
.section-ivory a:not(.btn):not(.btn-whatsapp-catalog) {
  color: var(--color-accent-gold-dark);
}


/* ==========================================================================
   11. INNER-PAGE CONTENT CONTRAST
   Legacy templates contain light-theme inline colors from the former dark
   palette. These scoped rules make every page readable on white surfaces.
   ========================================================================== */
body.page-template #mainContent,
body.archive #mainContent {
  color: var(--color-text-dark);
}

body.page-template #mainContent > .section,
body.archive #mainContent > .section {
  color: var(--color-text-dark);
}

body.page-template #mainContent > .section h1,
body.page-template #mainContent > .section h2,
body.page-template #mainContent > .section h3,
body.page-template #mainContent > .section h4,
body.archive #mainContent > .section h1,
body.archive #mainContent > .section h2,
body.archive #mainContent > .section h3,
body.archive #mainContent > .section h4 {
  color: var(--color-text-dark) !important;
}

body.page-template #mainContent > .section p,
body.page-template #mainContent > .section li,
body.page-template #mainContent > .section td,
body.page-template #mainContent > .section th,
body.page-template #mainContent > .section dt,
body.page-template #mainContent > .section dd,
body.page-template #mainContent > .section .container,
body.archive #mainContent > .section p,
body.archive #mainContent > .section li,
body.archive #mainContent > .section td,
body.archive #mainContent > .section th,
body.archive #mainContent > .section .container {
  color: var(--color-text-dark) !important;
}

/* Page hero banners are now light, so their old white inline text must turn brown. */
body.page-template #mainContent > .section-alt,
body.archive #mainContent > .section-alt {
  background: #FFFFFF !important;
  color: var(--color-text-dark) !important;
}

body.page-template #mainContent > .section-alt h1,
body.page-template #mainContent > .section-alt h2,
body.page-template #mainContent > .section-alt h3,
body.page-template #mainContent > .section-alt p,
body.page-template #mainContent > .section-alt .container,
body.archive #mainContent > .section-alt h1,
body.archive #mainContent > .section-alt h2,
body.archive #mainContent > .section-alt h3,
body.archive #mainContent > .section-alt p,
body.archive #mainContent > .section-alt .container {
  color: var(--color-text-dark) !important;
}

/* Replace old off-white inline copy on light content surfaces. */
body.page-template #mainContent [style*="color:var(--color-offwhite)"],
body.page-template #mainContent [style*="color: var(--color-offwhite)"],
body.archive #mainContent [style*="color:var(--color-offwhite)"],
body.archive #mainContent [style*="color: var(--color-offwhite)"] {
  color: var(--color-text-dark) !important;
}

/* Legacy dark information cards remain brown with light readable copy. */
body.page-template #mainContent [style*="background:var(--color-primary-bg)"],
body.page-template #mainContent [style*="background: var(--color-primary-bg)"],
body.archive #mainContent [style*="background:var(--color-primary-bg)"],
body.archive #mainContent [style*="background: var(--color-primary-bg)"] {
  background: var(--color-brown) !important;
  color: #FFFFFF !important;
}

body.page-template #mainContent [style*="background:var(--color-primary-bg)"] h1,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] h2,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] h3,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] h4,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] p,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] li,
body.page-template #mainContent [style*="background:var(--color-primary-bg)"] span,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] h1,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] h2,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] h3,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] h4,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] p,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] li,
body.archive #mainContent [style*="background:var(--color-primary-bg)"] span {
  color: #FFFFFF !important;
}

/* Rate dashboard intentionally uses a dark brown panel. */
.rate-dashboard-card,
.rate-dashboard-card h1,
.rate-dashboard-card h2,
.rate-dashboard-card h3,
.rate-dashboard-card p,
.rate-dashboard-card span {
  color: #FFFFFF;
}

/* Keep the hero overlay text white over the photographic homepage media. */
.hero-video-wrapper .hero-main-title,
.hero-video-wrapper .hero-subtitle-desc,
.hero-video-wrapper .hero-metric-label {
  color: #FFFFFF !important;
}


/* Specific contrast fixes requested for the homepage rate board and collections. */
.rate-dashboard-card .rate-pill {
  background: #FFFFFF;
  border-color: var(--color-accent-gold);
}

.rate-dashboard-card .rate-pill-price {
  color: var(--color-text-dark) !important;
  text-shadow: none;
}

.rate-dashboard-card .rate-pill-unit {
  color: var(--color-muted) !important;
}

.page-template-page-collections .category-card-title,
.page-template-page-collections .category-card-overlay p,
.page-template-page-collections .category-card-link {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}


/* ==========================================================================
   12. TOPCO SILVER-INSPIRED LIGHT COMMERCE LAYOUT + REQUESTED CONTRAST FIXES
   ========================================================================== */
/* Keep the supplied white, ivory and gold theme, while removing brown from
   the direct-enquiry surface and improving the editorial storefront rhythm. */
.top-rate-ticker-bar {
  background: var(--color-text-dark);
  color: var(--color-offwhite);
  padding: 0.55rem 0;
}

.hero-video-wrapper {
  min-height: 68vh;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.hero-video-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.78) 45%, rgba(255,255,255,0.08) 100%);
}

.hero-video-content-layout {
  max-width: 700px;
  padding: 2rem 0;
}

.hero-main-title {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  letter-spacing: -0.03em;
}

.hero-gold-highlight {
  color: var(--color-accent-gold) !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.hero-video-wrapper .hero-main-title,
.hero-video-wrapper .hero-subtitle-desc,
.hero-video-wrapper .hero-metric-label {
  color: var(--color-text-dark) !important;
  text-shadow: none;
}

.hero-video-wrapper .hero-metric-num {
  text-shadow: none;
}

.trust-strip-light {
  padding: 1.75rem 0;
}

/* The form is a crisp white card like the reference site's contact surfaces,
   not a brown legacy panel. */
.contact-form-card {
  background: var(--color-card-white) !important;
  border-color: var(--color-border-light) !important;
  box-shadow: var(--shadow-light-card);
}

.contact-form-card h1,
.contact-form-card h2,
.contact-form-card h3,
.contact-form-card p,
.contact-form-card label {
  color: var(--color-text-dark) !important;
}

.contact-form-card label {
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  background: var(--color-offwhite) !important;
  color: var(--color-text-dark) !important;
  border-color: var(--color-border-light) !important;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--color-muted);
}

/* The page-template contrast rule otherwise makes this timestamp dark on the
   dark rate dashboard. */
.rate-dashboard-card .rate-timestamp {
  color: var(--color-offwhite) !important;
  opacity: 0.95;
}

.rate-dashboard-card {
  border-radius: var(--radius-md);
}

@media (max-width: 720px) {
  .hero-video-wrapper {
    min-height: 72vh;
    padding: 3rem 0;
  }
  .hero-video-overlay {
    background: rgba(255,255,255,0.84);
  }
  .hero-video-content-layout {
    padding: 1rem 0;
  }
}


/* ==========================================================================
   13. FINAL VISIBILITY FIXES + CONFIGURABLE IMAGE LOGO
   ========================================================================== */
.image-logo-lockup {
  justify-content: center;
  min-width: 150px;
}

.site-logo-image {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 64px;
  object-fit: contain;
}

.logo-upload-placeholder {
  display: block;
  width: 150px;
  height: 52px;
}

.site-footer .footer-main,
.site-footer .footer-main p,
.site-footer .footer-main li,
.site-footer .footer-links-list a,
.site-footer .branches-link-grid a,
.site-footer .footer-col-title {
  color: var(--color-offwhite) !important;
}

.site-footer .footer-col-title {
  color: var(--color-accent-gold) !important;
}

.site-footer .footer-links-list a:hover,
.site-footer .branches-link-grid a:hover {
  color: var(--color-accent-gold) !important;
}

.site-footer form input,
.site-footer form select,
.site-footer form textarea,
#mainContent form input,
#mainContent form select,
#mainContent form textarea,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  background: var(--color-offwhite) !important;
  color: var(--color-text-dark) !important;
  border-color: var(--color-border-light) !important;
}

.site-footer form input::placeholder,
.site-footer form textarea::placeholder,
#mainContent form input::placeholder,
#mainContent form textarea::placeholder {
  color: var(--color-muted) !important;
  opacity: 1;
}

.consultation-copy {
  display: inline-block;
  color: var(--color-text-dark) !important;
}


/* Sitemap is a light content page, so its reused footer link class needs dark
   readable text rather than the footer's off-white text. */
body.page-template-page-sitemap #mainContent .footer-links-list a {
  color: var(--color-text-dark) !important;
}

body.page-template-page-sitemap #mainContent .footer-links-list a:hover {
  color: var(--color-accent-gold-dark) !important;
}
