:root {
  /* New semantic tokens */
  --ink: #0f0f10;
  --ink-2: #3a3a3e;
  --muted: #76767c;
  --line: rgba(15, 15, 16, 0.08);
  --line-strong: rgba(15, 15, 16, 0.14);
  --surface: #ffffff;
  --surface-2: #f7f7f8;
  --surface-3: #f1f1f3;
  --brand: #f39235;
  --brand-ink: #c66f17;
  --brand-soft: #fff3e8;
  --success: #16a34a;
  --danger: #ef4444;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-xs: 0 1px 2px rgba(15, 15, 16, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 15, 16, 0.05);
  --shadow-md: 0 12px 32px rgba(15, 15, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 16, 0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.25s;

  --container: 1180px;
  --section-y: clamp(56px, 9vw, 120px);

  /* Theming helpers (kept dark in BOTH modes) */
  --footer-bg: var(--ink);
  --cta-bg: var(--ink);        /* solid primary button bg */
  --cta-fg: #ffffff;           /* solid primary button text */
  --nav-bg: rgba(255, 255, 255, 0.82);
  --nav-bg-solid: rgba(255, 255, 255, 0.92);
  --menu-bg: rgba(255, 255, 255, 0.98);

  /* Legacy aliases kept so any unseen page still resolves */
  --white_bg: var(--surface);
  --black_bg: var(--ink);
  --light_bg: var(--surface-2);
  --body_bg: var(--surface);
  --inactive_link: var(--muted);
  --brand_color: var(--brand);
  --border: 1px solid var(--line);
  --border-top: 1px solid var(--line);
  --border-bottom: 1px solid var(--line);
  --border-left: 1px solid var(--line);
  --border-right: 1px solid var(--line);
  --border_radius: var(--radius-sm);
  --bg_success: #eefcf3;
  --bg_danger: #ffeeeb;
  --bg_warning: #fff5eb;
}

/* ----------------------------------------------------------------- */
/* Base                                                              */
/* ----------------------------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

::selection { background: var(--brand); color: #fff; }

/* Faster taps on mobile, no 300ms delay */
a, button, .btn, .nav-link, [onclick] { touch-action: manipulation; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.hidden { display: none; }

/* Display headings use the condensed athletic face */
.slide-title,
.heading h2,
.about .about-box h2,
.about .facilities-box h2,
.hero-banner .text-box h1,
.intelude .text-box h2,
.contact-box .text-box h2.title {
  /*font-family: "Barlow Condensed", "Inter", sans-serif;*/
  letter-spacing: -0.01em;
  line-height: 1.02;
}

/* ----------------------------------------------------------------- */
/* Skeletons / lazy                                                  */
/* ----------------------------------------------------------------- */
.lazy { filter: blur(8px); background: var(--surface-3); transition: filter .4s var(--ease); }

.skeleton { animation: pulse 1.4s ease-in-out infinite; }
.skeleton .img-box { height: 250px; background: var(--surface-3); border-radius: var(--radius); }
.skeleton .line { background: var(--surface-3); height: 12px; margin-top: 10px; border-radius: 4px; }
.skeleton .title { width: 80%; }
.skeleton .price { width: 40%; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.skeleton-cart { animation: pulse 1.4s ease-in-out infinite; }
.skeleton-img { width: 100%; height: 150px; border-radius: var(--radius); background: var(--surface-3); }
.skeleton-text { height: 16px; background: var(--surface-3); margin-bottom: 12px; border-radius: 4px; }
.skeleton-text.title { width: 70%; height: 20px; }
.skeleton-text.small { width: 50%; }
.skeleton-summary .skeleton-text { height: 18px; }

/* ----------------------------------------------------------------- */
/* Scroll reveal (added by JS; safe no-op if JS/IO absent)           */
/* ----------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------- */
/* Navbar                                                            */
/* ----------------------------------------------------------------- */
.nav_wrapper { position: fixed; inset: 0 0 auto 0; z-index: 1000; width: 100%; }

nav.navbar {
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  padding: 10px 0;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
nav.navbar.scrolled { box-shadow: var(--shadow-md); background: var(--nav-bg-solid); }

nav.navbar .container-fluid { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

nav.navbar .navbar-brand { font-weight: 800; color: var(--ink); }
nav.navbar .navbar-brand img { width: 92px; height: auto; }

nav.navbar .navbar-nav { gap: 26px; align-items: center; }

nav.navbar .nav-item .nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color var(--dur) var(--ease);
}
nav.navbar .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width var(--dur) var(--ease);
}
nav.navbar .nav-item .nav-link:hover,
nav.navbar .nav-item .nav-link.active { color: var(--ink); }
nav.navbar .nav-item .nav-link:hover::after,
nav.navbar .nav-item .nav-link.active::after { width: 100%; }

/* CTA / cart button */
nav.navbar .navbar-nav .book-appointment {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
nav.navbar .navbar-nav .book-appointment::after { display: none; }
nav.navbar .navbar-nav .book-appointment:hover { background: var(--brand); transform: translateY(-1px); color: #fff; }
.cart-count {
  background: var(--brand); color: #fff; border-radius: 999px;
  min-width: 20px; height: 20px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.navbar-toggler { border: 1px solid var(--line-strong); padding: 6px 9px; }
.navbar-toggler:focus { box-shadow: none; }

/* ----------------------------------------------------------------- */
/* Section headings                                                  */
/* ----------------------------------------------------------------- */
.heading { margin-bottom: clamp(36px, 6vw, 72px); }
.heading .d-flex { gap: 8px; align-items: center; }
.heading h3 {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-ink); margin: 0;
}
.heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--ink); margin: 10px 0 0;
}
.heading p {
  font-size: 1.05rem; color: var(--muted); font-weight: 400;
  margin-top: 14px; max-width: 60ch; line-height: 1.7;
}
.heading a {
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 12px 22px; display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; width: auto; font-weight: 600;
  font-size: 0.9rem; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.heading a:hover { background: var(--brand); transform: translateY(-1px); }
.heading.d-flex.flex-column { gap: 12px; }
.heading-bottom { margin-top: clamp(48px, 7vw, 90px); }

/* ----------------------------------------------------------------- */
/* Hero carousel                                                     */
/* ----------------------------------------------------------------- */
.carousel-container { position: relative; height: 100vh; height: 100dvh; min-height: 560px; overflow: hidden; background: var(--ink); }

.carousel-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity 1.1s var(--ease), transform 1.4s var(--ease); }
.carousel-slide.active { opacity: 1; transform: scale(1); }
.carousel-slide.next { opacity: 0; transform: translateX(6%) scale(0.98); }
.carousel-slide.prev { opacity: 0; transform: translateX(-6%) scale(0.98); }

.slide-background { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-background::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.12) 100%);
}

.slide-content {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  z-index: 10; width: min(620px, 88%);
  padding: 0 clamp(20px, 6vw, 90px);
  display: flex; flex-direction: column;
}
.slide-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700; color: #fff; margin: 0 0 18px;
  text-transform: uppercase;
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease) .25s, transform .7s var(--ease) .25s;
}
.slide-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,.82);
  margin: 0 0 30px; max-width: 46ch; line-height: 1.7;
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease) .4s, transform .7s var(--ease) .4s;
}
.slide-button {
  align-self: flex-start;
  padding: 13px 28px; background: var(--brand); color: #fff;
  border: none; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-align: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease) .55s, transform .7s var(--ease) .55s, background .25s var(--ease);
}
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-subtitle,
.carousel-slide.active .slide-button { opacity: 1; transform: none; }
.slide-button:hover { background: #fff; color: var(--ink); }

.carousel-navigation { position: absolute; bottom: 34px; left: clamp(20px, 6vw, 90px); display: flex; gap: 10px; z-index: 20; }
.nav-dot { width: 30px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.32); cursor: pointer; transition: background var(--dur) var(--ease), width var(--dur) var(--ease); }
.nav-dot.active { background: var(--brand); width: 46px; }

.carousel-arrows { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 100%; display: flex; justify-content: space-between; padding: 0 24px; pointer-events: none; }
.arrow { pointer-events: auto; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; backdrop-filter: blur(6px); transition: background var(--dur) var(--ease); display: inline-flex; align-items: center; justify-content: center; }
.arrow:hover { background: rgba(255,255,255,.24); }

/* legacy fragment grid no longer rendered */
.slide-fragments, .fragment { display: none !important; }

/* ----------------------------------------------------------------- */
/* Shared container rhythm                                           */
/* ----------------------------------------------------------------- */
.about, .programs, .process, .location, .pricing, .faq,
.testimonials, .values, .gallery, .product-display, .contact-box { padding: var(--section-y) 20px; }

.row-gap { row-gap: 32px; }
.ry-5 { row-gap: 32px; }

/* ----------------------------------------------------------------- */
/* About                                                             */
/* ----------------------------------------------------------------- */
.about .img-box { width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.about .img-box img { width: 100%; height: 100%; object-fit: cover; }
.about .about-img-box { width: 100%; height: clamp(320px, 48vw, 70vh); border-radius: var(--radius-lg); overflow: hidden; }
.about .about-img-box img { width: 100%; height: 100%; object-fit: cover; }

.about .text-box { padding: 40px 0 0; }
.about .text-box p { font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 500; color: var(--ink); line-height: 1.5; }
.about .text-box a { font-size: 0.95rem; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.about .text-box a:hover { color: var(--brand); border-color: var(--brand); }

.about .about-box { margin: 48px 0; }
.about .about-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.about .about-box p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }

/* Facilities cards (about page "Why choose") */
.about .facilities-box { padding: var(--section-y) 0; }
.about .facilities-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 24px; }
.about .facilities-box .row { row-gap: 32px; }
.about .facilities-box .box { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.about .facilities-box .box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about .facilities-box .box .img-box { height: 160px; border-radius: 0; }
.about .facilities-box .box h3 { font-weight: 700; font-size: 0.95rem; padding: 16px; margin: 0; }

.about .info-box .data-box { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.about .info-box .data-box h3 { font-size: 1.1rem; font-weight: 700; }
.about .info-box .data-box p { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }

/* ----------------------------------------------------------------- */
/* Values                                                            */
/* ----------------------------------------------------------------- */
.values .img-box { width: 100%; height: clamp(260px, 38vw, 44vh); border-radius: var(--radius-lg); overflow: hidden; }
.values .img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ----------------------------------------------------------------- */
/* Programs                                                          */
/* ----------------------------------------------------------------- */
.programs .img-box { position: relative; width: 100%; height: clamp(360px, 40vw, 500px); border-radius: var(--radius-lg); overflow: hidden; }
.programs .img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.programs .img-box:hover img { transform: scale(1.04); }
.programs .img-box .text { position: absolute; inset: auto 0 0 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0)); }
.programs .img-box .text h2 { font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.programs .img-box .text p { font-size: 0.85rem; color: rgba(255,255,255,.85); margin: 0; }

/* ----------------------------------------------------------------- */
/* Process / training programs                                       */
/* ----------------------------------------------------------------- */
.process .d-flex.flex-column { gap: 28px; }
.process .item-box {
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px); background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.process .item-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process .item-box .text-box h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; }
.process .item-box .text-box p { font-size: 1rem; line-height: 1.8; font-weight: 400; color: var(--ink-2); }
.process .item-box .text-box ul { list-style: none; margin: 0; padding: 0; }
.process .item-box .text-box ul li { padding: 8px 0; font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.process .item-box .text-box ul li i { color: var(--brand); }
.process .item-box .img-box img { width: 100%; height: 100%; object-fit: contain; }

/* ----------------------------------------------------------------- */
/* Location cards                                                    */
/* ----------------------------------------------------------------- */
.location .item-box { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.location .item-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.location .item-box .img-box { height: clamp(220px, 26vw, 320px); overflow: hidden; }
.location .item-box .img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.location .item-box:hover .img-box img { transform: scale(1.05); }
.location .item-box .text-box { padding: 20px; }
.location .item-box .text-box h2 { font-weight: 700; font-size: 1.05rem; }
.location .item-box .text-box p { font-weight: 400; font-size: 0.85rem; color: var(--muted); }
.location .item-box .text-box a { font-weight: 500; font-size: 0.85rem; color: var(--brand-ink); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--dur) var(--ease); }
.location .item-box .text-box a:hover { gap: 12px; }

/* ----------------------------------------------------------------- */
/* Pricing                                                           */
/* ----------------------------------------------------------------- */
.pricing .tab-box { gap: 44px; }
.pricing .nav.nav-mobile-role { background: var(--surface-2); padding: 6px; border: 1px solid var(--line); border-radius: 999px; }
.pricing .nav.nav-mobile-role .nav-item .nav-link { color: var(--ink-2); font-size: 0.9rem; font-weight: 500; border-radius: 999px; padding: 9px 22px; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.pricing .nav.nav-mobile-role .nav-item .nav-link.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-xs); font-weight: 600; }

.pricing .price-data-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pricing .price-data-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pricing .price-data-box h3 { font-size: 1.35rem; font-weight: 700; margin: 0; }
.pricing .price-data-box h4 { font-size: 1.6rem; font-weight: 800; margin: 0; color: var(--ink); 
/*font-family: "Barlow Condensed", sans-serif;*/
}
.pricing .price-data-box ul { margin: 0; padding: 0; list-style: none; }
.pricing .price-data-box ul li { padding: 9px 0; font-size: 0.88rem; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.pricing .price-data-box ul li i { color: var(--brand); }
.pricing .price-data-box a { margin-top: auto; background: var(--ink); color: #fff; border-radius: 999px; padding: 12px 18px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.9rem; transition: background var(--dur) var(--ease); }
.pricing .price-data-box a:hover { background: var(--brand); }

/* ----------------------------------------------------------------- */
/* FAQ                                                               */
/* ----------------------------------------------------------------- */
.faq .accordion-item { border: none; border-bottom: 1px solid var(--line); background: transparent; }
.faq .accordion-button { padding: 24px 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); background: transparent; box-shadow: none; }
.faq .accordion-button:not(.collapsed) { color: var(--brand-ink); background: transparent; }
.faq .accordion-button:focus { box-shadow: none; }
.faq .accordion-button::after { width: 1rem; height: 1rem; background-size: 1rem; }
.faq .accordion-body { font-size: 0.95rem; line-height: 1.9; color: var(--muted); padding: 0 0 22px; }

/* ----------------------------------------------------------------- */
/* Testimonials                                                      */
/* ----------------------------------------------------------------- */
.testimonial-container { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.testimonial-track { display: inline-flex; animation: scroll 48s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; margin: 0 12px;
  width: 380px; display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-xs);
}
.testimonial p { font-size: 0.92rem; line-height: 1.8; font-weight: 400; color: var(--ink-2); }
.testimonial .d-flex { gap: 12px; }
.testimonial h4 { margin: 0; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- */
/* Intelude (CTA band)                                               */
/* ----------------------------------------------------------------- */
.intelude {
  width: 100%;
  background-image: linear-gradient(to top, rgba(0,0,0,.92) 30%, rgba(0,0,0,.35)),
                    url('https://framerusercontent.com/images/24jhdUHWvxlInGAXhURXveQtI.jpg');
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.intelude .text-box { display: flex; flex-direction: column; gap: 22px; }
.intelude .text-box h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin: 0; text-transform: uppercase; }
.intelude .text-box p { font-size: 1.1rem; color: rgba(255,255,255,.82); margin: 0; }
.intelude .text-box a {
  align-self: flex-start; color: var(--ink); background: #fff;
  padding: 13px 22px; border-radius: 999px; font-size: 0.92rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.intelude .text-box a:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.intelude .text-box a span { width: 30px; height: 30px; background: var(--brand); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.intelude .text-box a:hover span { background: #fff; }
.intelude .text-box a span i { color: #fff; }
.intelude .text-box a:hover span i { color: var(--brand); }

/* ----------------------------------------------------------------- */
/* Footer                                                            */
/* ----------------------------------------------------------------- */
.footer { background: var(--footer-bg); padding: clamp(48px, 7vw, 80px) 20px 32px; }
.footer .container-fluid { max-width: var(--container); margin: 0 auto; }
.footer .logo-box p { color: rgba(255,255,255,.7); font-weight: 400; font-size: 0.9rem; margin-top: 10px; }
.footer .infoBox h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer .infoBox ul { list-style: none; margin: 0; padding: 0; }
.footer .infoBox ul li { padding: 6px 0; }
.footer .infoBox ul li a { color: rgba(255,255,255,.7); font-weight: 400; font-size: 0.88rem; transition: color var(--dur) var(--ease); }
.footer .infoBox ul li a:hover { color: var(--brand); }
.footer .socials { gap: 8px; margin-top: 14px; }
.footer .socials .btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: inline-flex; align-items: center; justify-content: center; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.footer .socials .btn:hover { background: var(--brand); border-color: var(--brand); }
.footer .socials .btn i { color: #fff; }
.footer .footerBottom { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; margin-top: 36px; }
.footer .footerBottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,.55); }

/* ----------------------------------------------------------------- */
/* Hero banner (shop)                                                */
/* ----------------------------------------------------------------- */
.hero-banner { width: 100%; min-height: 46vh; background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; margin-top: 64px; }
.hero-banner .text-box { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-banner .text-box h1 { color: #fff; margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase; }
.hero-banner .text-box p { color: rgba(255,255,255,.85); margin: 0; font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 300; }

/* ----------------------------------------------------------------- */
/* Product display / store                                           */
/* ----------------------------------------------------------------- */
#product-sections { row-gap: 40px; }

.heading.fff-section { display: flex; width: 100%; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 28px; }
.heading.fff-section h2 { color: var(--ink); font-size: 1.4rem; font-weight: 700; margin: 0; 
/*font-family: "Barlow Condensed", sans-serif; */
letter-spacing: 0; }
.heading.fff-section a { font-size: 0.85rem; color: var(--brand-ink); display: inline-flex; align-items: center; gap: 6px; }

.product-display .store-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; gap: 14px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); background: var(--surface); }
.product-display .store-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.product-display .store-item .img-box { width: 100%; height: 250px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.product-display .store-item .img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-display .store-item:hover .img-box img { transform: scale(1.05); }
.product-display .store-item a { color: var(--ink); }
.product-display .store-item a .text-box h2 { font-size: 0.95rem; font-weight: 600; margin: 0; }
.product-display .store-item a .text-box span { color: var(--brand-ink); font-size: 0.9rem; font-weight: 700; }

/* ----------------------------------------------------------------- */
/* Breadcrumb                                                        */
/* ----------------------------------------------------------------- */
.data-breadcrumb { margin-top: 96px; padding: 20px; }
.data-breadcrumb .container-fluid,
.product-display .container-fluid,
.cart-display .row.justify-content-center { margin-inline: auto; }
.data-breadcrumb .breadcrumb { gap: 14px; align-items: center; margin: 0; }
.data-breadcrumb .breadcrumb a { color: var(--muted); font-size: 0.82rem; font-weight: 500; transition: color var(--dur) var(--ease); }
.data-breadcrumb .breadcrumb a:hover { color: var(--ink); }
.data-breadcrumb .breadcrumb i { font-size: 0.65rem; color: var(--muted); }

/* ----------------------------------------------------------------- */
/* Product preview                                                   */
/* ----------------------------------------------------------------- */
.data-product-prev { padding: 40px 20px; }
.data-product-prev .carousel-item { width: 100%; height: clamp(380px, 48vw, 620px); border: 1px solid var(--line); padding: 14px; border-radius: var(--radius-lg); background: var(--surface-2); }
.data-product-prev .carousel-item img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.data-product-prev .carousel-indicators { margin-bottom: 0; bottom: -28px; }
.data-product-prev .carousel-indicators button { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.data-product-prev .product-desc { display: flex; flex-direction: column; gap: 18px; }
.data-product-prev .product-desc span.category { font-size: 0.85rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.data-product-prev .product-desc h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 8px 0; 
/*font-family: "Barlow Condensed", sans-serif; */
    
}
.data-product-prev .product-desc span.cost { font-size: 1.3rem; font-weight: 700; color: var(--brand-ink); }
.data-product-prev .product-desc .add-to-cart { font-size: 0.85rem; font-weight: 600; color: #fff; background: var(--ink); border-radius: 999px; padding: 12px 26px; transition: background var(--dur) var(--ease); }
.data-product-prev .product-desc .add-to-cart:hover { background: var(--brand); }
.data-product-prev .product-desc .add-to-wishlist { font-size: 0.85rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.data-product-prev .product-desc .add-to-wishlist:hover,
.data-product-prev .product-desc .add-to-wishlist.active { color: var(--brand); border-color: var(--brand); }
.data-product-prev .product-desc .box-2 .d-flex { gap: 12px; }
.data-product-prev .product-desc .box-3 .accordion-item { border: none; border-bottom: 1px solid var(--line); }
.data-product-prev .product-desc .box-3 .accordion-button { padding: 18px 0; font-size: 0.95rem; font-weight: 600; background: transparent; box-shadow: none; }
.data-product-prev .product-desc .box-3 .accordion-button:focus { box-shadow: none; }
.data-product-prev .product-desc .box-3 .accordion-body { font-size: 0.9rem; font-weight: 400; line-height: 1.8; color: var(--ink-2); border-left: 3px solid var(--brand); padding-left: 16px; }
.data-product-prev .product-desc .box-3 .accordion-body .review-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.data-product-prev .product-desc .box-3 .accordion-body .review-item span.date { font-size: 0.85rem; color: var(--muted); }
.data-product-prev .product-desc .box-3 .accordion-body .review-item span.reviewer { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.data-product-prev .product-desc .box-3 .accordion-body .review-item .review-img { gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.data-product-prev .product-desc .box-3 .accordion-body .review-item .review-img img { width: 110px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); }

.counter-container { display: flex; align-items: center; gap: 8px; }
.counter-container .btn { width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; padding: 0; }
#quantity, .quantity { width: 44px; text-align: center; font-size: 0.95rem; padding: 6px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }

/* ----------------------------------------------------------------- */
/* Cart / checkout                                                   */
/* ----------------------------------------------------------------- */
.cart-display { padding: 40px 20px; }
.cart-display .summary-box { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 16px; background: var(--surface); box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.cart-display .summary-box h2 { margin: 0; font-size: 1.2rem; font-weight: 800; }
.cart-display .summary-box .d-flex h4 { margin: 0; font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.cart-display .summary-box .d-flex h5 { margin: 0; font-size: 0.95rem; font-weight: 700; }
.cart-display .summary-box button,
.cart-display .summary-box .checkout-btn { background: var(--ink); color: #fff; border-radius: 999px; padding: 13px; font-weight: 600; font-size: 0.95rem; border: none; transition: background var(--dur) var(--ease); }
.cart-display .summary-box button:hover,
.cart-display .summary-box .checkout-btn:hover { background: var(--brand); }
.direct-to-wishlist { color: var(--muted); font-size: 0.82rem; display: block; margin-top: 10px; text-align: center; }
.add-address-btn { cursor: pointer; font-size: 0.85rem; color: var(--brand-ink); font-weight: 600; }

.cart-display .cart-item { border: 1px solid var(--line); padding: 14px; border-radius: var(--radius-lg); background: var(--surface); transition: box-shadow var(--dur) var(--ease); }
.cart-display .cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-display .cart-item .img-box { width: 100%; height: 220px; border: 1px solid var(--line); padding: 10px; border-radius: var(--radius); background: var(--surface-2); }
.cart-display .cart-item .img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.cart-display .cart-item a { color: var(--ink); }
.cart-display .cart-item a .text-box h2 { font-size: 1.1rem; font-weight: 700; }
.cart-display .cart-item a .text-box .d-flex span.category { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.cart-display .cart-item a .text-box .d-flex span.cost { font-size: 0.85rem; color: var(--brand-ink); font-weight: 700; }
.cart-display .cart-item .btn.trash { color: var(--danger); }
.cart-display .item-flex { gap: 28px; }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }

/* ----------------------------------------------------------------- */
/* Auth pages                                                        */
/* ----------------------------------------------------------------- */
.app-auth { width: 100%; min-height: 100vh; min-height: 100dvh; background-image: linear-gradient(to top, rgba(0,0,0,.9) 30%, rgba(0,0,0,.35)), url('https://framerusercontent.com/images/24jhdUHWvxlInGAXhURXveQtI.jpg'); background-position: center; background-size: cover; }
.app-auth .form-box { width: 100%; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; }
.app-auth .form-box .wrapper { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 24px; background: var(--surface); box-shadow: var(--shadow-lg); }
.app-auth .form-box .wrapper h2 { font-weight: 800; font-size: 1.7rem; 
/*font-family: "Barlow Condensed", sans-serif;*/
}
.app-auth .form-box form label { font-size: 0.8rem; margin-bottom: 8px; font-weight: 500; color: var(--ink-2); }
.app-auth .form-box form input,
.app-auth .form-box form select { height: calc(2.6em + .75rem); color: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding-left: 16px; font-size: 0.9rem; font-weight: 500; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.app-auth .form-box form input:focus,
.app-auth .form-box form select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.app-auth .form-box .route span { color: var(--muted); font-size: 0.9rem; }
.app-auth .form-box .route a,
.app-auth .form-box .form-group a { color: var(--brand-ink); font-size: 0.9rem; font-weight: 600; }
.app-auth .form-box form button.formBtn { height: calc(2.6em + .75rem); color: #fff; background: var(--ink); border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; border: none; transition: background var(--dur) var(--ease); }
.app-auth .form-box form button.formBtn:hover { background: var(--brand); }

form .password-group { position: relative; }
form .password-group .pass-view { position: absolute; right: 12px; top: 40px; cursor: pointer; color: var(--muted); }
.form-check-label { font-size: 0.8rem; }

/* Location form (admin-ish) */
.location-wrapper .form-box .wrapper { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 22px; background: var(--surface); box-shadow: var(--shadow-sm); }
.location-wrapper .form-box .wrapper h2 { font-weight: 800; font-size: 1.6rem; }
.location-wrapper .form-box form label { font-size: 0.8rem; margin-bottom: 5px; font-weight: 500; }
.location-wrapper .form-box form input,
.location-wrapper .form-box form select { height: calc(2.2em + .75rem); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding-left: 16px; font-size: 0.8rem; }
.location-wrapper .form-box form button.formBtn { height: calc(2.2em + .75rem); color: #fff; background: var(--brand); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; border: none; }

/* ----------------------------------------------------------------- */
/* Success page                                                      */
/* ----------------------------------------------------------------- */
.success_page { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.success_page .success_box { display: flex; flex-direction: column; gap: 28px; background: var(--surface); padding: 36px; box-shadow: var(--shadow-lg); border-radius: var(--radius-xl); margin: 8em 0 4em; border: 1px solid var(--line); }
.success_page .success_box h2 { font-weight: 800; font-size: 1.5rem; margin: 0; }
.success_page .success_box i { font-size: 2rem; margin-bottom: 16px; color: var(--brand); }
.success_page .success_box .pay_info .item-box { display: flex; padding: 14px 0; border-bottom: 1px solid var(--line); }
.success_page .success_box .pay_info .item-box:last-child { border-bottom: none; }
.success_page .success_box .pay_info .item-box .item-body { margin-left: auto; }
.success_page .success_box p { font-weight: 500; font-size: 0.85rem; margin: 0; }
.success_page .success_box .home_btn a { background: var(--ink); color: #fff; border-radius: 999px; transition: background var(--dur) var(--ease); }
.success_page .success_box .home_btn a:hover { background: var(--brand); }

/* ----------------------------------------------------------------- */
/* Contact                                                           */
/* ----------------------------------------------------------------- */
.contact-box { padding: clamp(96px, 12vw, 150px) 20px; }
.contact-box .text-box { padding: 0 0 30px; }
.contact-box .text-box h2.title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.contact-box .text-box p.subtitle { font-size: 1.1rem; font-weight: 400; color: var(--muted); }
.contact-box .text-box .box { margin: 18px 0; }
.contact-box .text-box .box span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-box .text-box .box p { font-size: 0.95rem; color: var(--ink); margin: 8px 0 0; }
.contact-box .text-box .box p a { font-size: 0.95rem; color: var(--ink); transition: color var(--dur) var(--ease); }
.contact-box .text-box .box p a:hover { color: var(--brand); }
.contact-box .text-box .box.socials .social-icons { display: flex; gap: 14px; margin-top: 12px; }
.contact-box .text-box .box.socials a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); border-radius: 50%; transition: background var(--dur) var(--ease); }
.contact-box .text-box .box.socials a:hover { background: var(--brand); }
.contact-box .text-box .box.socials a i { color: #fff; font-size: 0.85rem; }
.contact-box .form-box h2 { font-size: 1.6rem; font-weight: 700; }
.contact-box form { margin-top: 24px; }
.contact-box .form-box .form-group { margin-bottom: 18px; }
.contact-box .form-box label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.contact-box .form-box input,
.contact-box .form-box textarea { font-size: 0.9rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.contact-box .form-box input { height: calc(2.6em + .75rem); }
.contact-box .form-box input:focus,
.contact-box .form-box textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.contact-box .form-box button[type="submit"] { border: none; border-radius: 999px; background: var(--ink); color: #fff; font-size: 0.9rem; height: calc(3.4em + .75rem); transition: background var(--dur) var(--ease); }
.contact-box .form-box button[type="submit"]:hover { background: var(--brand); }

/* ----------------------------------------------------------------- */
/* Gallery                                                           */
/* ----------------------------------------------------------------- */
.gallery .image-gallery { width: 100%; margin: 0 auto; padding: 30px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); grid-auto-rows: 300px; grid-auto-flow: dense; gap: 12px; }
.gallery .image-gallery .img-box { position: relative; background: var(--surface-2); overflow: hidden; border-radius: var(--radius); }
.gallery .image-gallery .img-box:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.gallery .image-gallery .img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery .image-gallery .img-box:hover img { transform: scale(1.05); }

/* ----------------------------------------------------------------- */
/* Bootstrap button reset to brand                                   */
/* ----------------------------------------------------------------- */
.btn-check:checked + .btn { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ----------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------- */
.about {
  padding: var(--section-y) 20px;
}
 
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
 
/* Two stacked images on the left */
.about .about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
 
.about .about-images .img-primary {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-3);
}
 
.about .about-images .img-secondary {
  height: 184px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-3);
}
 
.about .about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* Right-side text */
.about .about-copy {}
 
.about .about-copy p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
 
.about .about-copy p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
 
.about .about-copy .about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
 
.about .about-copy .about-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}
 
/* Stat pills */
.about .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
 
.about .stat-pill {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.about .stat-pill .stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
 
.about .stat-pill .stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
 
  .about .about-images {
    grid-template-columns: 1fr 1fr;
  }
 
  .about .about-images .img-primary {
    height: 260px;
  }
 
  .about .about-images .img-secondary {
    height: 124px;
  }
}
 
@media (max-width: 576px) {
  .about .about-images .img-primary {
    height: 220px;
  }
 
  .about .about-images .img-secondary {
    height: 104px;
  }
}
 
 
/* ----------------------------------------------------------------
   PRICING
   ---------------------------------------------------------------- */
.pricing {
  padding: var(--section-y) 20px;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
 
/* Toggle pills */
.pricing .plan-toggle {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
}
 
.pricing .plan-toggle button {
  padding: 8px 24px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
 
.pricing .plan-toggle button.active {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
 
/* Plans grid — auto-fits up to 6 cards */
#plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-items: stretch;
}
 
/* Individual card */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
 
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
 
/* Featured card */
.plan-card.featured {
  border-color: var(--brand);
  border-width: 2px;
}
 
.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand);
}
 
/* Popular badge */
.plan-card .badge-pop {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
 
/* Plan header */
.plan-card .plan-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
 
.plan-card .plan-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 4px 0 2px;
}
 
.plan-card .plan-meta {
  font-size: 0.78rem;
  color: var(--muted);
}
 
/* Divider */
.plan-card .plan-divider {
  height: 1px;
  background: var(--line);
}
 
/* Feature list */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
 
.plan-card ul li {
  font-size: 0.85rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
 
.plan-card ul li i {
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
 
/* CTA button */
.plan-card .plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 999px;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--cta-bg);
  color: var(--cta-fg);
  transition: background var(--dur) var(--ease);
  text-decoration: none;
  margin-top: auto;
}
 
.plan-card .plan-cta:hover {
  background: var(--brand);
  color: #fff;
}
 
.plan-card.featured .plan-cta {
  background: var(--brand);
}
 
.plan-card.featured .plan-cta:hover {
  background: var(--brand-ink);
}
 
/* Loading / error states */
#plans-grid.loading,
#plans-grid.error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  font-size: 0.9rem;
  color: var(--muted);
}
 
/* ---- Responsive ---- */
@media (max-width: 640px) {
  #plans-grid {
    grid-template-columns: 1fr;
  }
}
 
 
/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq {
  padding: var(--section-y) 20px;
}
 
.faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}
 
.faq .faq-item {
  border-bottom: 1px solid var(--line);
}
 
.faq .faq-item:first-child {
  border-top: 1px solid var(--line);
}
 
.faq .faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--dur) var(--ease);
}
 
.faq .faq-btn:hover {
  color: var(--brand-ink);
}
 
.faq .faq-btn .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
 
.faq .faq-item.open .faq-btn {
  color: var(--brand-ink);
}
 
.faq .faq-item.open .faq-btn .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-soft);
  color: var(--brand-ink);
  border-color: transparent;
}
 
.faq .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.faq .faq-item.open .faq-body {
  max-height: 400px;
}
 
.faq .faq-body-inner {
  padding: 0 0 24px 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}
 

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1200px) {
  :root { --container: 1040px; }
}

@media (max-width: 992px) {
  nav.navbar { padding: 8px 0; }
  nav.navbar .navbar-collapse { background: var(--menu-bg); border: 1px solid var(--line); border-radius: var(--radius); margin-top: 10px; padding: 14px; box-shadow: var(--shadow-md); }
  nav.navbar .navbar-nav { gap: 4px; }
  nav.navbar .nav-item .nav-link { padding: 10px 4px; }
  nav.navbar .nav-item .nav-link::after { display: none; }
  nav.navbar .navbar-nav .book-appointment { margin-top: 8px; justify-content: center; }

  .slide-content { width: 92%; }
  .cart-display .summary-box { position: static; }
  .hidden { display: none; }
  .data-product-prev .product-desc { margin-top: 8px; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .carousel-container { min-height: 520px; }
  .carousel-navigation { left: 20px; bottom: 24px; }
  .carousel-arrows { display: none; }

  .testimonial { width: 300px; padding: 22px; }
  .gallery .image-gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-auto-rows: 240px; gap: 8px; }
  .gallery .image-gallery .img-box:nth-child(7n+1) { grid-column: span 1; grid-row: span 1; }

  .process .item-box .img-box {width: 100%; display: flex; justify-content:center}
  .process .item-box .img-box img {width: 100px; height: auto; }
  .about .text-box p { font-size: 1.15rem; }
  .data-breadcrumb { margin-top: 80px; }
  .hero-banner { margin-top: 56px; }
  .process .item-box .text-box p {
  font-size: .8rem;
}
}

@media (max-width: 576px) {
  :root { --section-y: 52px; }
  .slide-content { padding: 0 20px; }
  .slide-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .heading p { font-size: 0.95rem; }
  .testimonial { width: 84vw; }
  .product-display .store-item .img-box { height: 220px; }
  .cart-display .cart-item .img-box { height: 200px; }
  .data-product-prev .carousel-item { height: 360px; }
  .footer { text-align: left; }
}

/* ===================================================================
   THEME TOGGLE (nav) + DARK MODE
   =================================================================== */

/* --- Nav theme-toggle button (sun/moon) --- */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.theme-toggle i { font-size: 1rem; line-height: 1; }
.theme-toggle .icon-moon { display: inline-flex; }
.theme-toggle .icon-sun  { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun  { display: inline-flex; }
/* keep the toggle clear of the underline animation */
nav.navbar .navbar-nav .theme-toggle::after { display: none; }
.nav-tools { display: flex; align-items: center; gap: 14px; }

/* --- Smooth, flash-free theme switching --- */
html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
body, nav.navbar, .footer, .process .item-box, .pricing .price-data-box,
.location .item-box, .about .info-box .data-box, .testimonial, .store-item,
.cart-display .cart-item, .app-auth .form-box .wrapper, .success_box {
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

/* ----------------------------------------------------------------- */
/* DARK THEME TOKENS                                                  */
/* ----------------------------------------------------------------- */
html[data-theme="dark"] {
  --ink: #f3f3f5;
  --ink-2: #c7c7ce;
  --muted: #9a9aa3;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --surface: #0f0f12;
  --surface-2: #17171c;
  --surface-3: #202028;
  --brand: #f39235;
  --brand-ink: #f6a85a;          /* lighter orange = readable on dark */
  --brand-soft: rgba(243, 146, 53, 0.16);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.6);

  --footer-bg: #08080a;
  --cta-bg: var(--brand);         /* solid buttons become brand in dark */
  --cta-fg: #ffffff;
  --nav-bg: rgba(15, 15, 18, 0.72);
  --nav-bg-solid: rgba(15, 15, 18, 0.92);
  --menu-bg: rgba(20, 20, 25, 0.98);

  --white_bg: var(--surface);
  --light_bg: var(--surface-2);
  --body_bg: var(--surface);
  --bg_success: #0e2a1a;
  --bg_danger: #2c1413;
  --bg_warning: #2c2110;
}

/* Solid primary buttons: drive them off the CTA tokens so dark mode
   never produces white-on-white. (Light = ink bg, Dark = brand bg.) */
nav.navbar .navbar-nav .book-appointment,
.heading a,
.pricing .price-data-box a,
.cart-display .summary-box button,
.cart-display .summary-box .checkout-btn,
.data-product-prev .product-desc .add-to-cart,
.app-auth .form-box form button.formBtn,
.success_page .success_box .home_btn a,
.contact-box .form-box button[type="submit"] {
  background: var(--cta-bg); color: var(--cta-fg);
}
html[data-theme="dark"] nav.navbar .navbar-nav .book-appointment:hover,
html[data-theme="dark"] .heading a:hover,
html[data-theme="dark"] .pricing .price-data-box a:hover,
html[data-theme="dark"] .cart-display .summary-box button:hover,
html[data-theme="dark"] .cart-display .summary-box .checkout-btn:hover,
html[data-theme="dark"] .data-product-prev .product-desc .add-to-cart:hover,
html[data-theme="dark"] .app-auth .form-box form button.formBtn:hover,
html[data-theme="dark"] .success_page .success_box .home_btn a:hover,
html[data-theme="dark"] .contact-box .form-box button[type="submit"]:hover {
  background: #ffffff; color: var(--surface);
}

/* The "intelude" CTA sits on a permanently-dark image: keep its text dark
   on its white pill in both themes (var(--ink) would invert in dark). */
.intelude .text-box a { color: #0f0f10; }
.intelude .text-box a:hover { color: #fff; }
html[data-theme="dark"] .contact-box .text-box .box.socials a { background: var(--surface-3); }
html[data-theme="dark"] .contact-box .text-box .box.socials a:hover { background: var(--brand); }
html[data-theme="dark"] .footer .socials .btn:hover { background: var(--brand); border-color: var(--brand); }

/* Bootstrap surfaces that don't read our tokens automatically */
html[data-theme="dark"] .accordion-button::after { filter: invert(1) grayscale(1) brightness(1.6); }
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select { background-color: var(--surface-2); color: var(--ink); }
html[data-theme="dark"] .form-control::placeholder { color: var(--muted); }
html[data-theme="dark"] .toast.bg-success { background: #157f3c !important; }
html[data-theme="dark"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================================================
   TESTIMONIALS — restructured (avatar + rating, cleaner cards)
   =================================================================== */
.testimonial {
  width: 360px; gap: 16px; align-items: flex-start; justify-content: flex-start;
  padding: 28px;
}
.testimonial .stars { display: inline-flex; gap: 3px; color: var(--brand); font-size: 0.85rem; }
.testimonial p { margin: 0; color: var(--ink); font-size: 0.95rem; font-weight: 500; line-height: 1.7; }
.testimonial .person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .person .avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  background: var(--surface-3); flex: 0 0 auto;
}
.testimonial .person .avatar.initial {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-ink);
  font-weight: 700; font-size: 0.95rem;
}
.testimonial .person h4 { margin: 0; font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.testimonial .person span { font-size: 0.78rem; color: var(--muted); }

/* ===================================================================
   PRICING — restructured (highlighted "popular" tier, badge, ribbon)
   =================================================================== */
.pricing .price-data-box { position: relative; overflow: hidden; }
.pricing .price-data-box .badge-pop {
  position: absolute; top: 16px; right: 16px;
  background: var(--brand-soft); color: var(--brand-ink);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.pricing .price-data-box .price-head { display: flex; flex-direction: column; gap: 4px; }
.pricing .price-data-box .price-head .meta { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.pricing .price-data-box h4 .per { font-size: 0.85rem; font-weight: 500; color: var(--muted); font-family: "Inter", sans-serif; }
.pricing .price-data-box .divider { height: 1px; background: var(--line); margin: 4px 0; }

/* Featured tier — lifts and gets a brand frame */
.pricing .price-data-box.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.pricing .price-data-box.featured::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--brand);
}
.pricing .price-data-box.featured a { background: var(--brand); }
.pricing .price-data-box.featured a:hover { background: var(--cta-bg); color: var(--cta-fg); }
html[data-theme="dark"] .pricing .price-data-box.featured a:hover { background: #fff; color: var(--surface); }

@media (max-width: 768px) {
  .nav-tools { gap: 10px; }
  .pricing .price-data-box.featured { transform: none; }
}

/* ===================================================================
   AUTH EXTRAS (subtitle, multi-step indicator, status text)
   =================================================================== */
.app-auth .form-box .wrapper .auth-sub { color: var(--muted); font-size: 0.9rem; margin: 6px 0 0; }
.app-auth .form-box .wrapper .step-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); }

.step-indicator { display: flex; align-items: center; gap: 8px; justify-content: center; margin: -6px 0 4px; }
.step-indicator .step-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); border: 2px solid var(--line-strong); transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.step-indicator .step-dot.active { background: var(--brand); border-color: var(--brand); }
.step-indicator .step-bar { width: 46px; height: 2px; background: var(--line-strong); }

/* renewal lookup status text */
.app-auth .loading { color: var(--brand-ink); }
.app-auth .error   { color: var(--danger); }
.app-auth .success { color: var(--success); }