/* ========================================
   ORÉESKIN — Main Stylesheet
   ======================================== */

:root {
  --primary: #583E30;
  --primary-light: #6d5245;
  --accent: #AE8A79;
  --accent-dark: #9a7565;
  --accent-light: rgba(174,138,121,0.1);
  --nav-bg: #4b4b51;
  --nav-text: #f8e4cc;
  --white: #ffffff;
  --off-white: #F9F7F4;
  --light-bg: #f0ebe5;
  --text: #583E30;
  --text-light: #8a7b72;
  --border: #e0dbd6;
  --grey-100: #f5f5f5;
  --grey-200: #e5e5e5;
  --grey-500: #6b6b6b;
  --shadow: 0 4px 30px rgba(88,62,48,0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(174,138,121,0.3);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
  background: var(--primary);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-sm:hover {
  background: var(--accent);
}

.btn-nav {
  background: var(--nav-text);
  color: var(--nav-bg);
  padding: 10px 24px;
  font-size: 11px;
  border-radius: 8px;
  font-weight: 700;
}
.btn-nav:hover {
  background: var(--white);
  color: var(--nav-bg);
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
  background: var(--nav-bg);
  color: var(--nav-text);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--nav-text);
}
.top-bar a:hover { color: var(--white); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar .separator { opacity: 0.3; }

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: none;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(75,75,81,0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nav-text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--nav-text);
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  min-width: 200px;
  padding: 16px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  margin-top: 20px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: none;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  color: var(--white);
  background: var(--accent);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart {
  position: relative;
  color: var(--white);
}
.nav-cart:hover { color: rgba(255,255,255,0.7); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--nav-text);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,62,48,0.7) 0%, rgba(88,62,48,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 20px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

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

/* ========================================
   SECTION HEADERS
   ======================================== */

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   SERVICE CATEGORIES
   ======================================== */

.services-categories {
  padding: 120px 0;
}

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

.category-card {
  position: relative;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.category-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(88,62,48,0.8) 0%, rgba(88,62,48,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}

.category-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}

.category-overlay p {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.category-arrow {
  font-size: 20px;
  margin-top: 12px;
  transform: translateX(-10px);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */

.about-preview {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 85%;
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  box-shadow: var(--shadow);
}

.about-img-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-stats-badge {
  position: absolute;
  top: 30px;
  right: 40px;
  background: var(--accent);
  color: var(--white);
  padding: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text .section-label { text-align: left; }
.about-text .section-title {
  text-align: left;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 14px;
}

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--accent);
}

.about-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.about-feature span {
  font-size: 13px;
  color: var(--text-light);
}

/* ========================================
   STATS BAND
   ======================================== */

.stats-band {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  display: block;
}

.stat-txt {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 8px;
  display: block;
}

/* ========================================
   WHY US
   ======================================== */

.why-us {
  padding: 120px 0;
}

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

.why-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.why-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   PRODUCTS
   ======================================== */

.featured-products {
  padding: 120px 0;
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  transition: var(--transition);
}

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

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 20px;
}

.product-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.product-info h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin: 6px 0 8px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* ========================================
   TESTIMONIALS — Planity Style
   ======================================== */

.testimonials {
  padding: 120px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nav-bg);
  color: var(--nav-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.review-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.review-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-service {
  display: inline-block;
  background: var(--off-white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.review-response {
  margin-top: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.review-response-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-response-header strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.review-response-header span {
  font-size: 11px;
  color: var(--text-light);
}

.review-response p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* Legacy slider (keep for compatibility) */
.testimonials-slider { display: none; }
.testimonials-dots { display: none; }

/* ========================================
   INSTAGRAM FEED
   ======================================== */

.instagram-feed {
  padding: 120px 0;
  background: var(--off-white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

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

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

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

.booking-cta {
  padding: 100px 0;
  background: var(--primary);
  text-align: center;
}

.booking-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.booking-content p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.booking-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover {
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-col ul li {
  font-size: 13px;
}

.footer-hours {
  margin-top: 24px;
}

.footer-hours h4 {
  margin-bottom: 8px;
}

.footer-hours p {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
}

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

.footer-legal a {
  color: rgba(255,255,255,0.4);
}
.footer-legal a:hover {
  color: var(--accent);
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */

.page-header {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,62,48,0.75), rgba(88,62,48,0.5));
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-header-content .section-label {
  color: var(--accent);
}

.page-header-content h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-top: 8px;
}

.breadcrumb {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 1px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 8px; }

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-section {
  padding: 100px 0;
}

.services-section:nth-child(even) {
  background: var(--off-white);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.service-item-left h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
}

.service-item-left p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.service-item-right {
  text-align: right;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.service-duration {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ========================================
   BOUTIQUE PAGE
   ======================================== */

.shop-section {
  padding: 80px 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.shop-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text);
}

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

.shop-sort select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 12px;
  background: var(--white);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.shop-product {
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.shop-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-bg);
}

.shop-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-product:hover .shop-product-img img {
  transform: scale(1.05);
}

.shop-product-info {
  padding: 20px;
}

.shop-product-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.shop-product-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin: 6px 0;
}

.shop-product-info p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.shop-product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-map {
  margin-top: 40px;
  height: 300px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
  padding: 100px 0;
}

.about-section:nth-child(even) {
  background: var(--off-white);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-full-grid.reverse { direction: rtl; }
.about-full-grid.reverse > * { direction: ltr; }

.about-full-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

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

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

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 16px;
  filter: grayscale(20%);
  transition: var(--transition);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
}

.team-card span {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Brands */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  opacity: 0.5;
}

.brands-grid span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
}

/* ========================================
   ANIMATIONS (scroll reveal)
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   SOINS CATALOG PAGE
   ======================================== */

/* Category Nav */
.soins-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 80px;
  z-index: 99;
}

.soins-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.soins-nav-link {
  display: block;
  padding: 18px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.soins-nav-link:hover,
.soins-nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

/* Category Section */
.soin-category {
  padding: 100px 0 80px;
  scroll-margin-top: 140px;
}

.soin-category:nth-child(even) {
  background: var(--off-white);
}

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

.soin-category-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.soin-category-header p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Cards Grid */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.soin-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(88,62,48,0.12);
  border-color: var(--accent);
}

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

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

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

.soin-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.soin-card-badge.free {
  background: #4a9d5a;
}

.soin-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.soin-card-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.soin-card-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.soin-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.soin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.soin-card-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.soin-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.soin-card-price.free {
  color: #4a9d5a;
  font-size: 18px;
}

.soin-card-actions {
  display: flex;
  gap: 8px;
}

.btn-reserver {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.btn-reserver:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-offrir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.btn-offrir:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Diagnostic Banner */
.diagnostic-banner {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 60px 0;
  text-align: center;
}

.diagnostic-banner h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diagnostic-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.diagnostic-banner .btn {
  background: var(--nav-text);
  color: var(--nav-bg);
  font-weight: 700;
}

.diagnostic-banner .btn:hover {
  background: var(--white);
}
