/* ==========================================
   BODY ART ISRAEL — Premium Wellness Design System v2
   ========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --ba-white: #FFFFFF;
  --ba-cream: #FAF8F5;
  --ba-beige: #F2EDE3;
  --ba-beige-dark: #E8DFD0;
  --ba-green-light: #EBF2EC;
  --ba-green: #4A7C59;
  --ba-green-dark: #2D5E3C;
  --ba-gold: #C9A96E;
  --ba-gold-light: #E8D5A3;
  --ba-text-dark: #1A1A1A;
  --ba-text-medium: #4A4A4A;
  --ba-text-light: #7A7A7A;
  --ba-shadow: 0 4px 24px rgba(45,94,60,0.08);
  --ba-shadow-hover: 0 8px 48px rgba(45,94,60,0.15);
  --ba-radius: 12px;
  --ba-radius-lg: 20px;
  --ba-transition: all 0.3s ease;
}

/* --- Global Body Styles --- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ba-text-dark);
  background: var(--ba-white);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography Headings --- */
.t-title, h1, h2, h3,
.t-heading,
[class*="t-title"],
.tn-elem[data-elem-type="text"] h1,
.tn-elem[data-elem-type="text"] h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
}

/* --- Body Text --- */
p, .t-text, .t-body, li {
  font-family: 'Inter', sans-serif;
  line-height: 1.75 !important;
}

/* --- BA-BLOCK: Unified Block Styles --- */
.ba-block {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ba-block--green {
  background: var(--ba-green-light);
}

.ba-block--cream {
  background: var(--ba-cream);
}

.ba-block--dark {
  background: var(--ba-green-dark);
  color: white;
}

/* --- BA Hero Section --- */
.ba-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ba-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,94,60,0.75) 0%, rgba(26,26,26,0.5) 100%);
}

.ba-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.ba-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ba-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* --- Section Titles --- */
.ba-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--ba-green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ba-section-subtitle {
  font-size: 17px;
  color: var(--ba-text-medium);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 640px;
}

.ba-gold-line {
  width: 60px;
  height: 3px;
  background: var(--ba-gold);
  margin: 16px 0 32px 0;
  border-radius: 2px;
}

.ba-gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Cards --- */
.ba-card {
  background: white;
  border-radius: var(--ba-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--ba-shadow);
  transition: var(--ba-transition);
  border: 1px solid var(--ba-beige);
}

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

.ba-card--green {
  background: var(--ba-green-dark);
  color: white;
  border: none;
}

.ba-card--beige {
  background: var(--ba-beige);
  border: none;
}

.ba-card__icon {
  width: 56px;
  height: 56px;
  background: var(--ba-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.ba-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ba-green-dark);
  margin-bottom: 12px;
}

.ba-card--green .ba-card__title {
  color: white;
}

/* --- Buttons --- */
.ba-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--ba-transition);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.ba-btn--primary {
  background: var(--ba-green-dark);
  color: white;
  border-color: var(--ba-green-dark);
}

.ba-btn--primary:hover {
  background: var(--ba-green);
  border-color: var(--ba-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,94,60,0.3);
}

.ba-btn--gold {
  background: var(--ba-gold);
  color: white;
  border-color: var(--ba-gold);
}

.ba-btn--gold:hover {
  background: #b8954f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
}

.ba-btn--outline {
  background: transparent;
  color: var(--ba-green-dark);
  border-color: var(--ba-green-dark);
}

.ba-btn--outline:hover {
  background: var(--ba-green-dark);
  color: white;
}

.ba-btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.ba-btn--outline-white:hover {
  background: white;
  color: var(--ba-green-dark);
}

/* --- Grid Systems --- */
.ba-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

/* --- Trust Bar --- */
.ba-trust-bar {
  background: var(--ba-green-dark);
  color: white;
  padding: 24px 20px;
}

.ba-trust-bar__items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-trust-item {
  text-align: center;
}

.ba-trust-item__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ba-gold);
  line-height: 1;
}

.ba-trust-item__label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* --- Product Section (NICE / Be Lite) --- */
.ba-product {
  padding: 80px 20px;
}

.ba-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-product__image {
  border-radius: var(--ba-radius-lg);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
}

.ba-product__image img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-product__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ba-product__badge--nice {
  background: var(--ba-green-light);
  color: var(--ba-green-dark);
}

.ba-product__badge--belite {
  background: #EBF0F2;
  color: #2D4A5E;
}

.ba-product__features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.ba-product__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ba-beige);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ba-text-medium);
}

.ba-product__features li::before {
  content: '✓';
  color: var(--ba-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Ingredients List --- */
.ba-ingredients {
  background: var(--ba-cream);
  border-radius: var(--ba-radius);
  padding: 24px;
  margin: 24px 0;
}

.ba-ingredient {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ba-beige);
}

.ba-ingredient:last-child {
  border-bottom: none;
}

.ba-ingredient__name {
  font-weight: 600;
  color: var(--ba-green-dark);
  min-width: 120px;
  font-size: 14px;
}

.ba-ingredient__desc {
  font-size: 14px;
  color: var(--ba-text-medium);
  line-height: 1.5;
}

/* --- FAQ Section --- */
.ba-faq {
  max-width: 800px;
  margin: 0 auto;
}

.ba-faq__item {
  border-bottom: 1px solid var(--ba-beige);
  padding: 0;
}

.ba-faq__question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--ba-text-dark);
  user-select: none;
}

.ba-faq__question:hover {
  color: var(--ba-green-dark);
}

.ba-faq__answer {
  font-size: 15px;
  color: var(--ba-text-medium);
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}

.ba-faq__item.active .ba-faq__answer {
  display: block;
}

.ba-faq__icon {
  transition: transform 0.3s ease;
  color: var(--ba-green);
  font-size: 20px;
  flex-shrink: 0;
}

.ba-faq__item.active .ba-faq__icon {
  transform: rotate(45deg);
}

/* --- Testimonials / Reviews --- */
.ba-testimonial-card {
  background: white;
  border-radius: var(--ba-radius-lg);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  transition: var(--ba-transition);
}

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

.ba-testimonial-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.ba-testimonial-card__body {
  padding: 20px 24px;
}

.ba-testimonial-card__result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ba-green-dark);
  margin-bottom: 8px;
}

.ba-testimonial-card__desc {
  font-size: 14px;
  color: var(--ba-text-medium);
  line-height: 1.6;
}

.ba-testimonial-card__disclaimer {
  font-size: 12px;
  color: var(--ba-text-light);
  margin-top: 8px;
  font-style: italic;
}

/* --- Video Section --- */
.ba-video-section {
  background: var(--ba-green-dark);
  padding: 80px 20px;
}

.ba-video-section .ba-section-title {
  color: white;
}

.ba-video-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--ba-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

.ba-video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.ba-video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-video-card__body {
  padding: 20px;
  color: white;
}

.ba-video-card__title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.ba-video-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* --- Science / Research Block --- */
.ba-research-item {
  padding: 20px 24px;
  background: white;
  border-radius: var(--ba-radius);
  border-left: 4px solid var(--ba-green);
  margin-bottom: 16px;
  box-shadow: var(--ba-shadow);
}

.ba-research-item__name {
  font-weight: 600;
  color: var(--ba-green-dark);
  font-size: 15px;
  margin-bottom: 6px;
}

.ba-research-item__desc {
  font-size: 14px;
  color: var(--ba-text-medium);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ba-research-item__link {
  color: var(--ba-green);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.ba-research-item__link:hover {
  text-decoration: underline;
}

/* --- Disclaimer Box --- */
.ba-disclaimer {
  background: var(--ba-beige);
  border: 1px solid var(--ba-beige-dark);
  border-radius: var(--ba-radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--ba-text-medium);
  line-height: 1.6;
  margin: 24px 0;
}

.ba-disclaimer::before {
  content: 'ⓘ ';
  font-weight: 600;
  color: var(--ba-green);
}

/* --- Contact / CTA Section --- */
.ba-cta-section {
  background: linear-gradient(135deg, var(--ba-green-dark) 0%, var(--ba-green) 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.ba-cta-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.ba-cta-section__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- WhatsApp Button --- */
.ba-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--ba-transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.ba-whatsapp-btn:hover {
  background: #1DA854;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* --- Steps / Program Flow --- */
.ba-steps {
  counter-reset: step;
  max-width: 700px;
  margin: 0 auto;
}

.ba-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ba-beige);
  position: relative;
}

.ba-step:last-child {
  border-bottom: none;
}

.ba-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ba-green-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.ba-step__content {
  flex: 1;
}

.ba-step__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--ba-text-dark);
  margin-bottom: 8px;
}

.ba-step__desc {
  font-size: 14px;
  color: var(--ba-text-medium);
  line-height: 1.65;
}

/* --- Footer --- */
.ba-footer {
  background: var(--ba-text-dark);
  color: white;
  padding: 60px 20px 32px;
}

.ba-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.ba-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.ba-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.ba-footer__heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ba-gold);
  margin-bottom: 16px;
}

.ba-footer__links {
  list-style: none;
  padding: 0;
}

.ba-footer__links li {
  margin-bottom: 8px;
}

.ba-footer__links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.ba-footer__links a:hover {
  color: white;
}

.ba-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Responsive / Mobile --- */
@media (max-width: 768px) {
  .ba-grid-2,
  .ba-grid-3,
  .ba-grid-4,
  .ba-product__grid,
  .ba-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-block {
    padding: 48px 16px;
  }

  .ba-product {
    padding: 48px 16px;
  }

  .ba-trust-bar__items {
    gap: 24px;
  }

  .ba-trust-item__number {
    font-size: 28px;
  }

  .ba-video-section,
  .ba-cta-section {
    padding: 48px 16px;
  }

  .ba-card {
    padding: 24px 20px;
  }

  .ba-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* --- Tilda Block Overrides for Clean Look --- */
.t-section {
  transition: var(--ba-transition);
}

/* Remove Tilda default heavy padding on certain blocks */
.t-rec-pl_0 .t-section__topindent {
  padding-top: 0 !important;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ba-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--ba-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ba-green-dark);
}

/* --- BA New Sections for HTML injection --- */
.ba-section {
  width: 100%;
  padding: 80px 0;
}

.ba-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.ba-section--cream {
  background: var(--ba-cream);
}

.ba-section--green-light {
  background: var(--ba-green-light);
}

.ba-section--dark {
  background: var(--ba-green-dark);
}

.ba-text-center { text-align: center; }
.ba-text-white { color: white; }

.ba-combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ba-combo-badge--nice {
  background: var(--ba-green-light);
  color: var(--ba-green-dark);
  border: 1px solid rgba(74,124,89,0.3);
}

.ba-combo-badge--belite {
  background: #EBF0F5;
  color: #2A4060;
  border: 1px solid rgba(42,64,96,0.2);
}

/* FAQ Interactive */
.ba-faq__question .ba-faq__icon::after {
  content: '+';
  display: inline-block;
}

.ba-faq__item.active .ba-faq__question .ba-faq__icon::after {
  content: '×';
}

/* About Info Block */
.ba-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .ba-about-grid {
    grid-template-columns: 1fr;
  }
  .ba-section {
    padding: 48px 0;
  }
}

/* FAQ Icon Fix - prevent duplicate + sign */
.ba-faq__icon {
  font-size: 0 !important;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-faq__icon::after {
  content: '+';
  font-size: 22px;
  color: var(--ba-green);
  transition: transform 0.3s ease;
  display: block;
}
.ba-faq__item.active .ba-faq__icon::after {
  content: '×';
  color: var(--ba-green-dark);
}
