/*
Theme Name: Enkindle
Theme URI: https://enkindle.com
Author: Enkindle
Author URI: https://enkindle.com
Description: Flame of Feelings — A luxury candle brand theme with full Elementor and WooCommerce support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: enkindle
Tags: e-commerce, full-site-editing, custom-colors, custom-logo, elementor, woocommerce
*/

/* =========================================================
   ENKINDLE GLOBAL STYLES
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600&display=swap');

:root {
  --enkindle-cream:       #FAF5EE;
  --enkindle-warm-white:  #FDF8F3;
  --enkindle-rose-dark:   #7C3D2E;
  --enkindle-rose-mid:    #A85A45;
  --enkindle-rose-light:  #D49080;
  --enkindle-gold:        #8C7443;
  --enkindle-gold-light:  #C9A96E;
  --enkindle-dark:        #1A1410;
  --enkindle-text:        #2C2218;
  --enkindle-muted:       #7A6B5D;
  --enkindle-border:      rgba(140, 116, 67, 0.25);
  --enkindle-shadow:      0 4px 30px rgba(124, 61, 46, 0.08);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Josefin Sans', sans-serif;

  --transition:    0.3s ease;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-pill:   50px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--enkindle-text);
  background-color: var(--enkindle-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--enkindle-text);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-style: italic; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.enkindle-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--enkindle-text);
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--enkindle-muted);
}

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */

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

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

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.enkindle-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--enkindle-warm-white);
  border-bottom: 0.5px solid var(--enkindle-border);
  padding: 0 40px;
}

.enkindle-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.enkindle-logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--enkindle-text);
  text-transform: uppercase;
}

.enkindle-logo span {
  color: var(--enkindle-gold);
}

/* Nav */
.enkindle-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}

.enkindle-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--enkindle-text);
  position: relative;
  padding-bottom: 2px;
}

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

.enkindle-nav a:hover::after,
.enkindle-nav a.current-menu-item::after { width: 100%; }

/* Header icons */
.enkindle-header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.enkindle-header-icons a {
  color: var(--enkindle-text);
  font-size: 18px;
  transition: color var(--transition);
}

.enkindle-header-icons a:hover { color: var(--enkindle-gold); }

/* Cart count badge */
.enkindle-cart-count {
  position: relative;
}

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

/* =========================================================
   STATS BAR (Homepage hero strip)
   ========================================================= */

.enkindle-stats-bar {
  background: var(--enkindle-warm-white);
  border-bottom: 0.5px solid var(--enkindle-border);
  padding: 16px 40px;
}

.enkindle-stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.enkindle-stat-item {
  display: flex;
  flex-direction: column;
}

.enkindle-stat-item .stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--enkindle-muted);
  margin-bottom: 2px;
}

.enkindle-stat-item .stat-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--enkindle-text);
}

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

.enkindle-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: var(--enkindle-cream);
  overflow: hidden;
  padding: 60px 40px;
}

.enkindle-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(210, 160, 120, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(180, 130, 100, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.enkindle-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.enkindle-hero-nav {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   PILL BUTTONS (from design)
   ========================================================= */

.enkindle-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 1px solid var(--enkindle-text);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--enkindle-text);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-width: 200px;
  text-align: center;
}

.enkindle-btn-pill:hover {
  background: var(--enkindle-text);
  color: var(--enkindle-cream);
}

.enkindle-btn-pill.gold {
  border-color: var(--enkindle-gold);
  color: var(--enkindle-gold);
}

.enkindle-btn-pill.gold:hover {
  background: var(--enkindle-gold);
  color: #fff;
}

/* =========================================================
   PRIMARY CTA BUTTON
   ========================================================= */

.enkindle-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--enkindle-rose-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.enkindle-btn-primary:hover {
  background: var(--enkindle-rose-mid);
  transform: translateY(-1px);
}

.enkindle-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: transparent;
  color: var(--enkindle-text);
  border: 1px solid var(--enkindle-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.enkindle-btn-outline:hover {
  border-color: var(--enkindle-text);
  background: var(--enkindle-text);
  color: var(--enkindle-cream);
}

/* =========================================================
   PRODUCT GRID
   ========================================================= */

.enkindle-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .enkindle-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .enkindle-products-grid { grid-template-columns: 1fr; padding: 40px 20px; }
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.enkindle-product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.enkindle-product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #D49080 0%, #7C3D2E 100%);
  border-radius: var(--radius-md);
  position: relative;
  margin-bottom: 16px;
}

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

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

.enkindle-product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.enkindle-product-card-info {
  padding: 0 4px;
}

.enkindle-product-card-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--enkindle-text);
  margin-bottom: 4px;
}

.enkindle-product-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--enkindle-muted);
}

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

.enkindle-single-product {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .enkindle-single-product {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 30px;
  }
}

.enkindle-product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
}

.enkindle-product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enkindle-product-thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #D49080 0%, #7C3D2E 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.enkindle-product-thumb.active,
.enkindle-product-thumb:hover {
  border-color: var(--enkindle-gold);
}

.enkindle-product-main-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #D49080 0%, #7C3D2E 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Product details */
.enkindle-product-details {}

.enkindle-product-details h1 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 10px;
}

.enkindle-product-details .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--enkindle-text);
  margin-bottom: 24px;
}

/* Tab switcher */
.enkindle-product-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--enkindle-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 28px;
}

.enkindle-product-tab {
  flex: 1;
  padding: 12px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid var(--enkindle-border);
  background: transparent;
  border-top: none;
  border-bottom: none;
  border-left: none;
  color: var(--enkindle-muted);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.enkindle-product-tab:last-child { border-right: none; }
.enkindle-product-tab.active,
.enkindle-product-tab:hover {
  background: var(--enkindle-text);
  color: var(--enkindle-cream);
}

/* Quantity */
.enkindle-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.enkindle-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--enkindle-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.enkindle-qty-control button {
  width: 40px;
  height: 44px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--enkindle-text);
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.enkindle-qty-control button:hover { background: var(--enkindle-border); }

.enkindle-qty-control input {
  width: 50px;
  height: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--enkindle-text);
  outline: none;
}

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */

/* Reset WC defaults to match our theme */
.woocommerce-page body,
.woocommerce body {
  background: var(--enkindle-cream);
}

/* WC Notices */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--enkindle-gold) !important;
  background: var(--enkindle-warm-white) !important;
  font-family: var(--font-body) !important;
}

.woocommerce-error {
  border-top-color: var(--enkindle-rose-dark) !important;
}

/* Shop page product loop */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s ease;
}

.woocommerce ul.products li.product a:hover img {
  transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 12px 0 4px !important;
  color: var(--enkindle-text) !important;
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  color: var(--enkindle-muted) !important;
}

/* WC Single Product */
.woocommerce div.product div.images {
  width: 55% !important;
}

.woocommerce div.product div.summary {
  width: 40% !important;
  float: right !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  border-radius: var(--radius-md);
}

/* WC Product Title */
.woocommerce div.product .product_title {
  font-family: var(--font-body) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-style: normal !important;
}

/* WC Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  color: var(--enkindle-text) !important;
}

/* WC Add to Cart button */
.woocommerce .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--enkindle-rose-dark) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 16px 48px !important;
  transition: all var(--transition) !important;
  box-shadow: none !important;
}

.woocommerce .single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--enkindle-rose-mid) !important;
  transform: translateY(-1px) !important;
}

/* WC Quantity input */
.woocommerce .quantity .qty {
  border: 1px solid var(--enkindle-border) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-body) !important;
  text-align: center !important;
  height: 44px !important;
  width: 60px !important;
  color: var(--enkindle-text) !important;
  background: transparent !important;
}

/* WC Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: transparent !important;
  border-bottom: 1px solid var(--enkindle-border) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 1px solid var(--enkindle-border) !important;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
  margin-right: 4px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--enkindle-muted) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--enkindle-text) !important;
  border-color: var(--enkindle-text) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--enkindle-cream) !important;
}

/* WC Cart */
.woocommerce table.cart td,
.woocommerce table.cart th {
  font-family: var(--font-body) !important;
  border-color: var(--enkindle-border) !important;
  vertical-align: middle !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--enkindle-rose-dark) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* WC Checkout */
.woocommerce-checkout .woocommerce input.input-text,
.woocommerce-checkout .woocommerce select,
.woocommerce-checkout .woocommerce textarea {
  border: 1px solid var(--enkindle-border) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  background: var(--enkindle-warm-white) !important;
  padding: 12px 16px !important;
}

.woocommerce form .form-row label {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--enkindle-muted) !important;
}

/* WC Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: var(--enkindle-muted) !important;
  letter-spacing: 0.05em !important;
}

/* WC Star Ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--enkindle-gold) !important;
}

/* WC Sale Badge */
.woocommerce span.onsale {
  background: var(--enkindle-rose-dark) !important;
  border-radius: 50% !important;
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

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

.enkindle-footer {
  background: var(--enkindle-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
}

.enkindle-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

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

@media (max-width: 600px) {
  .enkindle-footer-inner { grid-template-columns: 1fr; }
}

.enkindle-footer-logo {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.enkindle-footer p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.enkindle-footer h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.enkindle-footer ul li {
  margin-bottom: 8px;
}

.enkindle-footer ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.enkindle-footer ul li a:hover { color: var(--enkindle-gold-light); }

.enkindle-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .enkindle-container { padding: 0 24px; }
  .enkindle-header { padding: 0 24px; }
}

@media (max-width: 768px) {
  .enkindle-nav { display: none; }
  .enkindle-stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .enkindle-single-product { grid-template-columns: 1fr; }
  .enkindle-product-gallery { grid-template-columns: 1fr; }
  .enkindle-product-thumbnails { flex-direction: row; }
  .enkindle-hero-nav { display: none; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
  .enkindle-stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* =========================================================
   ELEMENTOR COMPATIBILITY
   ========================================================= */

/* Ensure Elementor sections inherit our fonts */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display) !important;
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p {
  font-family: var(--font-body) !important;
}

/* Elementor button overrides */
.elementor-button {
  font-family: var(--font-body) !important;
  letter-spacing: 0.15em !important;
}

/* Make Elementor sections respect theme bg */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

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

.enkindle-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.enkindle-fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.enkindle-fade-in-delay-2 { animation-delay: 0.25s; opacity: 0; }
.enkindle-fade-in-delay-3 { animation-delay: 0.4s; opacity: 0; }
