.elementor-30232 .elementor-element.elementor-element-4ccff4ef{--display:flex;}.elementor-30232 .elementor-element.elementor-element-5cd0d7d9{text-align:start;}/* Start custom CSS for text-editor, class: .elementor-element-5cd0d7d9 *//* ===== GHALLA.MA — Sans Gluten · Thème Clair & Coloré ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
  --g-green:       #2e7d52;
  --g-green-mid:   #43a472;
  --g-green-light: #7ec8a0;
  --g-amber:       #d4820a;
  --g-amber-light: #f5b942;
  --g-amber-pale:  #fef3d7;
  --g-leaf:        #e8f5ee;
  --g-white:       #ffffff;
  --g-text:        #1e3a2a;
  --g-text-soft:   #4a6b56;
}

/* ======== BACKGROUND PAGE ======== */
body {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(126,200,160,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(245,185,66,0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(46,125,82,0.08) 0%, transparent 45%),
    linear-gradient(160deg, #f4fdf7 0%, #fefcf5 50%, #f0faf5 100%);
  min-height: 100vh;
}

/* ======== BOX PRINCIPALE ======== */
.ghalla-premium-box {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(245,185,66,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(126,200,160,0.1) 0%, transparent 50%),
    linear-gradient(145deg, #ffffff 0%, #f7fdf9 60%, #fffef8 100%);
  border: 1.5px solid rgba(126,200,160,0.25);
  border-radius: 28px;
  padding: 52px 48px;
  max-width: 820px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  font-family: 'Tajawal', sans-serif;
  box-shadow:
    0 4px 6px rgba(46,125,82,0.05),
    0 20px 60px rgba(46,125,82,0.10),
    0 1px 0 rgba(255,255,255,0.95) inset;
  animation: boxReveal 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

/* Motif feuilles géométriques en watermark */
.ghalla-premium-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--g-amber-light),
    var(--g-green-light),
    var(--g-green),
    var(--g-amber-light)
  );
  background-size: 200% 100%;
  animation: topBarFlow 4s linear infinite;
  z-index: 2;
}

/* Cercles décoratifs flottants */
.ghalla-premium-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(126,200,160,0.15) 0%,
    rgba(46,125,82,0.05) 40%,
    transparent 70%
  );
  animation: floatOrb 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Orbe ambre coin haut droit */
.ghalla-premium-box .ghalla-orb-top {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245,185,66,0.12) 0%,
    rgba(212,130,10,0.04) 40%,
    transparent 70%
  );
  animation: floatOrb 5s 1s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.ghalla-premium-box > * {
  position: relative;
  z-index: 1;
}

@keyframes boxReveal {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes topBarFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.06); }
}

/* ======== BADGE ======== */
.ghalla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fffbee, #fff5d6);
  color: var(--g-amber);
  border: 1.5px solid rgba(212,130,10,0.25);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow:
    0 4px 16px rgba(212,130,10,0.12),
    0 1px 0 rgba(255,255,255,0.8) inset;
  animation: badgeSlide 0.6s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.ghalla-badge::before {
  content: '🌾';
  font-size: 1rem;
}

@keyframes badgeSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ======== TITRE ======== */
.ghalla-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--g-text);
  line-height: 1.35;
  margin-bottom: 20px;
  text-align: right;
  direction: rtl;
  animation: fadeUp 0.7s 0.35s ease both;
}

.ghalla-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 70px;
  background: linear-gradient(90deg, var(--g-amber-light), var(--g-green-light));
  margin: 12px 0 0 auto;
  border-radius: 4px;
  animation: lineGrow 0.9s 1s ease both;
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 70px; opacity: 1; }
}

/* ======== INTRO ======== */
.ghalla-intro {
  color: var(--g-text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 34px;
  text-align: right;
  direction: rtl;
  animation: fadeUp 0.7s 0.5s ease both;
}

/* ======== DIVIDER ======== */
.ghalla-divider {
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent,
    var(--g-green-light),
    var(--g-amber-light),
    var(--g-green-light),
    transparent
  );
  margin: 8px 0 34px;
  border-radius: 4px;
  animation: divGrow 1s 0.7s ease both;
}

@keyframes divGrow {
  from { opacity: 0; transform: scaleX(0.2); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* ======== SOUS-TITRE ======== */
.ghalla-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--g-green);
  margin-bottom: 26px;
  text-align: right;
  direction: rtl;
  animation: fadeUp 0.7s 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======== LISTE FEATURES ======== */
.ghalla-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ghalla-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  direction: rtl;
  background: linear-gradient(135deg,
    rgba(232,245,238,0.7) 0%,
    rgba(255,255,255,0.9) 100%
  );
  border: 1.5px solid rgba(126,200,160,0.3);
  border-radius: 16px;
  padding: 20px 22px;
  backdrop-filter: blur(4px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  animation: itemSlide 0.65s ease both;
}

.ghalla-features li:nth-child(1) { animation-delay: 0.95s; }
.ghalla-features li:nth-child(2) { animation-delay: 1.10s; }
.ghalla-features li:nth-child(3) { animation-delay: 1.25s; }
.ghalla-features li:nth-child(4) { animation-delay: 1.40s; }

@keyframes itemSlide {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ghalla-features li:hover {
  transform: translateX(-5px) translateY(-2px);
  background: linear-gradient(135deg,
    rgba(212,240,225,0.85) 0%,
    rgba(234,250,242,0.95) 100%
  );
  border-color: var(--g-green-mid);
  box-shadow:
    0 8px 28px rgba(46,125,82,0.12),
    0 2px 8px rgba(46,125,82,0.07);
}

/* ======== ICÔNE CHECK ======== */
.ghalla-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-mid));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(46,125,82,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 2px;
}

.ghalla-features li:hover .ghalla-icon {
  transform: scale(1.18) rotate(8deg);
  box-shadow: 0 6px 22px rgba(67,164,114,0.5);
}

/* ======== TEXTE DES ITEMS ======== */
.ghalla-features li > div {
  color: var(--g-text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  text-align: right;
}

.ghalla-features li > div strong {
  display: block;
  color: var(--g-green);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
  .ghalla-premium-box {
    padding: 36px 24px;
    border-radius: 20px;
  }
  .ghalla-title {
    font-size: 1.55rem;
  }
  .ghalla-features li {
    padding: 16px 16px;
  }
}/* End custom CSS */