/* ==========================================================================
   OnTheCouchStudio CSS
   TABLE OF CONTENTS
   01) Tokens / Variables
   02) Base / Typography
   03) Layout (header, footer, grids)
   04) Components: Navigation
   05) Components: Shop / Product Cards
   06) Components: Galleries / Carousel
   07) Forms / Buttons / Utilities
   08) Pages (services, product, checkout, freebies)
   09) Overrides (last resort)
   ========================================================================== */


/* ================================================================== */
/* === 01) Tokens / Variables ======================================== */
/* ================================================================== */

/* BRAND COLORS */
:root {
  --gold-rich: #D4AF37;      /* Primary Accent (logo match) */
  --gold-light: #FFD700;     /* Hover / CTA / Optional Highlight */
  --gold-subtle: #B8860B;    /* Borders or subtle accents */
  --text-light: #FFFFFF;
  --bg-dark: #000000;
  --bg-header-footer: #000000;
}

/* ================================================================== */
/* === 02) Base / Typography ======================================== */
/* ================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

header, footer {
  background: var(--bg-header-footer);
  padding: 1rem;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--gold-subtle);
  font-family: 'Playfair Display', serif;
}

a {
  color: var(--gold-subtle);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: var(--gold-rich);
  text-decoration: underline;
}

/* ============================= */
/* CLEANED TOP NAV + DROPDOWN   */
/* ============================= */

/* --- HEADER LAYOUT --- */

/* === 04) Components: Navigation ========================================= */
/* === 04A) Desktop Navigation + Dropdowns ================================ */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background-color: var(--bg-header-footer);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gold-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-rich);
  text-decoration: none;
}

.logo-img { height: 48px; width: auto; }

/* NAVIGATION BAR */
.nav-menu { flex-grow: 1; margin-left: 2rem; }
.nav-menu > ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li { position: relative; }

.nav-menu > ul > li > a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.nav-menu > ul > li > a:hover { color: var(--gold-rich); }

/* DROPDOWN */
.dropdown { position: relative; }

/* DROPDOWN MENU (default: fully hidden, not flex) */
.dropdown-menu {
  display: none;              /* prevents flex flash */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  border: 1px solid var(--gold-subtle);
  border-radius: 4px;
  min-width: 220px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* SHOW ON HOVER (explicit vertical flex) */
.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* MENU ITEMS */
.dropdown-menu li { margin: 0; padding: 0; line-height: 1; }
.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #222;
  background-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
  box-sizing: border-box;
}
.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
  cursor: pointer;
}

/* NAV ICONS (top right) */
.nav-icons { display: flex; gap: 1.2rem; font-size: 1.2rem; }
.nav-icons a { color: var(--text-light); transition: color 0.3s ease; }
.nav-icons a:hover { color: var(--gold-rich); }

/* ================================================================== */
/* USER MENU TOP RIGHT          */
/* ================================================================== */

.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  margin-left: auto;
}

.user-menu a {
  color: var(--text-light);
  text-decoration: none;
}

.user-menu a:hover {
  color: var(--gold-rich);
}

.user-menu .divider {
  color: var(--gold-subtle);
  font-weight: 300;
}
/* ================================================================== */
/* === 04A) Desktop Navigation — media query wrapper ================ */
/* ================================================================== */

@media (min-width: 961px) {
  /* Hide hamburger on desktop */
  .mobile-menu-toggle { display: none; }

  /* Only target the TOP-LEVEL nav list */
  .nav-menu > ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  /* Show dropdowns on hover as vertical lists */
  .dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ================================================================== */
/* === 04B) Mobile Navigation ======================================= */
/* ================================================================== */

@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  /* Only target the TOP-LEVEL nav list */
  .nav-menu > ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    margin-top: 1rem;
    padding: 1rem 0;
  }
  .nav-menu.active > ul {
    display: flex;
  }

  .nav-menu > ul > li {
    text-align: center;
    padding: 0.75rem 0;
    width: 100%;
  }
  .nav-menu > ul > li > a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  /* Disable hover-open on touch */
  .dropdown:hover .dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Submenu baseline: hidden, full-width, stacked when opened */
  .dropdown > .dropdown-menu {
    position: static;
    left: auto;
    transform: none;

    width: 100%;
    background: #111;
    border-left: 3px solid var(--gold-subtle);
    padding-left: 1rem;

    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    flex-direction: column; /* prepares layout for when shown */
  }

  /* Shown when JS adds .open */
  .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .dropdown-menu li a {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid #222;
  }
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  /* Mobile hamburger – force the three lines */
#mobileToggle {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute; /* you already place it in your media query */
  top: 1rem;
  right: 1.5rem;
  z-index: 4000;
}

#mobileToggle span {
  display: block !important;
  width: 24px !important;
  height: 2px !important;
  background: #fff !important;
  border-radius: 2px !important;
  margin: 3px 0 !important;
  transition: transform .2s ease, opacity .2s ease;
}

/* Animated X when open */
#mobileToggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
#mobileToggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
#mobileToggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

}
/* ========================================================================= */
/* === 05) Components: Shop / Product Cards =============================== */
/* ========================================================================= */

/* --- Product grid & cards ---------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  width: 250px;
  background: #111;
  padding: 12px;
  margin: 10px;
  border: 1px solid #c9a437;
  border-radius: 8px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px gold;
}
.product-card h3 {
  font-size: 1rem;
  color: #c9a437;
  margin: 8px 0 4px;
  padding: 0 8px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  overflow: hidden;
}

.product-thumb {
  width: 100%;
  max-height: 250px;
  object-fit: contain; /* fixed from 'cover' */
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background-color: #222;
}
.product-title {
  font-size: 1.4rem;
  color: #c9a437;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  margin: 10px 0;
  padding: 0 12px;
  max-width: 100%;
  white-space: normal;
}

.shop-categories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.shop-button {
  padding: 0.5rem 1rem;
  background-color: var(--gold-subtle);
  color: black;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
.shop-button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
  cursor: pointer;
}

/* --- Product page layout ------------------------------------------------ */

.product-detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.product-page-wrapper {
  display: flex;              /* was 'display: center' (invalid) */
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.two-column-layout {
  display: flex;              /* was 'display: center' (invalid) */
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.media-and-info {
  display: flex;
  gap: 0rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  width: 100%;
}

.product-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;        /* space below carousel */
}

.product-info-card {
  background-color: #111;
  border: 1px solid var(--gold-subtle);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
}
.product-media img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--gold-subtle);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.1);
}

.product-video iframe {
  max-width: 560px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.1);
}

.product-description {
  border-top: 1px solid var(--gold-subtle);
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Misc helpers ------------------------------------------------------- */

.thumb-scroll-indicator {
  font-size: 2rem;
  color: var(--gold-rich);
  user-select: none;
  pointer-events: none;
  margin-left: 6px;
  opacity: 0.8;
}

/* --- Cart / checkout ---------------------------------------------------- */

.cart-link { position: relative; display: inline-block; margin-right: 1rem; }
.cart-icon { width: 24px; height: 24px; vertical-align: middle; }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  background-color: var(--gold-subtle); color: black; font-weight: bold;
  font-size: 0.7rem; padding: 4px 7px; border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6); line-height: 1;
}

.cart-container { max-width: 700px; margin: 50px auto; padding: 20px; }
.cart-list { list-style: none; padding-left: 0; margin-bottom: 20px; }
.cart-list li { padding: 8px 0; border-bottom: 1px solid var(--gold-subtle); }

.cart-total { font-size: 1.1em; margin-bottom: 20px; }
.cart-bottom-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 60px; padding: 0 40px;
}
.cart-total { font-size: 1.2rem; font-weight: bold; color: white; text-align: center; flex-grow: 1; }

.cart-button {
  background-color: #B8860B; color: black; border: none;
  padding: 12px 24px; font-weight: bold; border-radius: 6px;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color 0.2s ease;
}
.cart-button:hover {
  background-color: #000000; color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich); cursor: pointer;
}

.small-remove-button {
  background: none; color: var(--gold-subtle); border: none;
  font-size: 0.9rem; margin-left: 10px; cursor: pointer;
}
.small-remove-button:hover {
  background-color: #000000; color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich); cursor: pointer;
}

.cart-wrapper { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.cart-title { font-size: 2rem; text-align: center; margin-bottom: 30px; color: var(--gold-rich); }
.cart-item-list { list-style: none; padding: 0; margin-bottom: 50px; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--gold-subtle); padding: 12px 0;
  font-size: 1.05rem; color: white;
}
.cart-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; }

.checkout-wrapper {
  max-width: 700px; margin: auto; padding: 2rem;
  background: #111; border: 1px solid var(--gold-subtle); border-radius: 8px;
}
.checkout-title { font-size: 2rem; margin-bottom: 1rem; text-align: center; color: var(--gold-subtle); }
.checkout-list { list-style: none; padding: 0; margin-bottom: 1rem; }
.checkout-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #333; }
.checkout-summary { text-align: right; font-size: 1.2rem; margin-bottom: 1.5rem; }

.checkout-button {
  display: block; width: 100%; padding: 0.75rem;
  background-color: var(--gold-subtle); color: black; font-weight: bold;
  border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s ease;
}
.checkout-button:hover { background-color: #b8860b; }

/* --- Tags / filters ----------------------------------------------------- */
.tag {
  background-color: #111; color: #c9a437; border: 1px solid #c9a437;
  padding: 4px 10px; border-radius: 4px; cursor: pointer; transition: background 0.2s ease;
}
.tag:hover, .tag.active { background-color: #c9a437; color: #111; }
.tag-dropdown {
  display: block; width: 10%;
  padding: 0.75rem; background-color: var(--gold-subtle); color: black;
  font-weight: bold; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s ease;
}

/* === END 05) Components: Shop / Product Cards =========================== */

/* ========================================================================= */
/* === 06) Components: Galleries / Carousel =============================== */
/* ========================================================================= */

/* --- Product media carousel -------------------------------------------- */

.media-carousel {
  flex: 1;
  min-width: 300px;
  max-width: 540px;
  margin: 0 auto;
}

/* single, consolidated track rules (was duplicated 3x) */
.carousel-track {
  position: relative;
  width: 100%;
  min-height: 340px;        /* consistent height across images/video */
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

.carousel-item {
  display: none;
}
.carousel-item.active {
  display: block;
}

/* media inside items */
.carousel-item img,
.carousel-item iframe {
  width: 100%;
  height: auto;
  max-height: 340px;
  border-radius: 6px;
  object-fit: contain;
}

/* video iframe (keep min-height for tall embeds) */
.carousel-item iframe,
.carousel-item > iframe {
  min-height: 340px;
  border-radius: 6px;
}

/* navigation arrows (consolidated duplicates) */
.carousel-prev-button,
.carousel-next-button {
  position: absolute;
  top: 50%;                   /* one value (was 40% vs 50%) */
  transform: translateY(-50%);
  background-color: var(--gold-subtle);
  color: black;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 4px;
  z-index: 10;                /* ensure above media */
}
.carousel-prev-button { left: -2rem; }
.carousel-next-button { right: -2rem; }

.carousel-prev-button:hover,
.carousel-next-button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
}

/* wrapper (keep once) */
.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;          /* space for arrows */
}

/* thumbnails */
.carousel-thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.carousel-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.carousel-thumbs .thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid var(--gold-subtle);
  border-radius: 4px;
  cursor: pointer;
  background-color: #000;
}
.carousel-thumbs .thumb.active {
  border-color: var(--gold-rich);
  box-shadow: 0 0 8px 2px var(--gold-rich);
}

/* --- Site galleries carousel ------------------------------------------- */

.gallery-carousel-container {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
}
.gallery-carousel-main {
  position: relative;
  overflow: hidden;
  height: 550px;              /* fit full image, avoid scroll */
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-carousel-item { display: none; text-align: center; }
.gallery-carousel-item.active { display: block; }
.gallery-carousel-item img {
  width: 75%;
  height: 75%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-carousel-prev,
.gallery-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gold-subtle);
  color: black;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 4px;
  z-index: 10;
}
.gallery-carousel-prev { left: 10px; }
.gallery-carousel-next { right: 10px; }

.gallery-carousel-thumbs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1px;
  margin-top: 0rem;
  padding: 0 10px;
  scrollbar-width: thick;                /* Firefox */
  scrollbar-color: var(--gold-subtle) transparent;
}
/* WebKit scrollbars */
.gallery-carousel-thumbs::-webkit-scrollbar { height: 20px; }
.gallery-carousel-thumbs::-webkit-scrollbar-track { background: black; }
.gallery-carousel-thumbs::-webkit-scrollbar-thumb {
  background-color: gold; border-radius: 10px; border: 3px solid black;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 4px;
}
.gallery-thumb.active { border-color: gold; }


/* === END 06A) Components: Galleries / Carousel ========================== */



/* ========================================================================= */
/* === 06B) Components: Cards / Video / Intro / Footer ==================== */
/* ========================================================================= */

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 20px;
}

.model-card {
    background: #111111;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gold-subtle);
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.model-card:hover {
    transform: scale(1.05);
    border-color: var(--gold-light);
}

.model-card img {
    max-width: 100%;
    border-radius: 4px;
}

.placeholder-thumbnail {
    height: 150px;
    background: #444;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    
}


.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-subtle);
    letter-spacing: 0.5px;
    text-transform: none;
}
.site-subtitle {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: var(--gold-subtle);  /* ✅ Good */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.cta-link {
    color: var(--gold-subtle);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.cta-link:hover {
    color: var(--gold-rich); /* #D4AF37 */
    text-decoration: underline;
}
.intro-section {
    margin-top: 3rem;
    padding: 0 2rem;
}


.intro-heading {
    font-family: 'Playfair Display', serif;
    color: var(--gold-rich); /* ✅ Matches logo */
    font-size: 1.8rem;       /* ✅ Matches logo font size */
    font-weight: bold;       /* ✅ Matches logo font weight */
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold-subtle);
    padding-bottom: 0.5rem;
    text-transform: none;    /* ✅ Logo is not uppercase */
    letter-spacing: 0.5px;
}


.intro-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 1000px;
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid var(--gold-subtle);
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto;
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .intro-text {
        font-size: 0.95rem;
    }

    .intro-heading {
        font-size: 1.1rem;
    }

    .video-wrapper {
        border-width: 1px;
    }
}
.footer-promo {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.footer-promo h3 {
    color: var(--gold-subtle);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-icons a {
    display: inline-block;
    border-radius: 50%;
    padding: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    box-shadow: 0 0 12px 4px var(--gold-subtle);
    transform: scale(1.1);
}

.social-icons a img {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
}




/* === END 06B) Components: Cards / Video / Intro / Footer =============== */


/* ========================================================= */
/* =========== 07) FORMS / BUTTONS / UTILITIES ============= */
/* ========================================================= */

/* --- Forms -------------------------------------------------------------- */

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #111;
  color: white;
  border: 1px solid var(--gold-subtle);
  border-radius: 4px;
}

.custom-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-rich);
}

/* Center the entire form content */
form.custom-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Input, textarea, file, checkbox alignment */
form.custom-form input[type="text"],
form.custom-form input[type="email"],
form.custom-form textarea,
form.custom-form input[type="file"],
form.custom-form label {
  width: 100%;
  max-width: 600px;
}

/* Checkbox row */
form.custom-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: -0.5rem;
}

/* File button */
form.custom-form input[type="file"]::file-selector-button {
  background-color: var(--gold-subtle);
  color: var(--bg-dark);
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
form.custom-form input[type="file"]::file-selector-button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 10px var(--gold-subtle);
}

/* Custom checkbox */
form.custom-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border: 2px solid var(--gold-subtle);
  border-radius: 4px;
  background-color: #000;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
form.custom-form input[type="checkbox"]:checked {
  background-color: var(--gold-subtle);
}
form.custom-form input[type="checkbox"]:checked::after {
  content: "✔";
  color: var(--bg-dark);
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 3px;
}

/* Footer subscribe */
.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.subscribe-form input {
  padding: 0.75rem 1rem;
  width: 280px;
  border: 1px solid var(--gold-subtle);
  background-color: transparent;
  color: var(--text-light);
  font-size: 0.95rem;
}
.subscribe-form button {
  padding: 0.75rem 2.5rem;
  background-color: var(--gold-subtle);
  border: none;
  color: var(--bg-dark);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscribe-form button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
}
.footer-subscribe {
  border-top: 1px solid var(--gold-subtle);
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-subscribe p {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

/* --- Buttons & CTAs (deduped) ------------------------------------------ */

/* Base gold button (anchor OR button) */
a.gold-button,
button.gold-button,
.gold-button {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background-color: var(--gold-subtle);
  color: var(--bg-dark);
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Hover */
a.gold-button:hover,
button.gold-button:hover,
.gold-button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
}

/* Legacy variant that used solid rich gold (kept for compatibility) */
.gold-button.is-rich {
  background-color: var(--gold-rich);
  color: black;
}

/* CTA block link */
.cta-button-container { margin-top: 2rem; }
.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--gold-subtle);
  color: black;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
.cta-button:hover {
  background-color: #000000;
  color: var(--gold-rich);
  box-shadow: 0 0 16px 4px var(--gold-rich);
}

/* --- Utilities ---------------------------------------------------------- */

.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}



/* === END 07) Forms / Buttons / Utilities =============================== */


/* ================================================================== */
/* 08) PAGES (services, product, checkout, freebies) =================*/
/* ================================================================== */

.page-title-banner {
  background-color: #000;
  border-top: 2px solid var(--gold-subtle);
  border-bottom: 2px solid var(--gold-subtle);
  padding: 0.75rem 1rem;
  text-align: center;
}

.page-title-banner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-rich);
  font-size: 1.9rem;
  margin: 0;
}

.service-section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}
.page-title {
  font-size: 2rem;
  color: var(--gold-rich);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gold-subtle);
  padding-bottom: 0.5rem;
}

.service-heading {
  font-size: 2.2rem;
  color: var(--gold-rich);
  margin-bottom: 1rem;
}

.sub-heading {
  font-size: 1.4rem;
  color: var(--gold-subtle);
  margin-top: 2rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-list li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.pricing {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--gold-rich);
}


/* ================================================================== */
/* 08) PAGES (services, product, checkout, freebies) =================*/
/* ================================================================== */

.about-section {
  width: 100%;
  padding: 2rem;
}

.about-row {
  display: flex;
  justify-content: space-between; /* spread out columns */
  gap: 2rem; /* adds spacing between the columns */
  max-width: 1500px;
  margin: 0 auto;
}

.about-column {
  flex: 1;
  max-width: 600px; /* optional, helps control content wrapping */
  text-align: center;
}



.about-img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
}



@media (max-width: 900px) {
  .about-column {
    max-width: 100%;
    padding: 1rem;
  }

  .about-row {
    flex-direction: column;
    align-items: center;
  }
}
.experience-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: var(--text-light);
  text-align: center;
}

.experience-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.experience-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.experience-card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  max-width: 360px;
  flex: 1 1 300px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 16px var(--gold-subtle);
}

.experience-card img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}

.experience-card h3 {
  margin-top: 0.5rem;
  color: var(--gold-light);
  font-size: 1.25rem;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}
/* === END 08A) Pages: Learn More & Experience ====================== */



/* === 09) Overrides (last resort) ======================================== */
/* (keep empty; paste emergency tweaks here instead of scattering them) ====*/
/* ======================================================================== */


