/* ═══════════════════════════════════════════════
   MEZECIM HOME — TEMA SECTION STYLES
   Only home page sections (no header/footer/topbar/cart)
   ═══════════════════════════════════════════════ */

/* --- TEMA CSS VARIABLES --- */
:root {
  --c-primary: #D94814;
  --c-primary-dark: #BA3D10;
  --c-primary-light: #F05E2A;
  --c-primary-glow: rgba(217, 72, 20, 0.25);

  --c-olive: #6B705C;
  --c-olive-light: #A5A58D;
  --c-olive-dark: #4A4D3F;
  --c-olive-glow: rgba(107, 112, 92, 0.2);

  --c-bg: #FDFBF7;
  --c-bg-alt: #F4F1EA;
  --c-surface: #FFFFFF;

  --c-text: #1D1A16;
  --c-text-muted: #6B665E;
  --c-text-light: #9C968D;

  --c-border: rgba(0, 0, 0, 0.05);
  --c-border-hover: rgba(0, 0, 0, 0.1);

  --shadow-sm: 0 4px 12px rgba(29, 26, 22, 0.03);
  --shadow-md: 0 8px 24px rgba(29, 26, 22, 0.06);
  --shadow-lg: 0 20px 48px rgba(29, 26, 22, 0.08);
  --shadow-xl: 0 32px 64px rgba(217, 72, 20, 0.08);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.5s;

  --header-h: 100px;
  --container-tema: 1240px;
}

/* --- TEMA TYPOGRAPHY (scoped) --- */
.tema-home h1, .tema-home h2, .tema-home h3, .tema-home h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--c-text);
}
.tema-home h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
.tema-home h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; }
.tema-home h3 { font-size: 1.4rem; font-weight: 600; }
.tema-home h4 { font-size: 1.1rem; font-weight: 600; }

/* --- TEMA CONTAINER --- */
.tema-container { max-width: var(--container-tema); margin: 0 auto; padding: 0 32px; }

/* --- SECTION HEADERS --- */
.tema-home .section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.tema-home .section-tag,
.tema-story .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-olive);
  margin-bottom: 20px; padding: 6px 16px;
  background: var(--c-olive-glow); border-radius: var(--r-full);
}
.tema-home .section-title,
.tema-story .section-title { margin-bottom: 16px; }
.tema-home .section-desc,
.tema-story .section-desc { color: var(--c-text-muted); font-size: 1.15rem; line-height: 1.7; font-weight: 400; }

/* --- TEMA SECTION HEADER (standalone, no .tema-home wrapper needed) --- */
.tema-section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.tema-section-header .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-olive);
  margin-bottom: 20px; padding: 6px 16px;
  background: var(--c-olive-glow); border-radius: var(--r-full);
}
.tema-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; color: var(--c-text); }
.tema-section-desc { color: var(--c-text-muted); font-size: 1.15rem; line-height: 1.7; font-weight: 400; }

/* --- TEMA PAGE HEADER --- */
.tema-page-header {
  padding: 120px 0 60px;
  background: var(--c-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tema-page-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--c-olive-glow) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.tema-page-header .tema-container { position: relative; z-index: 1; }
.tema-page-header-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--c-olive);
  margin-bottom: 16px; padding: 6px 16px;
  background: var(--c-olive-glow); border-radius: var(--r-full);
}
.tema-page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--c-text); margin-bottom: 12px;
}
.tema-page-header-desc {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  color: var(--c-text-muted); line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}
.tema-page-header-line {
  width: 60px; height: 3px; background: var(--c-primary);
  border-radius: 2px; margin: 28px auto 0;
}

/* --- TEMA BUTTONS (scoped) --- */
.tema-home .t-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 40px; border-radius: var(--r-full);
  font-size: 1rem; font-weight: 600; letter-spacing: 0.3px;
  transition: all var(--t-base) var(--ease); position: relative; overflow: hidden;
  text-decoration: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
}
.tema-home .t-btn svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--t-base) var(--ease-spring); }

.tema-home .t-btn-primary {
  background: var(--c-primary); color: var(--c-surface); box-shadow: var(--shadow-md);
}
.tema-home .t-btn-primary:hover {
  background: var(--c-primary-dark); transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--c-primary-glow);
}
.tema-home .t-btn-primary:hover svg { transform: translateX(4px); }
.tema-home .t-btn-primary:active { transform: translateY(-1px); }

.tema-home .t-btn-glow { animation: btn-pulse 3s infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 8px 24px var(--c-primary-glow); }
  50% { box-shadow: 0 12px 36px rgba(217, 72, 20, 0.4); }
}

.tema-home .t-btn-outline {
  color: var(--c-text); border: 1.5px solid var(--c-border-hover); background: transparent;
}
.tema-home .t-btn-outline:hover {
  background: var(--c-surface); border-color: var(--c-text);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.tema-home .t-btn-outline--light { color: #fff; border-color: rgba(255,255,255,0.5); }
.tema-home .t-btn-outline--light:hover { background: #fff; color: var(--c-text); border-color: #fff; }

.tema-home .t-btn-full { width: 100%; }

.text-primary { color: var(--c-primary); }

/* --- BREADCRUMB --- */
.breadcrumb-section {
  background: var(--c-bg-alt);
  padding: 14px 0 17px;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--c-text-muted); font-family: 'Outfit', sans-serif; }
.breadcrumb-item { display: flex; align-items: center; gap: 12px; }
.breadcrumb-item:last-child { color: var(--c-text); font-weight: 600; }
.breadcrumb-item a { color: var(--c-text-muted); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.breadcrumb-item a:hover { color: var(--c-primary); }
.breadcrumb-separator { opacity: 0.4; width: 14px; height: 14px; }

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%;
  top: 0; left: 0; transform: translate(-50%,-50%);
}
.cursor-dot { width: 8px; height: 8px; background: var(--c-primary); transition: width 0.15s, height 0.15s; }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid var(--c-primary-glow); transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s; }
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--c-primary); background: rgba(217,72,20,0.02); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* --- HERO SLIDER --- */
.tema-hero {
  position: relative; min-height: 75vh; display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--c-bg-alt); padding-top: 0;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  transform: scale(1.05);
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.5);
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 2; }

.tema-hero .hero-content {
  position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100%; height: 100%; padding-top: var(--header-h);
}
.hero-slide .hero-center {
  max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; transition-delay: 0.3s;
}
.hero-slide.active .hero-center {
  opacity: 1; transform: translateY(0);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: #fff;
  padding: 8px 20px 8px 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-full); margin-bottom: 32px; box-shadow: var(--shadow-sm);
  font-family: 'Outfit', sans-serif;
}
.hero-badge-icon { background: rgba(255,255,255,0.2); padding: 4px; border-radius: 50%; font-size: 1rem; }

.tema-hero .hero-title { margin-bottom: 24px; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.tema-hero .hero-title .text-primary { color: #fff !important; }

.tema-hero .hero-desc { font-size: 1.25rem; color: rgba(255,255,255,0.9); text-shadow: 0 2px 10px rgba(0,0,0,0.3); max-width: 560px; margin-bottom: 48px; line-height: 1.7; font-family: 'Outfit', sans-serif; }
.tema-hero .hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 48px; }
.hero-stat { display: flex; align-items: center; gap: 16px; color: #fff; }
.stat-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.hero-stat strong { display: inline-block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1.1; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.hero-stat span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.9); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.2); font-family: 'Outfit', sans-serif; }

.slider-nav { position: absolute; bottom: 40px; right: 40px; z-index: 20; display: flex; gap: 16px; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); color: #fff; display: flex; align-items: center; justify-content: center; transition: all var(--t-fast) var(--ease); cursor: pointer; }
.slider-btn:hover { background: #fff; color: var(--c-text); transform: scale(1.1); }
.slider-btn svg { width: 24px; height: 24px; }

/* --- MARQUEE --- */
.marquee { padding: 24px 0; background: var(--c-text); overflow: hidden; position: relative; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.marquee-track { display: flex; gap: 0; animation: marquee-scroll 35s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { padding: 0 32px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--c-surface); font-weight: 500; font-style: italic; }
.marquee-dot { color: rgba(255,255,255,0.3) !important; font-size: 0.8rem !important; display: inline-flex; align-items: center; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- FEATURES --- */
.tema-features { padding: 140px 0; background: var(--c-surface); position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card {
  background: var(--c-bg); border-radius: var(--r-lg); padding: 48px 32px;
  text-align: center; border: 1px solid var(--c-border); transition: all var(--t-base) var(--ease);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); background: var(--c-surface); border-color: var(--c-border-hover); }
.feature-icon-wrapper { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; background: var(--c-surface); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); transition: transform var(--t-base) var(--ease-spring); }
.feature-card:hover .feature-icon-wrapper { transform: scale(1.15) rotate(5deg); box-shadow: var(--shadow-md); border-color: var(--c-primary-glow); }
.feature-icon-wrapper i { font-size: 2rem; color: var(--c-primary); }
.feature-emoji { font-size: 2rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--c-text); margin-bottom: 16px; }
.feature-card p { font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.6; font-family: 'Outfit', sans-serif; }

/* --- MENU / PRODUCTS --- */
.tema-menu { padding: 140px 0; background: var(--c-bg-alt); position: relative; }

.menu-filter { margin-bottom: 64px; }
.filter-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.filter-tab {
  padding: 14px 32px; border-radius: var(--r-full); font-size: 1rem; font-weight: 600;
  color: var(--c-text-muted); background: var(--c-surface); border: 1px solid var(--c-border);
  transition: all var(--t-base) var(--ease); box-shadow: var(--shadow-sm); cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.filter-tab:hover { border-color: var(--c-border-hover); color: var(--c-text); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.filter-tab.active { background: var(--c-text); color: var(--c-surface); border-color: var(--c-text); box-shadow: var(--shadow-md); }

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

.product-card {
  background: var(--c-surface); border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); transition: all var(--t-base) var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.product-card-img {
  position: relative; height: 260px; background: var(--c-bg);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.product-card-image-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card-image-wrapper img { transform: scale(1.1); }

.product-card-badge {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  padding: 6px 16px; border-radius: var(--r-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
}
.product-card-badge--popular { background: var(--c-primary); color: #fff; box-shadow: 0 4px 12px var(--c-primary-glow); }
.product-card-badge--new { background: var(--c-olive); color: #fff; box-shadow: 0 4px 12px var(--c-olive-glow); }

.product-card-body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.product-card-cat { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-olive); margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.product-card-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; color: var(--c-text); }
.product-card-name a { color: inherit; text-decoration: none; }
.product-card-name a:hover { color: var(--c-primary); }
.product-card-desc { font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; font-family: 'Outfit', sans-serif; }

.product-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px dashed var(--c-border); }
.product-card-price { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--c-primary); }
.product-card-price-old { font-size: 1rem; color: var(--c-text-light); text-decoration: line-through; margin-right: 8px; }

.product-add-btn {
  display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 600; background: var(--c-bg-alt); color: var(--c-text);
  border: 1px solid var(--c-border); transition: all var(--t-fast) var(--ease);
  cursor: pointer; font-family: 'Outfit', sans-serif; text-decoration: none;
}
.product-add-btn svg { width: 18px; height: 18px; }
.product-add-btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); box-shadow: var(--shadow-sm); }
.product-add-btn:active { transform: scale(0.95); }

/* --- SECTION FOOTER (View All) --- */
.tema-home .section-footer { text-align: center; margin-top: 64px; }

/* --- PROMO DIVIDER --- */
.promo-divider { padding: 100px 0; background: var(--c-primary); position: relative; text-align: center; }
.promo-content { position: relative; z-index: 2; }
.promo-box { max-width: 800px; margin: 0 auto; background: var(--c-surface); padding: 64px 40px; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.promo-emoji { font-size: 3rem; display: block; margin-bottom: 24px; }
.promo-box h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--c-text); }
.promo-box p { font-size: 1.15rem; color: var(--c-text-muted); margin-bottom: 40px; font-family: 'Outfit', sans-serif; }

/* --- STORY --- */
.tema-story { padding: 140px 0; background: #f4f1ea; }
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }

.story-text { padding-right: 40px; }
.story-text p { font-family: 'Outfit', sans-serif; font-size: 1.05rem; color: var(--c-text-muted); line-height: 1.7; }
.story-features { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.story-feature { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--c-text); }
.story-feature-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--c-primary); color: #fff; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0; }
.story-signature { display: flex; flex-direction: column; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--c-border); }
.story-ceo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; font-style: italic; color: var(--c-primary); margin-bottom: 4px; }
.story-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--c-text-light); font-weight: 600; font-family: 'Outfit', sans-serif; }

.story-images { position: relative; height: 600px; }
.story-img-card { position: absolute; border-radius: var(--r-xl); background: var(--c-bg); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); border: 1px solid var(--c-border); overflow: hidden; }
.story-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-base) var(--ease); }
.story-img-card:hover img { transform: scale(1.05); }
.main-img { width: 100%; height: 100%; top: 0; right: 0; z-index: 1; }

.story-experience-badge {
  position: absolute; top: -2%; left: -20px; z-index: 3;
  width: 140px; height: 140px; background: var(--c-text); border-radius: 50%;
  border: 8px solid var(--c-surface); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); color: var(--c-surface); text-align: center;
}
.badge-content strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; line-height: 1; margin-bottom: 4px; color: var(--c-surface); }
.badge-content span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); font-family: 'Outfit', sans-serif; }

/* --- REVIEWS --- */
.tema-reviews { padding: 140px 0; background: var(--c-bg-alt); overflow: hidden; }
.reviews-slider { position: relative; margin-top: 40px; }
.reviews-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); gap: 32px; }

.review-card {
  flex: 0 0 calc(33.333% - 22px); background: var(--c-surface); padding: 48px 40px;
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
}
.review-stars { display: flex; gap: 4px; color: #F59E0B; margin-bottom: 24px; }
.review-stars svg { width: 22px; height: 22px; }
.review-text { font-size: 1.1rem; line-height: 1.7; color: var(--c-text); font-style: italic; margin-bottom: 32px; flex-grow: 1; font-family: 'Outfit', sans-serif; }

.review-author { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--c-border); }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; font-family: 'Outfit', sans-serif; }
.review-author strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--c-text); margin-bottom: 2px; }
.review-author span { font-size: 0.85rem; color: var(--c-text-light); text-transform: uppercase; letter-spacing: 1px; font-family: 'Outfit', sans-serif; }

.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 64px; }
.reviews-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--c-surface); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text); transition: all var(--t-fast) var(--ease); box-shadow: var(--shadow-sm); cursor: pointer; }
.reviews-btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: scale(1.05); }
.reviews-btn svg { width: 24px; height: 24px; }
.reviews-dots { display: flex; gap: 12px; }
.review-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-border-hover); transition: all var(--t-base) var(--ease); cursor: pointer; border: none; }
.review-dot.active { background: var(--c-primary); transform: scale(1.5); }

/* --- TEAM --- */
.tema-team { padding: 140px 0; background: var(--c-surface); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.team-card {
  background: var(--c-bg); border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); transition: all var(--t-base) var(--ease);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
  border-color: rgba(var(--c-primary-rgb, 139, 119, 42), 0.3);
}
.team-card-img {
  position: relative; width: 100%; height: 340px; overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--c-bg), transparent);
  pointer-events: none;
}
.team-card-body { padding: 28px 32px 36px; text-align: center; }
.team-card-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--c-text); margin-bottom: 6px;
}
.team-card-role {
  display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  color: var(--c-primary); margin-bottom: 14px;
}
.team-card-desc {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; line-height: 1.7;
  color: var(--c-text-muted);
}

/* --- CTA BANNER --- */
.tema-cta {
  position: relative; padding: 160px 0; background-size: cover;
  background-position: center; background-attachment: fixed;
}
.tema-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,23,18,0.88) 0%, rgba(26,23,18,0.7) 100%);
}
.tema-cta-inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.tema-cta-tag {
  display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 20px;
  padding: 8px 20px; border: 1px solid rgba(var(--c-primary-rgb, 139, 119, 42), 0.4);
  border-radius: var(--r-full);
}
.tema-cta-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: #fff; margin-bottom: 20px;
}
.tema-cta-desc {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; line-height: 1.8;
  color: rgba(255,255,255,0.7); margin-bottom: 44px;
}
.tema-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tema-cta .t-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 40px; border-radius: var(--r-full);
  font-size: 1rem; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  background: #fff; color: var(--c-text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all var(--t-base) var(--ease);
}
.tema-cta .t-btn-primary:hover {
  background: var(--c-primary); color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.tema-cta .t-btn-primary svg { width: 20px; height: 20px; transition: transform var(--t-base) var(--ease-spring); }
.tema-cta .t-btn-primary:hover svg { transform: translateX(4px); }
.t-btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
  color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none; transition: all var(--t-fast) var(--ease);
}
.t-btn-outline-light:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6);
}

/* --- CONTACT --- */
.tema-contact { padding: 140px 0; background: var(--c-surface); }
.contact-box { background: var(--c-text); border-radius: var(--r-xl); padding: 0; display: grid; grid-template-columns: 1fr 1.2fr; overflow: hidden; box-shadow: var(--shadow-xl); }
.contact-info { padding: 80px 64px; color: var(--c-bg); border-right: 1px solid rgba(255,255,255,0.1); }
.title-light { color: var(--c-surface); }
.desc-light { color: rgba(255,255,255,0.7); margin-bottom: 48px; font-size: 1.1rem; font-family: 'Outfit', sans-serif; }

.contact-methods { display: flex; flex-direction: column; gap: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 20px; }
.method-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.method-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--c-surface); margin-bottom: 4px; }
.method-text span { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-family: 'Outfit', sans-serif; }

.contact-form-wrapper { padding: 80px 64px; background: var(--c-bg); }
.tema-home .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tema-home .contact-form .form-group { margin-bottom: 24px; }
.tema-home .contact-form .form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
.tema-home .contact-form .form-group input,
.tema-home .contact-form .form-group textarea {
  width: 100%; padding: 18px 24px; background: var(--c-surface); border: 1px solid var(--c-border-hover);
  border-radius: var(--r-md); font-size: 1rem; color: var(--c-text); transition: all var(--t-fast) var(--ease);
  font-family: 'Outfit', sans-serif;
}
.tema-home .contact-form .form-group input:focus,
.tema-home .contact-form .form-group textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px var(--c-primary-glow); }
.tema-home .contact-form .form-group textarea { resize: vertical; min-height: 140px; }

/* --- TOAST --- */
.toast-container { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 16px; pointer-events: none; }
.toast { background: var(--c-text); color: var(--c-surface); padding: 16px 32px; border-radius: var(--r-full); font-weight: 500; font-size: 1rem; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-xl); transform: translateY(20px) scale(0.9); opacity: 0; transition: all 0.4s var(--ease-spring); font-family: 'Outfit', sans-serif; }
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* --- REVEAL ANIMATIONS --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-text { padding-right: 0; text-align: center; }
  .story-signature { align-items: center; }
  .story-images { height: 500px; justify-content: center; margin-top: 40px; }
  .contact-box { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tema-hero .hero-title { font-size: 2.8rem; }
  .hero-stats { display: none; }
  .slider-nav { bottom: 20px; right: 50%; transform: translateX(50%); gap: 8px; }
  .slider-btn { width: 44px; height: 44px; }

  .features-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 100%; }

  .tema-home .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 48px 32px; }
  .contact-form-wrapper { padding: 48px 32px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card-img { height: 280px; }
  .tema-page-header { padding: 100px 0 48px; }
  .tema-cta { padding: 100px 0; background-attachment: scroll; }
  .tema-features, .tema-menu, .tema-story, .tema-reviews, .tema-team, .tema-contact { padding: 80px 0; }
  .promo-divider { padding: 60px 0; }
  .promo-box { padding: 48px 24px; }
  .promo-box h2 { font-size: 2rem; }
}
