/* =====================================================
   COMPONENTS.CSS (UI / DESIGN SYSTEM)
   -----------------------------------------------------
   PURPOSE:
   - Defines reusable visual components
   - Controls appearance and interaction styles

   INCLUDES:
   - Buttons (cta, nav-cta)
   - Cards (gold-card, option-card)
   - Tabs, pills, badges
   - Forms and UI elements
   - Logo system (if treated as a component)

   RULES:
   - No page layout (no containers, no grid structure)
   - No global resets
   - No element selectors (avoid styling h1, p, img directly)

   THIS FILE SHOULD:
   - Be reusable across multiple pages
   - Be modular and predictable

   EXAMPLES:
   - .gold-card
   - .tab-btn
   - .pill
   - .logo / .logo--md

   LOAD ORDER:
   - After layout.css
===================================================== */

.gold-card
.option-card
.tab-btn
.date-btn
.pill

.estimator-tabs
.bar-tabs
.bar-item
.bar-result-card

.img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
  border-radius: 4px;
  overflow: hidden; /* ← IMPORTANT */  
}

/* hover */
.image-row-2 img:hover,
.image-row-3 img:hover,
.image-row-4 img:hover,
.image-row-5 img:hover {
  transform: scale(1.02);
}

/* responsive */

@media (max-width: 900px) {
  .image-row-3 .img-wrap,
  .image-row-4 .img-wrap,
  .image-row-5 .img-wrap {
    flex: 1 1 48%;
  }
} /* ✅ CLOSE IT */

@media (max-width: 600px) {
  .image-row-2 .img-wrap,
  .image-row-3 .img-wrap,
  .image-row-4 .img-wrap,
  .image-row-5 .img-wrap {
    flex: 1 1 100%;
  }
}

    /* =========================
   MEDIA / IMAGE SAFETY
========================= */

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

.img-row,
.image-row-2,
.image-row-3 {
  display: flex;
  gap: 20px;
}

.img-wrap {
  flex: 1;
}

.img-wrap img {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* =========================
   IMAGE CAPTION
========================= */
.image-caption {
  font-family: "Montserrat", Arial, sans-serif; /* matches your site */
  font-size: 0.85rem;
  font-weight: 500;

  letter-spacing: 0.08em; /* subtle stretch */
  text-transform: uppercase;

  color: #555;
  margin-bottom: 8px;

  line-height: 1.4;
}

/* =====================================================
   NAVIGATION
===================================================== */

.chateau-list,
.chateau-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dd {
  position: relative;
}

/* dropdown base */
.dd {
  list-style: none;
  margin: 0;
  min-width: 220px;
  padding: 8px 4px;
  transform: translateY(6px);
}
.dd {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  z-index: 9999;
}

.dd a {
  display: block;          /* ensures full-width clickable area */
  padding: 10px 16px;      /* ↑ increase vertical space here */
  line-height: 1.4;
}
.dd a:hover {
  background: rgba(73, 159, 175, 0.08);
}

/* show on hover */

.has-dd:hover .dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* sizing system */

@media (max-width: 900px) {
  .chateau-menu {
    display: block !important;
  }
}
/* two column components.css */

.two-col-inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.two-col-text:not(.three-col) .two-col-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.three-col .two-col-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .three-col .two-col-inner {
    grid-template-columns: 1fr;
  }

  .two-col-text:not(.three-col) .two-col-inner {
    grid-template-columns: 1fr;
  }
}

  /* Optional: slightly tighter spacing for mobile lists */
  .two-col-inner ul {
    margin: 0;
    padding: 0;
  }

  .two-col-inner li {
    margin-bottom: 0.75rem;
  }
}

.two-col-inner .col {
  flex: 1;
}
.two-col-inner a {
  color: #7C0D30; /* muted green-gray */
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
}
.two-col-inner a:hover {
    color: #dc215c; /* deep muted teal */
    border-bottom: 1px solid #dc215c;
}

.button {
  background: blue;
  color: white;
  padding: 10px 20px;
}

/* =========================
   Luxury Contact Link
========================= */
a[href^="tel"],
a[href^="mailto"] {
  color: #2a5a49; /* deep forest/teal */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}
a[href^="tel"]:hover,
a[href^="mailto"]:hover {
    color: #359381; /* softer teal highlight */
}

a.cta-link {
  color: #6b2c3e; /* elegant wine tone */
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  display: inline-block;
}
a.cta-link:hover {
  color: #8a3a50; /* slightly lighter wine */
  border-bottom: 1px solid #8a3a50;
  transform: translateY(-1px);
}

/* =========================
   FEATURE LIST
========================= */
.feature-list.steps li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.feature-list.steps li span {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #6b2c3e;
}

/* =========================
   TWO COLUMN LAYOUT
========================= */
.two-col-text {
  display: flex;
  gap: 20px;
}

.two-col-text > * {
  flex: 1;
}
@media (max-width: 768px) {
  .two-col-text {
    flex-direction: column;
  }
}

/* =========================
   IMAGE GALLERY LAYOUT
========================= */
.image-row-2,
.image-row-3,
.image-row-4,
.image-row-5 {
  display: grid;
  gap: 16px;
}

/* Smart auto-fit grid */
.image-row-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.image-row-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.image-row-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-row-5 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

/* hover */
.image-row-2 img:hover,
.image-row-3 img:hover,
.image-row-4 img:hover,
.image-row-5 img:hover {
  transform: scale(1.02);
}

/* responsive */

@media (max-width: 900px) {
  .image-row-3 .img-wrap,
  .image-row-4 .img-wrap,
  .image-row-5 .img-wrap {
    flex: 1 1 48%;
  }
} /* ✅ CLOSE IT */

@media (max-width: 600px) {
  .image-row-2 .img-wrap,
  .image-row-3 .img-wrap,
  .image-row-4 .img-wrap,
  .image-row-5 .img-wrap {
    flex: 1 1 100%;
  }
}

/* TEXT BLOCK */
.photo-text {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.photo-title {
  margin-bottom: 0.5rem;
}

.photo-description {
  color: #555;
  font-size: 1.05rem;
}

/* OPTIONAL TRANSITION LINE */
.photo-transition {
  margin-top: 1.5rem;
  font-style: italic;
  color: #777;
}

/* =========================
   MEDIA / IMAGE SAFETY
========================= */

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

.media {
  overflow: hidden;
}

.media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Fix image overflow issues */
.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Prevent clipping inside flex rows */
.img-wrap {
  overflow: hidden;
}

/* =====================================================
   HARMONY WIDTH ALIGNMENT FIX
===================================================== */

.hmy-content {
  width: 100%;
}

.hmy-content .container {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   NAVIGATION
===================================================== */

.chateau-menu {
  display: block;
  width: 100%;  
  background: #ffffff;   /* ?? CRITICAL */
  border-top: 1px solid #e5e5e5;
}
.chateau-menu a {
  color: #222;
}

/* =====================================================
   HEADER WRAPPER (STICKY)
===================================================== */

#chateauHeader {
  height: auto;
  overflow: visible;
}

/* optional scrolled state */
#chateauHeader.scrolled {
  background: #000;
}

#chateauHeader.scrolled a {
  color: #fff;
}
#chateauHeader {
  display: block;
}
#chateauHeader.open .chateau-menu {
    display: block;
  }

.chateau-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;

  list-style: none;
  margin: 0;
  padding: 12px 20px;
}

.chateau-list a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  padding: 8px 6px;
}

.chateau-list a:hover {
  color: #499FAF;
}

.chateau-list a.active {
  border-bottom: 2px solid #222;
}

/* =====================================================
   DROPDOWNS
===================================================== */

.has-dd {
  position: relative;
}

/* =====================================================
   MOBILE NAV
===================================================== */

.chateau-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {

  .chateau-center {
    display: none;
  }

  .chateau-toggle {
    display: block;
  }

  .chateau-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .chateau-list li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .chateau-list a {
    padding: 14px 20px;
  }

  .dd {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
  }

  .has-dd.open > .dd {
    display: flex;
  }


 }

/* =====================================================
   CTA
===================================================== */

.chateau-list .nav-cta {
  background: transparent;
  padding: 0;
  margin: 0;
}

.chateau-list .nav-cta a {
  background-color: #499FAF;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  box-shadow: none;
  outline: none;
  opacity: 1;
  transition: all 0.2s ease;
}

.chateau-list .nav-cta a:hover {
  background-color: #3f8f9f;
  color: #222222;
}

.chateau-list .nav-cta a:focus,
.chateau-list .nav-cta a:focus-visible {
  outline: none;
  box-shadow: none;
}

/* =====================================================
   TRUST LINE - TAG LINE 
===================================================== */
.trust-line {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
}

.topbar-phone {
  white-space: nowrap;
  font-weight: 600;
  color: #FFFFFF;
}

.topbar-tagline {
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  max-width: 360px;   /* HARD LIMIT */
  margin-left: auto;  /* keeps it aligned */
  display: block;
  overflow: visible;
}

.chateau-topbar {
  width: 100%;
  background: #499FAF;
  color: inherit;
  min-height: 125px;        /* remove forced height */
  padding: 8px 0;          /* control manually */
  display: flex;
  align-items: center;
}

.topbar-phone {
  margin-top: 2px;
  font-weight: 600;
}

/* =====================================================
   BLEED SECTION SYSTEM (FULL WIDTH BACKGROUND)
===================================================== */

.bleed-section {
  width: 100%;
  position: relative;
}

/* =========================
   FULL BLEED BACKGROUND
========================= */

.bleed-section {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: #f4f4f4;
}

/* FOOTER RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-sub {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .chateau-menu {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .nav-cta a {
    display: block;
    width: 100%;
  }
}

 .site-footer .footer-col,
.site-footer .footer-col p,
.site-footer .footer-col h1,
.site-footer .footer-col h2,
.site-footer .footer-col h3,
.site-footer .footer-col h4 {
  color: #fff;
  opacity: 1;
}
.footer-sub {
  color: #fff;
}

.footer-sub p {
  margin: 0;
  color: inherit;
}
.footer-divider {
  grid-column: 1 / -1;
  text-align: center;
  letter-spacing: 4px;
}

.bar-estimator {
  width: 100%;
}

/* =========================
   CONTAINER
========================= */

.bar-estimator .estimator-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
}

/* =========================
   TABS
========================= */

.bar-estimator .tab-group {
  display: flex;
  gap: 10px;
}

.bar-estimator .tab-btn {
  background: #e0e0e0;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.bar-estimator .tab-btn.is-active {
  background: #007c91;
  color: #fff;
}

/* =========================
   BAR ESTIMATOR COMPONENTS
========================= */

.bar-estimator .result-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
}

.bar-estimator .result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.estimator-tabs {
  display: flex;
  width: 100%;
  background: #18b7b0;
  border-radius: 10px;
  overflow: hidden;
}

.estimator-tabs button {
  flex: 1;
  padding: 16px 10px;
  background: transparent;
  color: white;
  border: none;
  text-align: center;
}

.estimator-tabs button.active {
  background: rgba(0, 0, 0, 0.15);
}

/* =====================================================
   INQUIRY MODULE
===================================================== */

[data-inquiry-module] .tab-btn {
  padding: 10px 14px;
  background: #e0e0e0;
  border-radius: 8px;
}

[data-inquiry-module] .pill {
  padding: 8px 12px;
  border-radius: 20px;
  background: #eee;
}

[data-inquiry-module] .pill.active {
  background: #007c91;
  color: #fff;
}

/* =========================
   CONTENT RULES - to fix image + text chaos
========================= */
.grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.grid > div {
  min-width: 0;
}

/* REQUIRED CSS (this is the missing piece) */

.media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .grid-split-left {
    grid-template-columns: 1fr;
  }
}
/* =========================
   IMAGE SYSTEM (FIXES YOUR CAROUSEL / GRID ISSUES) 
========================= */
.grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}
.grid .media {
  overflow: hidden;
  border-radius: 6px;
}


/*  SPECIAL TEXT STYLES  */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    color: #313131;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   FULL WIDTH HERO BACKGROUND
========================= */

.hero-bleed {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 900px;
  margin: 0 auto;
  background: #f4f4f4; /* or your hero color/image */
  padding: 80px 0;
}

/* center content inside */
.hero-bleed .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* =========================
   FULL BLEED FIX (EDGE-TO-EDGE)
========================= */

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: #f4f4f4; /* your bleed color */
}

/* =========================
   PRICING SYSTEM LEGACY 
========================= */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
}

.pricing-card {
  min-width: 80%;
  scroll-snap-align: start;
}
.enhancement-item p {
  display: none;
}

.enhancement-item.active p {
  display: block;
}

/* =====================================================
   VISUAL CONSISTENCY
===================================================== */


/* Image polish */

.img-wrap {
  border-radius: 8px;
  overflow: hidden;
}

/* Subtle shadow for depth */

.img-wrap img {
  transition: transform 0.4s ease;
}

.img-wrap:hover img {
  transform: scale(1.03);
}
/* =====================================================
   COMPONENTS.CSS
===================================================== */

/* =========================
   GOLD CARD SYSTEM
========================= */

.gold-card,
.option-card,
.tab-btn,
.date-btn {
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  color: #333;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gold-card:hover,
.option-card:hover,
.tab-btn:hover,
.date-btn:hover {
  transform: translateY(-2px);
  background: #fff7e6;
  border-color: #C19A6B;
}

.gold-card.is-active,
.option-card.is-active,
.tab-btn.is-active,
.date-btn.is-active {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: #fff;
  border-color: #b8860b;
}

/* OPTION CARD */

.option-card {
  position: relative;
}

.option-card.popular::after {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 12px;
  background: #b9975b;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 6px;
  border-radius: 4px;
}

/* RESULT BOX */

.result-box {
  background: #fff8e7;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

/* PACKAGE TABLE */

.package-table {
  width: 100%;
  border-collapse: collapse;
}

.package-table th,
.package-table td {
  border: 1px solid #d4af37;
  padding: 12px;
  text-align: center;
}

/* PILLS */

.pill-group {
  position: relative;
  z-index: 2;
}

.pill-group .pill {
  display: inline-block;
  padding: 8px 12px;
  margin: 6px 6px 0 0;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.pill-group .pill:hover {
  background: #ddd;
}

.pill-group .pill.active {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: #fff;
  font-weight: 600;
}

/* BAR TABS */

.bar-tabs {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.bar-tabs .tab-btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 12px 8px;
  border-radius: 10px;
  background: transparent;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.bar-tabs .tab-btn:hover {
  background: rgba(24, 183, 176, 0.08);
  color: #18b7b0;
}

.bar-tabs .tab-btn.is-active {
  background: #18b7b0;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

/* BAR RESULTS */

.bar-result-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 6px 0;
}

.bar-unit {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.bar-drinks {
  font-size: 13px;
  color: #666;
}

.bar-cases {
  font-size: 13px;
  color: #18b7b0;
  font-weight: 500;
}

/* ITEM BLOCKS */

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 6px 0;
}

.bar-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.bar-item-number {
  font-size: 13px;
  color: #666;
}

.bar-item-sub {
  font-size: 13px;
  color: #18b7b0;
  font-weight: 500;
}



/* SCROLL BUTTONS */

#scrollTopBtn,
.scroll-top-btn {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

#scrollTopBtn {
  bottom: 20px;
  right: 20px;
  background: #499FAF;
  color: #fff;
}

.scroll-top-btn {
  bottom: 25px;
  right: 25px;
  background: #111;
  color: #fff;
  transform: translateY(10px);
}

.scroll-top-btn:hover {
  background: #333;
}

#scrollTopBtn.show,
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =====================================================
   BAR-PAYMENT.CSS (CLEAN BUILD V3 - AUDITED)
   Single-source system for Bar Estimator + UI modules
===================================================== */

.bar-gap {
  height: 25px;
}

.bar-section-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bar-section-group > div {
  flex: 1 1 200px;
}

.bar-image-description {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}


/* =========================
   ESTIMATOR WRAPPER
========================= */

.bar-estimator {
  width: 100%;
}

.bar-estimator-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bar-form-group {
  margin-bottom: 18px;
}

.bar-estimator label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}


/* =========================
   TAB SYSTEM (INPUT UI)
========================= */

.bar-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.bar-tabs::-webkit-scrollbar {
  height: 6px;
}

.bar-tabs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.bar-tab {
  background: #e0e0e0;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: 0.2s ease;
  flex: 0 0 auto;
  min-width: 90px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

.bar-tab:hover {
  background: #0096a8;
  color: #fff;
}

.bar-tab.active {
  background: #007c91;
  color: #fff;
}


/* =========================
   RESULTS CONTAINER
========================= */



/* =========================
   RESULT CARD
========================= */

.bar-result-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}


/* TOTAL DRINKS */
.bar-total {
  font-size: 1.6rem;
  font-weight: 700;
  color: #007c91;
  margin: 10px 0 20px;
}


/* =========================
   CLEAN 4-COLUMN GRID
========================= */

.bar-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.bar-item {
  border: 1px solid #e6e6e6;
  padding: 14px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.bar-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.bar-item-number {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.bar-item-sub {
  font-size: 12px;
  color: #666;
}


/* =========================
   SHOPPING LIST
========================= */

.bar-result-card ul {
  padding-left: 18px;
  margin-top: 15px;
  text-align: left;
}

.bar-result-card li {
  margin-bottom: 6px;
}


/* =========================
   RESULT NOTE
========================= */

.bar-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}


/* =========================
   PRINT BUTTON
========================= */

.bar-print-btn {
  margin-top: 18px;
  padding: 10px 18px;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.bar-print-btn:hover {
  background: #444;
}


/* =========================
   PAYMENT BUTTONS
========================= */

.payment-section {
  text-align: center;
  margin: 40px auto 20px;
  padding: 20px;
  max-width: 1000px;
}

.payment-note {
  text-align: left;
}

.pay-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
}


/* =========================
   INCLUDED CALLOUTS
========================= */

.included-callout {
  margin-top: 20px;
  padding: 18px 20px;
  background: #f8f6f2;
  border-radius: 10px;
}

.included-callout.highlight {
  border: 1px solid #e5e1d8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.included-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.included-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.included-list {
  padding-left: 18px;
  margin-bottom: 10px;
}

.included-list li {
  margin-bottom: 6px;
}

.included-value {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.included-link a {
  font-weight: bold;
  text-decoration: none;
  color: #7C0D30;
}

.included-link a:hover {
  color: #dc215c;
  border-bottom: 1px solid #dc215c;
}
/* =======================================
   BAR RESULT TYPOGRAPHY ENHANCEMENT
   (increase readability of key numbers)
======================================= */

.bar-item-title {
  font-size: 15px;   /* was ~13px */
  font-weight: 600;
}

.bar-item-number {
  font-size: 22px;   /* was ~22px */
  font-weight: 800;
  line-height: 1.1;
}

.bar-item-sub {
  font-size: 14px;   /* was ~12px */
  color: #555;
}
/* =======================================
   BAR SHOPPING LIST – TYPOGRAPHY BOOST
======================================= */

#bar-estimator-pro .be-shopping li {
  font-size: 16px;   /* was ~14px or browser default */
  font-weight: 500;
  margin-bottom: 8px;
  color: #222;
}

#bar-estimator-pro .be-shopping li strong {
  font-weight: 700;
}
#barResults {
  display: block;
  width: 100%;
  min-height: 40px;
  margin-top: 35px;
}

.bar-result-card {
  display: block;
  width: 100%;
}
@media print {
  button.print-button,
  .print-button,
  .print-button * {
    display: none !important;
    visibility: hidden !important;
  }
}
/* =====================================
   COMPONENTS.CSS
===================================== */

/* =========================
   GOLD DESIGN SYSTEM
========================= */

.gold-card,
.tab-btn,
.date-btn,
.option-card {
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  color: #333;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}

.gold-card:hover,
.tab-btn:hover,
.date-btn:hover,
.option-card:hover {
  transform: translateY(-2px);
  background: #fff7e6;
  border-color: #C19A6B;
}

.gold-card.is-active,
.tab-btn.is-active,
.date-btn.is-active,
.option-card.is-active,
.option-card:has(input:checked) {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: #fff;
  border-color: #b8860b;
  box-shadow: 0 8px 20px rgba(184,134,11,0.25);
}

.gold-card.is-active *,
.tab-btn.is-active *,
.date-btn.is-active *,
.option-card.is-active *,
.option-card:has(input:checked) * {
  color: #fff !important;
}

/* =========================
   OPTIONS / CARDS
========================= */

.option-card {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.option-card input {
  display: none;
}

.option-title {
  font-weight: 600;
}

.option-description {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
}

/* Popular badge */
.option-card.popular::after {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  right: 10px;
  background: #b9975b;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 10;
}

/* =========================
   TABS
========================= */

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  font-weight: 600;
}

/* Tab panels */
.estimator-tab { display: none; }
.estimator-tab.is-active { display: block; }

/* =========================
   RESULT BOX
========================= */

.result-box {
  background: #fff8e7;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 25px;
}

.result-box h2 {
  font-size: 2.2rem;
  color: #b8860b;
}

.result-box p {
  font-size: 0.9rem;
  margin: 4px 0;
}

/* =========================
   PACKAGE TABLE
========================= */

.package-table th,
.package-table td {
  border: 1px solid #d4af37;
  padding: 12px;
  text-align: center;
}

.package-table th {
  background: #fff8e7;
}

/* =========================
   ACCORDION (MOBILE)
========================= */

.accordion-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 16px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 12px 16px 16px;
}

/* =========================
   PAYMENT
========================= */

.payment-section {
  text-align: center;
  margin: 40px auto 20px;
  padding: 20px;
  max-width: 1000px;
}

.pay-btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

/* Active text override */
.option-card.is-active *,
.tab-btn.is-active *,
.date-btn.is-active *,
.gold-card.is-active * {
  color: #fff !important;
}

/* Force alignment rules */
.option-card .package-desc:first-of-type {
  text-align: center;
}

.option-card .package-desc:last-of-type {
  text-align: left;
}
/*--------------------------------------------------------
 Restrict height of logo image
--------------------------------------------------------*/

.logo {
  display: inline-block;
  flex-shrink: 0;
  padding-bottom: 5px; 
  padding-top: 5px;
}

.logo img {
  display: block;
  width: auto;
  height: 100%;
}

:root {
  --logo-sm: 100px;
  --logo-md: 140px; 
  --logo-lg: 180px;
  --logo-xl: 240px;
}
.logo--sm  { height: var(--logo-sm); }
.logo--md  { height: var(--logo-md); }
.logo--lg  { height: var(--logo-lg); }
.logo--xl  { height: var(--logo-xl); }

.logo--wide {
  width: 240px;
  height: auto;
}

.logo--tall {
  height: 300px;
  width: auto;
}

/*--------------------------------------------------------
 Restrict scroll speed for a smooth glide
--------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.chateau-microhero {
  width: 100%;
  background: #f8f8f8 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.micro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px;
  text-align: center;
}

.chateau-microhero p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
