/*
 Theme Name:   Jacob
 Description:  jacob
 Author:       Jakub Slechta
 Author URI:   http://jakubslechta.com
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  jacob
*/
@font-face {
    font-family: 'Argesta Text';
    src: url('fonts/ArgestaText-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Argesta Text';
    src: url('fonts/ArgestaText-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Argesta Hairline';
    src: url('fonts/ArgestaHairline-Regular.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Reset + Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E5BC;
    --gold-dark: #B8860B;
    --black-primary: #0A0A0A;
    --black-secondary: #141414;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #999999;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Argesta Text', serif;
    background: var(--black-primary);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased; /* crisper type */
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Argesta Hairline', 'Argesta Text', serif;
    font-weight: 200;
    letter-spacing: 0.02em;
}
strong, b { font-family: 'Argesta Text', serif; font-weight: 700; }

/* Navigation */
nav {
    position: fixed; inset: 0 0 auto 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    padding: 18px 24px;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(10,10,10,0.9);
    border-bottom-color: rgba(212,175,55,0.12);
    padding: 12px 24px;
}
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
    width: 42px; height: 42px; border: 1px solid var(--gold-primary); border-radius: 999px; display: grid; place-items: center; position: relative; overflow: hidden;
}
.logo-mark::before { content: ''; position: absolute; inset: 0; background: var(--gold-primary); transform: translateY(100%); transition: transform .3s ease; }
.logo:hover .logo-mark::before { transform: translateY(0); }
.logo-mark span { color: var(--gold-primary); z-index: 1; transition: color .3s ease; }
.logo:hover .logo-mark span { color: var(--black-primary); }
.logo-text { color: var(--white); font-family: 'Argesta Text', serif; font-weight: 700; letter-spacing: .06em; line-height: 0.95; font-size: 1.15rem; }

/* Nav links */
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: .9rem; letter-spacing: .08em; position: relative; transition: color .25s ease; }
.nav-links a::after { content:''; position: absolute; left: 50%; bottom: -8px; width: 0; height: 1px; background: var(--gold-primary); transform: translateX(-50%); transition: width .25s ease; }
.nav-links a:hover { color: var(--gold-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 18px; border: 1px solid var(--gold-primary); }
.nav-cta:hover { background: var(--gold-primary); color: var(--black-primary) !important; }

/* Mobile menu toggle */
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; background: transparent; color: #fff; place-items: center; }
.menu-toggle span { width: 20px; height: 2px; background: #fff; position: relative; display: block; }
.menu-toggle span::before, .menu-toggle span::after { content:''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Hero */
.hero { height: 100vh; position: relative; display: grid; place-items: center; overflow: hidden; }
.hero-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: 177.77vh; /* 16:9 aspect ratio */
    height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* NEW: fading slideshow */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35);
    opacity: 0; animation: heroFade 18s infinite;
    transform: scale(1.06);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
@keyframes heroFade {
    0%, 8% { opacity: 0; }
    10%, 30% { opacity: 1; }
    38%, 100% { opacity: 0; }
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.88) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; padding: 0 24px; }
.hero-content h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 200; line-height: 1.08; margin-bottom: 24px; opacity: 0; transform: translateY(24px); animation: fadeInUp 1.2s ease .1s forwards; }
.hero-content h1 span { background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); letter-spacing: .08em; margin-bottom: 36px; opacity: 0; transform: translateY(16px); animation: fadeInUp 1.2s ease .3s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; padding: 16px 40px; border: 1px solid var(--gold-primary); text-decoration: none; color: #fff; text-transform: uppercase; letter-spacing: .08em; position: relative; overflow: hidden; transition: all .35s ease; }
.hero-cta::before { content:''; position: absolute; inset: 0; left: -100%; background: var(--gold-primary); transition: left .35s ease; z-index: -1; }
.hero-cta:hover { color: var(--black-primary); }
.hero-cta:hover::before { left: 0; }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100%{ transform: translateX(-50%) translateY(0);} 40%{ transform: translateX(-50%) translateY(-10px);} 60%{ transform: translateX(-50%) translateY(-5px);} }
.scroll-indicator::after { content:''; display:block; width:1px; height:60px; background: linear-gradient(180deg, transparent, var(--gold-primary)); margin:0 auto; }

/* Sections */
.section { padding: 120px 24px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 200; margin-bottom: 14px; color: var(--gold-primary); }
.section-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); letter-spacing: .04em; }

/* Equipment */
.equipment-section { background: var(--black-secondary); }
.equipment-grid { display: grid; gap: 0px; }
.equipment-item { display: grid; padding-top: 90px; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.equipment-item:nth-child(even) { direction: rtl; }
.equipment-item:nth-child(even) > * { direction: ltr; }
.equipment-image-wrapper { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(255,255,255,0.08); }
.equipment-image { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: saturate(0.95); }
.equipment-item:hover .equipment-image { transform: scale(1.05); }
.equipment-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%); opacity: 0; transition: opacity .4s ease; }
.equipment-item:hover .equipment-image-overlay { opacity: 1; }
.equipment-details h3 { font-size: 2.2rem; margin-bottom: 14px; color: var(--gold-primary); font-weight: 200; }
.equipment-description { color: rgba(255,255,255,0.78); margin-bottom: 22px; line-height: 1.8; }
.equipment-specs { list-style: none; display: grid; gap: 12px; }
.equipment-specs li { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: .95rem; }
.equipment-specs strong { color: var(--gold-primary); font-weight: 700; text-transform: uppercase; font-size: .75rem; letter-spacing: .06em; }
.equipment-specs span { color: rgba(255,255,255,0.85); }

#equipment{
  position: relative;
  /* Optional if you want content to start to the right of the image */
  /* padding-left: 530px; */
}

#equipment::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 555px;
  background: url(img/poz.png) left top repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

#about {
  position: relative;
}

#about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 555px;
  background: url(img/poz.png) left top repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

#booking_page {
  position: relative;
}

#booking_page::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 555px;
  background: url(img/poz.png) left top repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

#equipment > *{
  position: relative;   /* keeps content above the ::before layer */
  z-index: 1;
}

#about > *{
  position: relative;   /* keeps content above the ::before layer */
  z-index: 1;
}

#booking_page > * {
  position: relative;   /* keeps content above the ::before layer */
  z-index: 1;
}

span.price-from {
    font-size: 1.2rem;
}

/* Services */
.services-section { background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%); position: relative; overflow: hidden; }
.services-section::before { content:''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 70%); animation: rotate 30s linear infinite; }
@keyframes rotate { from { transform: rotate(0);} to { transform: rotate(360deg);} }
.services-content { position: relative; z-index: 1; }
.services-description { max-width: 900px; margin: 0 auto 54px; font-size: 1.1rem; line-height: 1.9; color: rgba(255,255,255,0.82); text-align: center; }
.services-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; overflow: hidden; }
.service-image-wrapper { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.service-image { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-image-wrapper:hover .service-image { transform: scale(1.08); }
.service-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.service-image-wrapper:hover .service-overlay { opacity: 1; }
.service-overlay span { color: var(--gold-primary); font-size: 1.1rem; letter-spacing: .08em; text-transform: uppercase; }

/* Pricing */
.pricing-section { background: var(--black-primary); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-card { padding: 48px 36px; text-align: center; border: 1px solid rgba(255,255,255,0.1); position: relative; transition: all .35s ease; background: rgba(255,255,255,0.02); }
.pricing-card::before { content:''; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-primary); transform: scaleX(0); transition: transform .35s ease; }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card:hover { transform: translateY(-8px); border-color: var(--gold-primary); background: rgba(212,175,55,0.05); }
.pricing-card.featured { border-color: var(--gold-primary); transform: scale(1.03); }
.pricing-label { font-size: .8rem; color: var(--gold-primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.pricing-card h3 { font-size: 1.6rem; margin-bottom: 22px; font-weight: 200; }
.price { font-size: 2.6rem; color: var(--gold-primary); font-weight: 200; margin-bottom: 8px; }
.price-currency { font-size: 1.2rem; }
.price-info { color: rgba(255,255,255,0.66); font-size: .95rem; margin-bottom: 30px; line-height: 1.6; }
.pricing-cta { display: inline-block; padding: 13px 32px; border: 1px solid var(--gold-primary); color: var(--gold-primary); text-decoration: none; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; transition: all .3s ease; }
.pricing-cta:hover { background: var(--gold-primary); color: var(--black-primary); }

/* Benefits */
.benefits-section { background: var(--black-secondary); padding: 0; }
.benefits-container { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.benefits-image-wrapper { position: relative; overflow: hidden; }
.benefits-image { width: 100%; height: 100%; object-fit: cover; }
.benefits-content { padding: 90px 64px; flex-direction: column; justify-content: center; }
.benefits-content h2 { font-size: 2.6rem; margin-bottom: 22px; color: var(--gold-primary); font-weight: 200; }
.benefits-list { list-style: none; display: grid; gap: 20px; margin-bottom: 40px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.82); line-height: 1.6; }
.benefits-list li::before { content:'◆'; color: var(--gold-primary); font-size: .8rem; margin-top: 4px; }

/* About */
.about-section { background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-content h2 { font-size: 2.6rem; margin-bottom: 22px; color: var(--gold-primary); font-weight: 200; }
.about-text { color: rgba(255,255,255,0.82); line-height: 1.85; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.about-feature { text-align: center; }
.about-feature-number { font-size: 2rem; color: var(--gold-primary); font-weight: 700; margin-bottom: 6px; }
.about-feature-label { font-size: .86rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .06em; }
.about-image-wrapper { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.about-image { width: 100%; height: 100%; object-fit: cover; }

/* EXPERIENCE: text left, Slovakia map right */
.experience-section { background: var(--black-primary); }
.experience-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.experience-copy h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold-primary); margin-bottom: 10px; font-weight: 200; }
.experience-copy p { color: rgba(255,255,255,0.78); margin-bottom: 20px; }
.experience-points { list-style: none; margin: 18px 0 30px; display: grid; gap: 12px; }
.experience-points li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.82); }
.experience-points li::before { content:'▸'; color: var(--gold-primary); margin-top: 2px; }
.experience-media { position: relative; aspect-ratio: 4 / 3; border: 0px solid rgba(212,175,55,0.35); background: rgba(255,255,255,0.02); padding: 8px; }
.experience-media::after { content:''; position: absolute; inset: -1px; border: 0px solid rgba(212,175,55,0.15); pointer-events: none; filter: blur(0.5px); }
.experience-map { width: 100%; height: 100%; object-fit: contain; filter: grayscale(100%) contrast(1.05) brightness(0.9); }



/* Footer */
footer { background: var(--black-primary); padding: 72px 24px 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 1.6rem; margin-bottom: 14px; color: var(--gold-primary); font-weight: 700; font-family: 'Argesta Text', serif; }
.footer-brand p { color: rgba(255,255,255,0.64); line-height: 1.65; margin-bottom: 20px; }
.footer-column h4 { font-size: .9rem; letter-spacing: .1em; margin-bottom: 18px; color: var(--gold-primary); font-weight: 700; }
.footer-links { list-style: none; display: grid; gap: 12px; color: rgba(255,255,255,0.64); }
.footer-links a { color: rgba(255,255,255,0.64); text-decoration: none; font-size: .95rem; transition: color .25s ease; }
.footer-links a:hover { color: var(--gold-primary); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.copyright { color: rgba(255,255,255,0.45); font-size: .9rem; }
.social-links { display: flex; gap: 5px; }
.social-links a { width: 38px; height: 38px; border: 0px solid rgba(255,255,255,0.2); border-radius: 999px; display: grid; place-items: center; color: rgba(255,255,255,0.72); transition: all .25s ease; }
.social-links a:hover { border-color: var(--gold-primary); color: var(--gold-primary); transform: translateY(-2px); }
.social-links svg {
    fill: #9a9a9a;
    height: 30px;
}
/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 2px; background: linear-gradient(90deg, var(--gold-primary), var(--gold-light)); z-index: 1001; transition: width .1s ease; }

  /* Booking page scoped additions */
  .booking-hero { min-height: 46vh; display: grid; place-items: center; position: relative; overflow: hidden; }
  .booking-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 40%, rgba(212,175,55,0.08), transparent 70%); }
  .booking-hero .inner { position: relative; z-index: 1; text-align: center; padding: 64px 24px; }
  .booking-eyebrow { color: var(--gold-primary); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; margin-bottom: 10px; }
  .booking-title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 200; line-height: 1.1; margin-bottom: 12px; }
  .booking-subtitle { color: rgba(255,255,255,0.72); letter-spacing: .04em; }

  .breadcrumbs { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,0.65); }
  .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
  .breadcrumbs .sep { opacity: .4; }

  .booking-section { padding-top: 60px; }
  .booking-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; align-items: start; }

  .booking-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); padding: 28px; position: relative; }
  .booking-card::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 30%; background: linear-gradient(90deg, var(--gold-primary), transparent); }
  .booking-card h3 { font-weight: 200; color: var(--gold-primary); font-size: 1.4rem; margin-bottom: 16px; }
  .booking-card p.help { color: rgba(255,255,255,0.65); font-size: .95rem; margin-bottom: 16px; }

  .field { display: grid; gap: 10px; margin-bottom: 18px; }
  .field label { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .input, .select, .date-input { width: 100%; background: rgba(255,255,255,0.03); color: #fff; border: 1px solid rgba(255,255,255,0.12); padding: 14px 14px; outline: none; transition: border .25s ease, box-shadow .25s ease; }
  .input:focus, .select:focus, .date-input:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }

  .stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
  .step { border: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 10px 12px; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.7); position: relative; }
  .step.active { border-color: var(--gold-primary); color: var(--gold-primary); }

  /* Time slots */
  .slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .slot { position: relative; }
  .slot input { position: absolute; opacity: 0; pointer-events: none; }
  .slot label { display: block; text-align: center; border: 1px solid rgba(255,255,255,0.12); padding: 12px 10px; cursor: pointer; transition: all .2s ease; background: rgba(255,255,255,0.02); }
  .slot label:hover { border-color: var(--gold-primary); color: var(--gold-primary); transform: translateY(-1px); }
  .slot input:checked + label { background: rgba(212,175,55,0.08); border-color: var(--gold-primary); color: var(--gold-primary); box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25); }
  .slot input:disabled + label { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

  .duration-options { display: inline-grid; grid-auto-flow: column; gap: 8px; }
  .chip { position: relative; }
  .chip input { position: absolute; opacity: 0; }
  .chip label { display: inline-block; border: 1px solid rgba(255,255,255,0.12); padding: 8px 12px; cursor: pointer; font-size: .9rem; background: rgba(255,255,255,0.02); }
  .chip input:checked + label { background: rgba(212,175,55,0.08); border-color: var(--gold-primary); color: var(--gold-primary); }

  .add-ons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .addon { border: 1px solid rgba(255,255,255,0.12); padding: 12px; display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; background: rgba(255,255,255,0.02); }
  .addon small { color: rgba(255,255,255,0.6); }

  /* Summary */
  .booking-summary { position: sticky; top: 96px; }
  .summary-list { list-style: none; display: grid; gap: 10px; margin: 12px 0 18px; }
  .summary-row { display: flex; justify-content: space-between; color: rgba(255,255,255,0.82); }
  .summary-row.muted { color: rgba(255,255,255,0.6); }
  .summary-total { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1.05rem; }
  .btn-wide { width: 100%; display: inline-block; text-align: center; padding: 14px 16px; border: 1px solid var(--gold-primary); color: var(--gold-primary); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; transition: all .3s ease; }
  .btn-wide:hover { background: var(--gold-primary); color: var(--black-primary); }

  .booking-split { padding-top: 60px; }
  .split-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: start; }

  /* Left side */
  .info-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); }
  .info-media { position: relative; aspect-ratio: 4/3; border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
  .info-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); }
  .info-body { padding: 28px; }
  .info-eyebrow { color: var(--gold-primary); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: 8px; }
  .info-title { font-weight: 200; font-size: clamp(1.8rem, 3.8vw, 2.4rem); color: var(--gold-primary); margin-bottom: 10px; }
  .info-text { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 18px; }

  .info-specs { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
  .info-specs li { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .info-specs strong { color: var(--gold-primary); text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; }
  .info-specs span { color: rgba(255,255,255,0.9); }

  /* Right side (form) */
  .form-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); padding: 28px; position: sticky; top: 96px; }
  .form-card h3 { font-weight: 200; color: var(--gold-primary); font-size: 1.4rem; margin-bottom: 16px; }
  .form-help { color: rgba(255,255,255,0.65); font-size: .95rem; margin: -8px 0 16px; }
  .field { display: grid; gap: 10px; margin-bottom: 18px; }
  .field label { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .input, .date-input { width: 100%; background: rgba(255,255,255,0.03); color: #fff; border: 1px solid rgba(255,255,255,0.12); padding: 14px 14px; outline: none; transition: border .25s ease, box-shadow .25s ease; }
  .input:focus, .date-input:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }

  /* Duration chips */
  .duration-options { display: inline-grid; grid-auto-flow: column; gap: 8px; }
  .chip { position: relative; }
  .chip input { position: absolute; opacity: 0; }
  .chip label { display: inline-block; border: 1px solid rgba(255,255,255,0.12); padding: 8px 12px; cursor: pointer; font-size: .9rem; background: rgba(255,255,255,0.02); }
  .chip input:checked + label { background: rgba(212,175,55,0.08); border-color: var(--gold-primary); color: var(--gold-primary); }

  /* Time slots */
  .slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .slot { position: relative; }
  .slot input { position: absolute; opacity: 0; pointer-events: none; }
  .slot label { display: block; text-align: center; border: 1px solid rgba(255,255,255,0.12); padding: 12px 10px; cursor: pointer; transition: all .2s ease; background: rgba(255,255,255,0.02); }
  .slot label:hover { border-color: var(--gold-primary); color: var(--gold-primary); transform: translateY(-1px); }
  .slot input:checked + label { background: rgba(212,175,55,0.08); border-color: var(--gold-primary); color: var(--gold-primary); box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25); }
  .slot input:disabled + label { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

  .btn-wide { width: 100%; display: inline-block; text-align: center; padding: 14px 16px; border: 1px solid var(--gold-primary); color: var(--gold-primary); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; transition: all .3s ease; }
  .btn-wide:hover { background: var(--gold-primary); color: var(--black-primary); }

  .note { color: rgba(255,255,255,0.55); font-size: .9rem; }

  /* ===========================
     SHOP PAGE STYLES
     =========================== */

  /* Shop Hero */
  .shop-hero {
      min-height: 50vh;
      position: relative;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--black-secondary) 0%, var(--black-primary) 100%);
      overflow: hidden;
  }

  .shop-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 40%, rgba(212,175,55,0.06) 0%, transparent 60%);
  }

  .shop-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 100px 24px 60px;
      width: 100%;
  }

  .shop-eyebrow {
      color: var(--gold-primary);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .85rem;
      margin-bottom: 12px;
      font-weight: 700;
  }

  .shop-title {
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 200;
      line-height: 1.1;
      margin-bottom: 14px;
      background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .shop-subtitle {
      color: rgba(255,255,255,0.72);
      font-size: 1.1rem;
      letter-spacing: .04em;
      max-width: 600px;
      margin: 0 auto 24px;
  }

  /* Shop Section */
  .shop-section {
      padding-top: 80px;
      background: var(--black-primary);
  }

  /* Filter Bar */
  .shop-filters {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 54px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
      gap: 20px;
  }

  .filter-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
  }

  .filter-btn {
      padding: 10px 20px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.75);
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      font-family: 'Argesta Text', serif;
  }

  .filter-btn:hover {
      border-color: var(--gold-primary);
      color: var(--gold-primary);
      transform: translateY(-1px);
  }

  .filter-btn.active {
      background: rgba(212,175,55,0.1);
      border-color: var(--gold-primary);
      color: var(--gold-primary);
  }

  .filter-sort {
      position: relative;
  }

  .sort-select {
      padding: 10px 36px 10px 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.85);
      font-size: .9rem;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      transition: border-color .25s ease;
      outline: none;
  }

  .sort-select:focus {
      border-color: var(--gold-primary);
  }

  .sort-select option {
      background: var(--black-primary);
  }

  /* Products Grid */
  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 36px;
      margin-bottom: 72px;
  }

  /* Product Card */
  .product-card {
      position: relative;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      transition: all .35s ease;
      overflow: hidden;
  }

  .product-card::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-primary), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
  }

  .product-card:hover::before {
      transform: scaleX(1);
  }

  .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212,175,55,0.3);
      box-shadow: 0 12px 32px rgba(212,175,55,0.08);
  }

  .product-card.featured {
      border-color: rgba(212,175,55,0.25);
  }

  /* Product Badge */
  .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      padding: 6px 14px;
      background: var(--gold-primary);
      color: var(--black-primary);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
  }

  /* Product Image */
  .product-image {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
  }

  .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
      filter: brightness(0.95);
  }

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

  .product-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease;
  }

  .product-card:hover .product-overlay {
      opacity: 1;
  }

  .quick-view-btn {
      padding: 12px 28px;
      background: transparent;
      border: 1px solid var(--gold-primary);
      color: var(--gold-primary);
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      font-family: 'Argesta Text', serif;
  }

  .quick-view-btn:hover {
      background: var(--gold-primary);
      color: var(--black-primary);
  }

  /* Product Info */
  .product-info {
      padding: 24px;
  }

  .product-category {
      color: var(--gold-primary);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 8px;
      font-weight: 700;
  }

  .product-title {
      font-size: 1.25rem;
      font-weight: 200;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.3;
  }

  .product-description {
      color: rgba(255,255,255,0.65);
      font-size: .9rem;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  /* Product Footer */
  .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
  }

  .product-price {
      font-size: 1.6rem;
      color: var(--gold-primary);
      font-weight: 200;
  }

  .product-price .currency {
      font-size: 1rem;
      margin-right: 2px;
  }

  .price-original {
      text-decoration: line-through;
      color: rgba(255,255,255,0.4);
      font-size: 1.1rem;
      margin-right: 8px;
  }

  .add-to-cart-btn {
      padding: 10px 20px;
      background: transparent;
      border: 1px solid var(--gold-primary);
      color: var(--gold-primary);
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      font-family: 'Argesta Text', serif;
      font-weight: 700;
  }

  .add-to-cart-btn:hover {
      background: var(--gold-primary);
      color: var(--black-primary);
  }

  /* Pagination */
  .shop-pagination {
      text-align: center;
      margin: 72px 0;
  }

  .load-more-btn {
      padding: 16px 48px;
      background: transparent;
      border: 1px solid var(--gold-primary);
      color: var(--gold-primary);
      font-size: .9rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      font-family: 'Argesta Text', serif;
      position: relative;
      overflow: hidden;
  }

  .load-more-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-primary);
      transform: translateY(100%);
      transition: transform .35s ease;
  }

  .load-more-btn:hover::before {
      transform: translateY(0);
  }

  .load-more-btn:hover {
      color: var(--black-primary);
      position: relative;
  }

  .load-more-btn:hover {
      z-index: 1;
  }

  /* Newsletter Section */
  .shop-newsletter {
      background: var(--black-secondary);
      padding: 90px 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
  }

  .newsletter-content {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
  }

  .newsletter-content h2 {
      font-size: 2.4rem;
      font-weight: 200;
      color: var(--gold-primary);
      margin-bottom: 14px;
  }

  .newsletter-content p {
      color: rgba(255,255,255,0.72);
      margin-bottom: 32px;
      font-size: 1.05rem;
  }

  .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
  }

  .newsletter-input {
      flex: 1;
      padding: 14px 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
      font-size: .95rem;
      outline: none;
      transition: all .25s ease;
  }

  .newsletter-input::placeholder {
      color: rgba(255,255,255,0.45);
  }

  .newsletter-input:focus {
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  }

  .newsletter-submit {
      padding: 14px 32px;
      background: var(--gold-primary);
      border: 1px solid var(--gold-primary);
      color: var(--black-primary);
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
      font-family: 'Argesta Text', serif;
      font-weight: 700;
  }

  .newsletter-submit:hover {
      background: transparent;
      color: var(--gold-primary);
  }

  /* ===========================
   SINGLE PRODUCT PAGE STYLES
   =========================== */

/* Product Breadcrumb */
.product-breadcrumb {
    padding: 24px 24px 0;
    background: var(--black-primary);
}

.product-breadcrumb .container {
    max-width: 1400px;
}

/* Main Product Section */
.single-product-section {
    padding: 40px 24px 80px;
    background: var(--black-primary);
}

.single-product-section .container {
    max-width: 1400px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
/*
.gallery-main:hover img {
    transform: scale(1.05);
}
*/
.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--gold-primary);
    color: var(--black-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.gallery-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(10,10,10,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: none;
}

.gallery-zoom:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.1);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumb {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb:hover {
    border-color: var(--gold-primary);
}

.thumb:hover img {
    transform: scale(1.08);
}

.thumb.active {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.3);
}

/* Product Details */
.product-details {
    padding-top: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.meta-sku {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
}

.rating-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.product-name {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--white);
}

.product-tagline {
    color: var(--gold-primary);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-current {
    font-size: 2.4rem;
    font-weight: 200;
    color: var(--gold-primary);
}

.price-current .currency {
    font-size: 1.4rem;
    margin-right: 4px;
}

.price-original {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}

.price-save {
    padding: 4px 12px;
    background: rgba(212,175,55,0.15);
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(212,175,55,0.3);
}

.product-description {
    margin-bottom: 36px;
}

.product-description p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Variation Groups */
.variation-group {
    margin-bottom: 28px;
}

.variation-label {
    display: block;
    margin-bottom: 14px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.variation-label span {
    color: var(--gold-primary);
    text-transform: none;
    font-weight: 700;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.swatch-wrapper {
    position: relative;
}

.swatch-wrapper input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-swatch {
    display: block;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--gold-primary);
}

.swatch-wrapper input:checked + .color-swatch {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

.swatch-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    text-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.swatch-wrapper input:checked + .color-swatch .swatch-check {
    opacity: 1;
}

.color-swatch.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
}

.color-swatch.out-of-stock::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.5) 49%, rgba(255,255,255,0.5) 51%, transparent 52%);
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.size-option {
    position: relative;
}

.size-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-option label {
    display: block;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-option label:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
}

.size-option input:checked + label {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.1);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}

.size-name {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.size-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.size-price {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-top: 4px;
    font-weight: 700;
}

/* Personalization */
.personalization-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
}

input[type="checkbox"]:checked + .checkbox-label {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.1);
}

.option-price {
    margin-left: auto;
    color: var(--gold-primary);
    font-weight: 700;
}

.monogram-input {
    margin-top: 8px;
}

.text-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    outline: none;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* Purchase Actions */
.purchase-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
}

.qty-btn {
    width: 44px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: rgba(212,175,55,0.1);
}

.qty-input {
    width: 60px;
    height: 48px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    border-right: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    color: var(--black-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: transparent;
    color: var(--gold-primary);
}

.btn-add-to-cart.added {
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
}

.btn-price {
    font-size: 1.1rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.btn-wishlist,
.btn-share {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover,
.btn-share:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
}

/* Product Features */
.product-features {
    display: grid;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.feature svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* Product Info Tabs */
.product-info-section {
    padding: 80px 24px;
    background: var(--black-secondary);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.info-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 48px;
}

.tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--gold-primary);
}

.tab-btn.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.tab-column h3 {
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.6rem;
}

/* Care Instructions */
.care-content h3 {
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.care-item {
    text-align: center;
}

.care-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.care-item p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.care-note {
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-left: 3px solid var(--gold-primary);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Shipping & Returns */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.shipping-option {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.shipping-option h4 {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.shipping-option p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.shipping-price {
    color: var(--gold-primary);
    font-weight: 700;
}

.return-policy h4 {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.return-policy p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rating-overview {
    text-align: center;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--gold-primary);
    line-height: 1;
}

.rating-stars {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin: 8px 0;
}

.rating-count {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: grid;
    gap: 12px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 16px;
    align-items: center;
}

.rating-bar span:first-child {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-align: right;
}

.rating-bar span:last-child {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.bar {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gold-primary);
    border-radius: 4px;
}

.reviews-list {
    display: grid;
    gap: 24px;
}

.review {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 700;
    color: var(--white);
}

.review-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.review-rating {
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.review-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* Related Products */
.related-products-section {
    padding: 80px 24px;
    background: var(--black-primary);
}

.related-products-section .section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   PRODUCT ZOOM STYLES
   =========================== */

/* Magnifier Glass */
.magnifier {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    cursor: none;
    pointer-events: none;
    display: none;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.magnifier::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

/* Zoom Result Box */
.zoom-result {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--black-secondary);
    background-repeat: no-repeat;
    display: none;
    z-index: 99;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
/*
.gallery-main img {
    cursor: crosshair;
}

.gallery-main img:hover {
    cursor: none;
}
*/

/* Lightbox Modal */
.zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.zoom-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zoom-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zoom-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Close Button */
.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: rotate(90deg);
}

/* Navigation Arrows */
.zoom-prev,
.zoom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

.zoom-prev:hover,
.zoom-next:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Zoom Image Wrapper */
.zoom-image-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
}

.zoom-image-wrapper.zooming {
    cursor: zoom-out;
}

.zoom-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.zoom-image.zoomed {
    transform: scale(2);
    cursor: move;
}

/* Thumbnail Strip in Modal */
.zoom-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    max-width: 90vw;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) transparent;
}

.zoom-thumbs::-webkit-scrollbar {
    height: 6px;
}

.zoom-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.zoom-thumbs::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

.zoom-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.zoom-thumb:hover {
    opacity: 1;
    border-color: var(--gold-primary);
}

.zoom-thumb.active {
    opacity: 1;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Loading state for high-res images */
.zoom-image-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Zoom hint tooltip
.gallery-main::after {
    content: 'Double-click or hover to zoom';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.gallery-main:hover::after {
    opacity: 1;
}
*/

/* Smooth transitions */
.gallery-main,
.zoom-modal,
.magnifier,
.zoom-result {
    will-change: transform, opacity;
}

/* Performance optimization */
.zoom-modal-overlay,
.zoom-image-wrapper {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.services-content .hero-cta {
    margin: 0 auto;
    display: table;
}

.nav-links .language-switcher-nav a:hover::after {
  width: 0 !important;
}

.nav-links a.nav-cta:hover::after {
  width: 0 !important;
}

.lwg_singleproduct {
    padding-top: 80px;
}

.lwg_booking {
    padding-top: 80px;
}

.nav-container .logo img {
    height: 26px;
    width: auto;
    z-index: 99999;
}

/* bf */

/* Touch device adjustments
@media (hover: none) {
    .magnifier,
    .zoom-result {
        display: none !important;
    }

    .gallery-main img {
        cursor: default;
    }
    .gallery-main::after {
        content: 'Tap image to zoom';
    }
}*/

@media (max-width: 1400px) {
    .zoom-result {
        right: auto;
        left: -420px;
    }
}

  /* Responsive adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 28px;
    }
    .product-layout {
        gap: 60px;
    }

    .tab-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zoom-result {
        display: none !important;
    }
}


  @media (max-width: 1024px) {
    .booking-grid { grid-template-columns: 1fr; }
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
    .add-ons { grid-template-columns: 1fr; }
    .booking-summary { position: static; }
  }

@media (max-width: 920px) {
  .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    .size-options {
        grid-template-columns: 1fr;
    }

    .care-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shipping-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rating-overview {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}



  @media (max-width: 860px) {
      .menu-toggle { display: grid; }
      .nav-links { display: none; }
      .nav-links.active { display: flex; position: absolute; top: 64px; right: 24px; flex-direction: column; gap: 16px; background: rgba(10,10,10,0.96); padding: 16px; border: 1px solid rgba(255,255,255,0.1); }
      .services-gallery { grid-template-columns: 1fr; }
      .benefits-container { grid-template-columns: 1fr; }
      .shop-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .filter-group {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-submit {
        width: 100%;
    }
  }

  /* Mobile Modal Adjustments */
@media (max-width: 768px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  #booking_page::before {
    width: 200px;
  }
  #about::before{
    width: 200px;
  }
  #equipment::before{
    width: 200px;
  }
  .booking-split {
    padding-top: 30px;
}

.section {
    padding: 20px 5px;
  }
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
  .equipment-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.about-container {
    grid-template-columns: 1fr;
    gap: 20px;
}
.experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
    .zoom-modal-content {
        padding: 40px 10px;
    }

    .hero-video-container iframe {
        width: 300vw;
        height: 100vh;
    }

    .zoom-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .zoom-prev,
    .zoom-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .zoom-prev {
        left: 10px;
    }

    .zoom-next {
        right: 10px;
    }

    .zoom-image {
        max-height: 60vh;
    }

    .zoom-thumbs {
        gap: 8px;
        padding: 12px;
    }

    .zoom-thumb {
        width: 60px;
        height: 60px;
    }
}

  @media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-hero-content {
        padding: 80px 20px 40px;
    }

    .shop-title {
        font-size: 2.2rem;
    }

    .filter-btn {
        font-size: .8rem;
        padding: 8px 14px;
    }
    .tab-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 50%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .tab-grid,
    .care-grid {
        grid-template-columns: 1fr;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .purchase-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
}
