/*
Theme Name: Shine by Kim & Co.
Theme URI: https://shinebykimco.com
Author: Kim & Co.
Description: Luxury hair salon theme — dark gold aesthetic, fully customizable.
Version: 1.1.7
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shine-kimco
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c472;
  --gold-dark:   #a07830;
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --bg-alt:      #141414;
  --white:       #ffffff;
  --off-white:   #e8e0d0;
  --gray:        #888888;
  --gray-light:  #aaaaaa;
  --border:      #2a2a2a;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-script:  'Dancing Script', cursive;
  --f-body:    'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Montserrat', Arial, sans-serif;

  --ease: 0.3s ease;
  --ease-slow: 0.6s ease;
  --header-h: 72px;        /* used for scroll offset */
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-light); }
/* *** KEY FIX: constrain ALL images by default *** */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.label {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt  { background: var(--bg-alt); }
.section-card { background: var(--bg-card); }
.text-center  { text-align: center; }

.gold-line {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 14px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--gold);      color: var(--bg); }
.btn-primary:hover  { background: var(--gold-light); color: var(--bg); border-color: var(--gold-light); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--bg); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--bg); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 400;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background var(--ease);
}
#site-header.scrolled { background: rgba(10,10,10,0.99); }

/* Inner container — constrains content to max-width */
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
}

/* --- Branding --- */
.site-branding {
  flex-shrink: 0;
  line-height: 1;
}
/* *** Logo size — controlled via CSS variable set by Customizer *** */
:root { --logo-h: 56px; }
.site-branding img,
.site-branding .custom-logo {
  max-height: var(--logo-h) !important;
  width: auto !important;
  max-width: 240px !important;
  display: block;
}
.site-branding .site-title {
  font-family: var(--f-script);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.site-branding .tagline {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.site-branding a { color: inherit; }

/* --- Desktop nav --- */
.desktop-nav { display: flex; align-items: center; }
.desktop-nav ul { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease);
  white-space: nowrap;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.desktop-nav a:hover,
.desktop-nav .current-menu-item > a { color: var(--gold); }
.desktop-nav a:hover::after { width: 100%; }

/* --- Header right area --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-book-btn { padding: 9px 20px; font-size: 0.68rem; }

/* --- Hamburger (mobile only — hidden on desktop) --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

/* ============================================================
   MOBILE NAV OVERLAY
   Completely separate from header. Uses opacity/pointer-events
   so it never interferes with page flow.
   ============================================================ */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;               /* above header (400) */
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
#mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
/* Close X */
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close::before,
.mobile-nav-close::after {
  content: '';
  position: absolute;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after  { transform: rotate(-45deg); }

/* Nav links */
#mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
#mobile-nav li { width: 100%; }
#mobile-nav a {
  display: block;
  padding: 18px 24px;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--off-white);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--ease);
}
#mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   ADMIN BAR OFFSET — WordPress admin bar pushes things down
   ============================================================ */
.admin-bar #site-header { top: 32px; }
.admin-bar #mobile-nav  { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
  .admin-bar #mobile-nav  { top: 46px; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.85) 40%,
    rgba(10,10,10,0.30) 70%,
    rgba(10,10,10,0.10) 100%);
}
/* Constrain hero content inside a max-width wrapper */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 48px;
}
.hero-content {
  max-width: 600px;
}
.hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero-h1 {
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.1;
  display: block;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease-slow);
}
.service-card:hover { background: #181818; }
.service-card:hover::after { width: 100%; }
.service-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.service-icon svg { width: 100%; height: 100%; }
.service-name  { font-size: 1.2rem; margin-bottom: 4px; }
.service-price { font-family: var(--f-ui); font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.service-desc  { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.service-link  { font-family: var(--f-ui); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.service-link::after { content: ' →'; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 48px 0 34px;
}
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  position: relative;
}
.gallery-pair::after {
  content: '→';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
  background: var(--bg-alt);
  padding: 4px 6px;
  line-height: 1;
  pointer-events: none;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #141414, #0e0e0e);
}
.gallery-label {
  text-align: center;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#shop { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  margin: 48px 0 34px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 26px 18px 22px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}
.product-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.product-img-wrap {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-img-wrap img { max-height: 130px; width: auto; }
.product-name  { font-family: var(--f-ui); font-size: 0.76rem; font-weight: 600; color: var(--off-white); margin-bottom: 6px; }
.product-price { font-family: var(--f-display); font-size: 1.05rem; color: var(--gold); margin-bottom: 14px; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
#trust-badges {
  padding: 36px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-item { display: flex; align-items: center; gap: 14px; }
.badge-icon { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.badge-icon svg { width: 100%; height: 100%; }
.badge-title    { font-family: var(--f-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 2px; }
.badge-sub      { font-size: 0.8rem; color: var(--gray); }

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--bg-alt); }
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  width: 220px;       /* fixed width so cards are uniform */
  flex-shrink: 0;
}
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  margin-bottom: 14px;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
  filter: grayscale(15%);
}
.team-card:hover .team-photo img { transform: scale(1.04); filter: none; }
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 50%);
  pointer-events: none;
}
/* No-photo placeholder */
.team-photo.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
}
.team-photo-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.team-photo-icon svg { width: 28px; height: 28px; color: var(--gold); opacity: 0.5; }
.team-name { font-size: 1.1rem; margin-bottom: 3px; }
.team-role { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 90px 24px;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.testimonial-quote { font-size: 5rem; color: var(--gold); opacity: 0.35; line-height: 0.8; display: block; margin-bottom: -10px; }
.testimonial-text  {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
  color: var(--off-white);
}
.testimonial-author { font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* Slider fade transition */
#t-slider {
  position: relative;
  min-height: 280px;          /* prevent layout jump during transition */
}
.t-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease; /* smooth 0.8s fade */
}
.t-slide.t-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;          /* active slide takes up space */
}

.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.t-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease);
}
.t-dots button.active { background: var(--gold); }

/* ============================================================
   CTA
   ============================================================ */
#cta-band {
  padding: 70px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 6px; }
.cta-text p  { color: var(--gray); font-size: 0.95rem; }
.cta-btns    { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.footer-logo .site-title { font-family: var(--f-script); font-size: 1.8rem; color: var(--white); }
.footer-logo .tagline    { font-family: var(--f-ui); font-size: 0.5rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
/* Cap footer custom logo too */
.footer-logo img, .footer-logo .custom-logo { max-height: 50px !important; width: auto !important; }

.footer-col-title { font-family: var(--f-ui); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--off-white); margin-bottom: 18px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { font-size: 0.88rem; color: var(--gray); transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-info p { font-size: 0.82rem; color: var(--gray); margin-bottom: 5px; }
.footer-contact-info a { color: var(--gray); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-hours li .day { color: var(--off-white); }

.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  transition: border-color var(--ease), color var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 0.74rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
/* ── Ensure nothing except nav links renders inside the mobile overlay ── */
#mobile-nav img,
#mobile-nav .custom-logo,
#mobile-nav .site-branding,
#mobile-nav .wp-block-site-logo { display: none !important; }

/* ============================================================
   TYPOGRAPHY — boosted sizes for readability
   ============================================================ */
html { font-size: 17px; }   /* base up from 16px */

body {
  font-size: 1.1rem;
  line-height: 1.8;
}

h1 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; }

/* Section labels */
.label {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
}

/* Buttons — slightly larger */
.btn {
  padding: 16px 36px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

/* Mobile nav link text — bigger and bolder */
#mobile-nav a {
  font-size: 1.9rem;
  padding: 20px 24px;
}

/* Desktop nav links */
.desktop-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* Footer text */
.footer-col-title { font-size: 0.74rem; }
.footer-links a   { font-size: 1rem; }
.footer-contact-info p { font-size: 0.95rem; }
.footer-hours li  { font-size: 0.9rem; }
.footer-bottom    { font-size: 0.82rem; }

/* Service cards */
.service-name  { font-size: 1.35rem; }
.service-price { font-size: 1.1rem; }
.service-desc  { font-size: 1rem; }
.service-link  { font-size: 0.74rem; }

/* Team */
.team-name { font-size: 1.2rem; }
.team-role { font-size: 0.72rem; }

/* Testimonial */
.testimonial-text { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* Trust badges */
.badge-title { font-size: 0.82rem; }
.badge-sub   { font-size: 0.9rem; }

/* Product cards */
.product-name  { font-size: 0.9rem; }
.product-price { font-size: 1.15rem; }

/* Hero */
.hero-eyebrow { font-size: 0.76rem; }
.hero-desc    { font-size: 1.1rem; line-height: 1.9; }


.product-price .woocommerce-Price-amount,
.product-price .amount,
.product-price bdi,
.product-price span { color: var(--gold); font-family: var(--f-display); font-size: 1.05rem; }
.product-price del { opacity: 0.5; margin-right: 4px; font-size: 0.85rem; }
.product-price ins { text-decoration: none; }
#shop .woocommerce-message,
#shop .woocommerce-error,
#shop .woocommerce-info { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#shine-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#shine-lightbox.open { display: flex; }
#shine-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }

/* ============================================================
   LARGE DESKTOP (≥ 1400px) — premium wide-screen refinements
   ============================================================ */
@media (min-width: 1400px) {
  :root { --header-h: 80px; }
  .header-inner  { padding: 0 64px; }
  .hero-container { padding: 100px 64px; }
  .hero-content  { max-width: 680px; }
  .container     { padding: 0 64px; }
  .desktop-nav ul { gap: 36px; }
  .desktop-nav a  { font-size: 0.72rem; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .header-inner { padding: 0 32px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .badges-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-container { padding: 60px 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --header-h: 60px; }

  .header-inner { padding: 0 20px; }

  /* Hide desktop nav & book button */
  .desktop-nav      { display: none !important; }
  .header-book-btn  { display: none !important; }

  /* Show hamburger */
  .nav-hamburger { display: flex !important; }

  /* Hero */
  .hero-container { padding: 50px 24px; }
  .hero-content   { max-width: 100%; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Team — 2 per row on mobile */
  .team-card { width: calc(50% - 14px); }

  /* Badges */
  .badges-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { min-width: 0; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-btns     { flex-direction: column; }
  .team-grid     { gap: 16px; }
  .team-card     { width: calc(50% - 8px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
