/* ============================================================
   CHARMELLE BEAUTY — GLOBAL DESIGN SYSTEM
   CI: Pearl White / Light Sand / Warm Taupe / Signature Gold / Espresso Brown
   Typography: Playfair Display (Headings) • Jost (Body) • Great Vibes (Accent)
   ============================================================ */

/* --- Google Fonts ---
   Fonts are loaded via <link> tags in each HTML <head> for parallel loading.
   The @import below is kept as a fallback comment for reference.
   @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
*/

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #FDFBF7;
  --bg-section: #F4EFE6;
  --accent-shape: #D5C3A1;
  --accent-gold: #C5A880;
  --accent-gold-hover: #B8975E;
  --accent-gold-light: rgba(197, 168, 128, 0.12);
  --text-primary: #4A3B32;
  --text-heading: #2D241E;
  --text-light: #8B7B6B;
  --text-white: #FDFBF7;
  --border-color: rgba(213, 195, 161, 0.35);
  --shadow-soft: 0 4px 24px rgba(45, 36, 30, 0.06);
  --shadow-card: 0 8px 32px rgba(45, 36, 30, 0.08);
  --shadow-elevated: 0 16px 48px rgba(45, 36, 30, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-accent: 'Great Vibes', cursive;

  /* Sizing */
  --container-max: 1240px;
  --container-narrow: 960px;
  --header-height: 80px;
  --announcement-height: 40px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --arch-radius: 500px 500px 20px 20px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

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

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  margin-bottom: 1em;
  font-weight: 300;
}

.text-accent {
  font-family: var(--font-accent);
  color: var(--accent-gold);
}

.text-italic {
  font-style: italic;
}

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

.text-gold {
  color: var(--accent-gold);
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section--sand {
  background-color: var(--bg-section);
}

.section--dark {
  background-color: var(--text-heading);
  color: var(--text-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 32px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* --- Split Section (2-col → 1-col on mobile) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .split-section .arch-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .split-section .btn {
    margin: 0 auto;
  }

  .split-section .golden-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .split-section .treatment-meta {
    justify-content: center;
  }
}

/* --- Decorative Elements --- */
.golden-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-shape));
  border: none;
  margin: 20px 0;
}

.golden-rule--center {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Arch SVG decoration */
.arch-decoration {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* --- Announcement Marquee Bar --- */
.announcement-bar {
  background: var(--text-heading);
  color: var(--text-white);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  overflow: clip;
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 100vw;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.logo,
.site-header .logo,
#site-header .logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  max-height: var(--header-height);
  max-width: 200px !important;
  overflow: hidden !important;
}

.logo-text {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  color: var(--accent-gold);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.logo-img,
.site-header .logo img,
.header-inner .logo img,
#site-header .logo img,
#site-header img.logo-img {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Cart icon in header */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  text-decoration: none;
  padding: 6px;
  border-radius: 50%;
  transition: all var(--transition-smooth);
}

.header-cart:hover {
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.08);
}

.header-cart svg {
  display: block;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
  border: 2px solid var(--bg-primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-smooth);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gold);
  color: var(--text-white);
}

.btn--primary:hover {
  background: var(--accent-gold-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}

.btn--outline:hover {
  background: var(--accent-gold);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 0;
  letter-spacing: 0.06em;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn--ghost:hover {
  color: var(--accent-gold);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--large {
  padding: 18px 44px;
  font-size: 0.9rem;
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn--white {
  background: var(--bg-primary);
  color: var(--text-heading);
}

.btn--white:hover {
  background: #fff;
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* --- Mobile Menu --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-heading);
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.6px);
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition-smooth), visibility 0s 0.4s;
    z-index: 1005;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--transition-smooth), visibility 0s 0s;
  }

  .main-nav a {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }

  .header-cta .btn {
    display: none;
  }

  .header-cta--mobile {
    display: block !important;
  }
}

/* --- Arch Image Treatment --- */
.arch-img {
  border-radius: var(--arch-radius);
  overflow: hidden;
  position: relative;
}

.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.arch-img:hover img {
  transform: scale(1.04);
}

.arch-img--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 36, 30, 0.4));
  border-radius: var(--arch-radius);
  pointer-events: none;
}

.hero-visual .arch-img--overlay::after {
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 60%, rgba(45, 36, 30, 0.25));
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero > .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex-shrink: 0;
}

.hero-content .subtitle {
  animation: fadeInUp 0.8s ease both;
}

.hero-content h1 {
  animation: fadeInUp 0.8s ease 0.15s both;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-content .btn {
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 580px;
  z-index: 1;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-visual .arch-img {
  height: 520px;
  box-shadow: var(--shadow-elevated);
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 100px 0 20px;
    text-align: center;
  }

  .hero > .container {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .hero-content .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px !important;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 55%;
    max-width: 220px;
    margin: 0 auto;
    z-index: 1;
    animation: none;
  }

  .hero-visual .arch-img {
    height: 230px;
    border-radius: 12px;
  }
}

/* --- Organic Flowing Shapes (Blob Decorations) --- */
.blob {
  position: absolute;
  border-radius: 60% 40% 50% 70% / 55% 65% 45% 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.blob--gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-shape));
}

.blob--sand {
  background: linear-gradient(135deg, var(--bg-section), var(--accent-shape));
}

.blob--cream {
  background: linear-gradient(135deg, #E8DCCB, #D5C3A1);
}

/* Subtle floating animation */
.blob--float-1 {
  animation: blobFloat1 18s ease-in-out infinite;
}

.blob--float-2 {
  animation: blobFloat2 22s ease-in-out infinite;
}

.blob--float-3 {
  animation: blobFloat3 15s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 60% 40% 50% 70% / 55% 65% 45% 50%;
  }
  33% {
    transform: translate(20px, -15px) rotate(5deg) scale(1.03);
    border-radius: 50% 60% 40% 70% / 45% 55% 65% 50%;
  }
  66% {
    transform: translate(-10px, 10px) rotate(-3deg) scale(0.98);
    border-radius: 70% 50% 60% 40% / 65% 45% 55% 50%;
  }
}

@keyframes blobFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
  }
  33% {
    transform: translate(-15px, 20px) rotate(-4deg) scale(1.05);
    border-radius: 70% 40% 60% 50% / 50% 70% 40% 60%;
  }
  66% {
    transform: translate(10px, -8px) rotate(6deg) scale(0.97);
    border-radius: 40% 60% 70% 50% / 70% 50% 60% 40%;
  }
}

@keyframes blobFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 70% 50% 55% 45% / 40% 60% 50% 70%;
  }
  50% {
    transform: translate(12px, -18px) rotate(8deg) scale(1.04);
    border-radius: 45% 70% 50% 55% / 60% 40% 70% 50%;
  }
}

/* Blob sizes */
.blob--lg {
  width: 400px;
  height: 400px;
}

.blob--md {
  width: 260px;
  height: 260px;
}

.blob--sm {
  width: 160px;
  height: 160px;
}

/* Hide blobs on very small screens to save performance */
@media (max-width: 768px) {
  .blob {
    animation: none !important;
    opacity: 0.05;
  }
  .blob--lg {
    width: 200px;
    height: 200px;
  }
  .blob--md {
    width: 120px;
    height: 120px;
  }
  .blob--sm {
    display: none;
  }
}

/* --- Category Teaser Cards --- */
.category-card {
  position: relative;
  border-radius: var(--arch-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45, 36, 30, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background var(--transition-smooth);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(45, 36, 30, 0.8) 100%);
}

.category-card-overlay h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.category-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.category-card-overlay .card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
}

.category-card:hover .card-arrow {
  background: var(--accent-gold);
  transform: rotate(-45deg);
}

/* --- Treatment List / Repeater --- */
.treatment-list {
  display: flex;
  flex-direction: column;
}

.treatment-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.treatment-item:first-child {
  border-top: 1px solid var(--border-color);
}

.treatment-item:hover {
  padding-left: 12px;
}

.treatment-info h4 {
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.treatment-item:hover .treatment-info h4 {
  color: var(--accent-gold);
}

.treatment-info p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 8px;
  max-width: 600px;
}

.treatment-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.treatment-meta .duration,
.treatment-meta .price {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.treatment-meta .price {
  color: var(--accent-gold);
  font-weight: 500;
}

.treatment-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.treatment-price-large {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  font-weight: 500;
  white-space: nowrap;
}

.treatment-duration {
  font-size: 0.82rem;
  color: var(--text-light);
}

.addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 6px;
}

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

  .treatment-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

/* --- Tab Navigation --- */
.tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}

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

.tab-btn.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  font-weight: 500;
}

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

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

/* --- FAQ Accordion --- */
.faq-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.faq-section h3 {
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-heading);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.faq-item.open .faq-icon {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* --- Team Cards --- */
.team-card {
  text-align: center;
  transition: transform var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card .arch-img {
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.team-card .team-role {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.team-card .team-qualifications {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.team-card .team-languages {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card .team-languages span {
  font-size: 1.4rem;
}

.lang-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-section);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-primary);
  font-weight: 400;
}

/* --- Testimonials --- */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  text-align: center;
}

.testimonial-card .stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.testimonial-card .author {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-shape);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

/* --- Voucher Section --- */
.voucher-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
}

.voucher-card h3 {
  margin-bottom: 8px;
}

.voucher-card p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.voucher-select {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-heading);
  background: var(--bg-section);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin-bottom: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A3B32' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color var(--transition-fast);
}

.voucher-select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.voucher-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 60px;
}

.voucher-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 16px;
}

.voucher-step h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.voucher-step p {
  font-size: 0.88rem;
  color: var(--text-light);
}

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

  .voucher-card {
    padding: 32px 24px;
  }
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--bg-primary);
  color: var(--text-heading);
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--text-heading);
  color: rgba(253, 251, 247, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  text-align: left;
}

.footer-brand .logo-text {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  color: rgba(253, 251, 247, 0.5);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.6);
  line-height: 1.6;
  max-width: 300px;
  margin-left: 0;
  margin-right: 0;
}

.footer-col {
  text-align: left;
}

.footer-col h5 {
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: rgba(253, 251, 247, 0.6);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  padding: 0;
}

.footer-social a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-white);
  padding-left: 0;
}

.footer-credit {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(253, 251, 247, 0.3);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.footer-credit a {
  color: rgba(253, 251, 247, 0.45);
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(253, 251, 247, 0.4);
}

.footer-bottom a {
  color: rgba(253, 251, 247, 0.4);
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* Studio Collage (blob-shaped images) */
.studio-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: start;
}

.studio-collage .blob-img {
  overflow: hidden;
  position: relative;
}

.studio-collage .blob-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-collage .blob-img:hover img {
  transform: scale(1.05);
}

.studio-collage .blob-img:nth-child(1) {
  border-radius: 60% 40% 50% 70% / 55% 65% 45% 50%;
  height: 320px;
  grid-row: span 2;
}

.studio-collage .blob-img:nth-child(2) {
  border-radius: 45% 55% 65% 35% / 50% 40% 60% 50%;
  height: 200px;
}

.studio-collage .blob-img:nth-child(3) {
  border-radius: 50% 50% 35% 65% / 60% 50% 50% 40%;
  height: 260px;
  grid-row: span 2;
}

.studio-collage .blob-img:nth-child(4) {
  border-radius: 55% 45% 50% 50% / 40% 60% 45% 55%;
  height: 200px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .studio-collage {
    grid-template-columns: 1fr 1fr;
  }

  .studio-collage .blob-img:nth-child(1) {
    grid-row: span 1;
    height: 220px;
  }

  .studio-collage .blob-img:nth-child(3) {
    grid-row: span 1;
    height: 220px;
  }

  .studio-collage .blob-img:nth-child(2),
  .studio-collage .blob-img:nth-child(4) {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin: 0 auto 16px;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* --- Lightbox / Modal --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 36, 30, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  overflow: auto;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  max-width: 520px;
  width: 90%;
  padding: 48px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-spring);
  text-align: center;
}

.lightbox-overlay.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .subtitle {
  animation: fadeInUp 0.6s ease both;
}

.page-hero h1 {
  animation: fadeInUp 0.6s ease 0.1s both;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Mobile Performance Optimizations --- */
@media (max-width: 768px) {
  /* Simplify hero animations on mobile */
  .hero-content .subtitle,
  .hero-content h1,
  .hero-content p,
  .hero-content .btn,
  .hero-visual {
    animation-duration: 0.4s !important;
    animation-delay: 0s !important;
  }

  /* Simpler reveal transitions on mobile */
  .reveal {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
  }

  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s !important;
  }

  /* Optimize painting */
  * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* No backdrop-filter on mobile - expensive */
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg-primary);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }

/* ============================================================
   PRODUCT CATALOG STYLES
   ============================================================ */
.product-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-gold);
  color: var(--text-white);
  border-color: var(--accent-gold);
}

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

.product-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-gold);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-heading);
  line-height: 1.3;
}

.product-card-body .product-size {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.product-card .btn--small {
  padding: 8px 16px;
  font-size: 0.72rem;
}

/* Sub-category cards for Med Beauty */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.subcategory-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.subcategory-card:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.subcategory-card .cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Brand header in product sections */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-header h3 {
  margin-bottom: 0;
}

.brand-header .product-count {
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--bg-section);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image .blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-gold);
  color: var(--text-white);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body .blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body .read-more {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body .read-more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.blog-card:hover .read-more::after {
  transform: translateX(4px);
}

/* Blog category pills */
.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER CREDIT
   ============================================================ */
.footer-credit {
  text-align: center;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(253, 251, 247, 0.08);
  font-size: 0.78rem;
  color: rgba(253, 251, 247, 0.4);
}

.footer-credit a {
  color: rgba(253, 251, 247, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--accent-gold);
}

/* ============================================================
   PHILOSOPHY SECTION ON TEAM PAGE
   ============================================================ */
.philosophy-inline {
  background: var(--bg-section);
  padding: var(--section-padding) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-grid .philosophy-text h2 {
  margin-bottom: 16px;
}

.philosophy-grid .philosophy-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.value-item .value-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.value-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — MOBILE-FIRST MEDIA QUERIES
   ============================================================ */

/* Tablet & below */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .hero-grid,
  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 40px;
    --header-height: 64px;
  }

  html {
    font-size: 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* Mobile header already handled by 1100px breakpoint */

  /* Hero mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid .arch-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  /* Category grid — stacked & centered */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    height: 280px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  /* Center all arch images on mobile */
  .arch-img {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Split/inline grids - center & stack */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  [style*="grid-template-columns: 1fr 1fr"] .arch-img {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Treatment sections */
  .treatment-item {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .treatment-action {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  /* Team grid */
  .team-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-detail-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-detail-image .arch-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .team-detail-card:nth-child(even) {
    direction: ltr;
  }

  .team-detail-info {
    text-align: center;
  }

  .team-detail-info .golden-rule {
    margin-left: auto;
    margin-right: auto;
  }

  /* Philosophy on team page — center */
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .philosophy-grid .arch-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .philosophy-text .golden-rule {
    margin-left: auto;
    margin-right: auto;
  }

  /* Studio gallery */
  .studio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .subcategory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-card-body h4 {
    font-size: 0.84rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  /* Tab nav horizontal scroll */
  .tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    min-height: 44px;
    flex-shrink: 0;
  }

  /* Product filter horizontal scroll */
  .product-filter-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .product-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    min-height: 44px;
  }

  /* Values row */
  .values-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer — additional mobile polish */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin: 0 auto 16px;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Touch targets */
  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .btn--small {
    min-height: 44px;
    padding: 10px 18px;
  }

  .faq-question {
    min-height: 50px;
    padding: 16px 0;
  }

  /* Lightbox */
  .lightbox-overlay {
    padding: 16px;
    align-items: flex-start;
    padding-top: 60px;
  }

  .lightbox-content {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px 24px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .lightbox-content h3 {
    font-size: 1.3rem;
  }

  .lightbox-content .btn--large {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 52px;
  }

  /* Voucher */
  .voucher-hero-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 24px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .team-preview-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
}

/* --- Print Styles --- */
@media print {
  .announcement-bar,
  .site-header,
  .menu-toggle,
  .lightbox-overlay,
  .blob,
  .cookie-consent,
  .skip-link,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #666;
  }
}

/* --- Skip Navigation Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--accent-gold);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--border-radius-sm, 8px);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--accent-gold-hover);
  outline-offset: 2px;
}

/* --- Custom Selection Color --- */
::selection {
  background: var(--accent-gold-light);
  color: var(--text-heading);
}

::-moz-selection {
  background: var(--accent-gold-light);
  color: var(--text-heading);
}

/* --- Cookie Consent Banner --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text-heading);
  color: var(--text-white);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent p {
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

.cookie-consent p a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent .btn-accept {
  padding: 10px 28px;
  background: var(--accent-gold);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-consent .btn-accept:hover {
  background: var(--accent-gold-hover);
}

.cookie-consent .btn-decline {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.cookie-consent .btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 36, 30, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 24px;
}
.newsletter-popup.is-visible {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.newsletter-popup.is-visible .popup-content {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-light);
  transition: all var(--transition-fast);
}
.popup-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.popup-content .subtitle {
  margin-bottom: 8px;
}
.popup-content h3 {
  margin-bottom: 8px;
}
.popup-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: var(--bg-section);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}
.popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-gold);
}
.popup-form input[type="email"]::placeholder {
  color: var(--text-light);
}
.popup-form .btn {
  width: 100%;
}
.popup-disclaimer {
  font-size: 0.72rem !important;
  color: var(--text-light) !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 480px) {
  .popup-content {
    padding: 36px 24px;
  }
}

/* ===== BLOG POST FULL VIEW ===== */
.blog-post-full {
  max-width: 720px;
  margin: 0 auto;
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 32px;
  transition: gap var(--transition-fast);
}
.blog-back-link:hover {
  gap: 10px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.blog-post-meta .blog-category-tag {
  position: static;
  display: inline-block;
}
.blog-post-meta .blog-date,
.blog-post-meta .blog-author {
  font-size: 0.82rem;
  color: var(--text-light);
}
.blog-post-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
.blog-post-hero {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}
.blog-post-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}
.blog-post-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}
.blog-post-body p {
  margin-bottom: 16px;
}
.blog-post-body ul,
.blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-body li {
  margin-bottom: 8px;
}
.blog-post-body strong {
  color: var(--text-primary);
}
.blog-post-body a {
  color: var(--accent-gold);
  text-decoration: underline;
}
.blog-post-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
}
.blog-post-cta p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-link .blog-card-body h3 {
  transition: color var(--transition-fast);
}
.blog-card-link:hover .blog-card-body h3 {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 1.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE — Shop Design System
   ═══════════════════════════════════════════════════════════════ */

/* --- Category Filter Bar --- */
.shop-categories {
  padding: 0 0 8px;
  background: var(--bg-secondary, #F7F3ED);
}
.category-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 0;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--bg-primary);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-color, #E8E0D4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.category-pill:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.15);
}
.category-pill.active {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}
.category-pill .cat-count {
  font-size: 0.72rem;
  opacity: 0.7;
  font-weight: 400;
}
.category-pill.active .cat-count {
  opacity: 0.85;
}

/* --- Shop Top Bar (results + sorting) --- */
.woocommerce .woocommerce-result-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.woocommerce .woocommerce-ordering select {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 16px;
  border: 1px solid var(--border-color, #E8E0D4);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-heading);
  cursor: pointer;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.woocommerce .woocommerce-ordering select:focus {
  border-color: var(--accent-gold);
  outline: none;
}

/* --- Product Grid --- */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  float: none !important;
  clear: both !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

/* --- Product Card --- */
.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74, 59, 50, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 59, 50, 0.12);
}

/* --- Product Image --- */
.woocommerce ul.products li.product > a {
  display: block;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product > a > img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05);
}

/* --- Product Title --- */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: var(--font-heading) !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  color: var(--text-heading) !important;
  padding: 20px 24px 6px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* --- Product Price --- */
.woocommerce ul.products li.product .price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
  padding: 0 24px;
  display: block;
  margin: 0;
}
.woocommerce ul.products li.product .price del {
  color: var(--text-light);
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.9rem;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--accent-gold);
}

/* --- Add to Cart Button --- */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_variable,
.woocommerce ul.products li.product .product_type_simple {
  display: block !important;
  margin: auto 24px 24px !important;
  padding: 13px 24px !important;
  background: var(--accent-gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  line-height: 1.4 !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--accent-gold-dark, #A07A58) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

/* --- Sale Badge --- */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark, #A07A58)) !important;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
  z-index: 2;
}

/* --- Star Rating --- */
.woocommerce ul.products li.product .star-rating {
  margin: 10px 24px 0;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* --- Pagination --- */
.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: var(--font-body);
  border-radius: 10px !important;
  padding: 10px 16px !important;
  border: 1px solid var(--border-color, #E8E0D4) !important;
  color: var(--text-heading);
  transition: all 0.3s ease;
  margin: 0 4px;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent-gold) !important;
  color: #fff !important;
  border-color: var(--accent-gold) !important;
}

/* ═══════════════════════════════════════
   Single Product Page
   ═══════════════════════════════════════ */
.woocommerce div.product {
  max-width: 1100px;
  margin: 0 auto;
}
.woocommerce div.product div.images {
  border-radius: 16px;
  overflow: hidden;
}
.woocommerce div.product div.images img {
  border-radius: 16px;
}
.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.woocommerce div.product .price {
  color: var(--accent-gold) !important;
  font-size: 1.5rem !important;
  font-weight: 600;
  font-family: var(--font-body);
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--text-light);
  line-height: 1.7;
  margin: 16px 0;
}
.woocommerce div.product form.cart {
  margin: 24px 0;
}
.woocommerce div.product form.cart .qty {
  font-family: var(--font-body);
  padding: 12px;
  border: 1px solid var(--border-color, #E8E0D4);
  border-radius: 10px;
  width: 80px;
  text-align: center;
}
.woocommerce div.product .single_add_to_cart_button {
  background: var(--accent-gold) !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  color: #fff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--accent-gold-dark, #A07A58) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.3);
}

/* --- Product Tabs --- */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 24px !important;
  border-bottom: 2px solid var(--border-color, #E8E0D4) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 12px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   Cart & Checkout
   ═══════════════════════════════════════ */
.woocommerce table.cart {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color, #E8E0D4);
}
.woocommerce table.cart th {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: var(--bg-secondary, #F7F3ED);
}
.woocommerce table.cart td {
  font-family: var(--font-body);
  vertical-align: middle;
}
.woocommerce table.cart img {
  border-radius: 10px;
}
.woocommerce .cart-collaterals .cart_totals {
  border-radius: 16px;
  border: 1px solid var(--border-color, #E8E0D4);
  padding: 24px;
  background: var(--bg-primary);
}
.woocommerce .button.checkout-button,
.woocommerce #place_order,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background: var(--accent-gold) !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff !important;
}
.woocommerce .button.checkout-button:hover,
.woocommerce #place_order:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--accent-gold-dark, #A07A58) !important;
  transform: translateY(-2px);
}

/* --- Breadcrumb --- */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--accent-gold);
  text-decoration: none;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Notices --- */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--accent-gold) !important;
  border-radius: 10px;
  font-family: var(--font-body);
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: var(--accent-gold) !important;
}
.woocommerce .woocommerce-message .button {
  background: var(--accent-gold) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   WooCommerce Responsive
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product > a > img {
    height: 240px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h2 {
    padding: 14px 16px 4px !important;
    font-size: 0.95rem !important;
  }
  .woocommerce ul.products li.product .price {
    padding: 0 16px;
  }
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .add_to_cart_button {
    margin: 12px 16px 16px !important;
  }
}
@media (max-width: 600px) {
  .category-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .category-pill {
    padding: 8px 18px;
    font-size: 0.82rem;
  }
}
@media (max-width: 540px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product > a > img {
    height: 280px !important;
  }
  .woocommerce div.product .product_title {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════
   Legal Pages (AGB, Datenschutz, Impressum)
   ═══════════════════════════════════════════════════ */
.container--narrow {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content {
  padding-bottom: 80px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.legal-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-decoration-color: rgba(197, 168, 128, 0.3);
  text-underline-offset: 3px;
  transition: all var(--transition-smooth);
}

.legal-content a:hover {
  color: var(--accent-gold-dark);
  text-decoration-color: var(--accent-gold);
}

.legal-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 2px solid var(--accent-gold);
}

.legal-footer p {
  color: var(--text-light);
  font-size: 0.95rem;
}
