/* ═══════════════════════════════════════
   FLORÀ FASHION — Elementor Widget CSS
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Nunito:wght@400;600;700;800&display=swap');

/* ── Variables (overridden inline per-widget) ── */
.flora-shop-wrap {
  --flora-primary:   #FF6B9D;
  --flora-secondary: #A29BFE;
  --flora-accent:    #FFE66D;
  --flora-dark:      #1a1a2e;
  --flora-bg:        #FFF9F5;
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--flora-bg);
  overflow-x: hidden;
}

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

/* ── TICKER ── */
.flora-ticker-bar {
  background: var(--flora-dark);
  color: var(--flora-accent);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.flora-ticker-inner {
  display: inline-flex;
  gap: 80px;
  animation: flora-ticker 24s linear infinite;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
@keyframes flora-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ── */
.flora-hero {
  position: relative;
  background: linear-gradient(135deg, var(--flora-primary) 0%, var(--flora-accent) 40%, #4ECDC4 100%);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.flora-hero-deco {
  position: absolute;
  opacity: 0.28;
  font-size: 56px;
  animation: flora-float 4s ease-in-out infinite;
  pointer-events: none;
}
.flora-deco-1 { top: 18px;  left: 10%;  font-size: 60px; animation-delay: 0s; }
.flora-deco-2 { bottom: 18px; right: 8%; font-size: 48px; animation-delay: 1s; }
.flora-deco-3 { top: 40%;   left: 5%;  font-size: 40px; animation-delay: 0.5s; }
.flora-deco-4 { top: 30%;   right: 6%; font-size: 44px; animation-delay: 1.5s; }

@keyframes flora-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.flora-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.9);
  border-radius: 50px;
  padding: 6px 22px;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--flora-primary);
  margin-bottom: 20px;
}
.flora-hero-title {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  text-shadow: 0 4px 20px rgba(0,0,0,.15);
  margin: 0 0 20px;
}
.flora-hero-outline {
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.flora-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 600;
  line-height: 1.6;
}
.flora-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.flora-btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.flora-btn:hover { transform: scale(1.05); }
.flora-btn-solid {
  background: #fff;
  color: var(--flora-primary);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.flora-btn-outline {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.flora-btn-gradient {
  box-shadow: 0 8px 28px rgba(255,107,157,.4);
}

/* ── STATS BAR ── */
.flora-stats-bar {
  background: var(--flora-dark);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.flora-stat-item { text-align: center; }
.flora-stat-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--flora-accent);
}
.flora-stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── PRODUCTS SECTION ── */
.flora-products-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.flora-section-header { text-align: center; margin-bottom: 40px; }
.flora-section-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--flora-primary);
  font-weight: 800;
  margin-bottom: 10px;
}
.flora-section-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--flora-dark);
  margin: 0 0 8px;
}
.flora-section-subtitle {
  font-family: 'Nunito', sans-serif;
  color: #888;
  font-size: 16px;
  margin: 0;
}

/* ── FILTER BAR ── */
.flora-filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.flora-filter-btn {
  font-family: 'Nunito', sans-serif;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #eee;
  background: #fff;
  color: #666;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.flora-filter-btn:hover,
.flora-filter-btn.active {
  border-color: var(--flora-primary);
  background: linear-gradient(135deg, var(--flora-primary), var(--flora-secondary));
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,157,.35);
  transform: scale(1.05);
}

/* ── PRODUCT GRID ── */
.flora-products-grid {
  display: grid;
  gap: 28px;
}
.flora-cols-2 { grid-template-columns: repeat(2, 1fr); }
.flora-cols-3 { grid-template-columns: repeat(3, 1fr); }
.flora-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .flora-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .flora-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flora-cols-4,
  .flora-cols-3,
  .flora-cols-2 { grid-template-columns: 1fr; }
  .flora-stats-bar { gap: 28px; }
  .flora-hero { padding: 60px 20px; }
  .flora-products-section { padding: 40px 20px; }
}

/* ── PRODUCT CARD ── */
.flora-product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.flora-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.flora-product-card.flora-hidden { display: none; }

.flora-product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flora-product-emoji {
  font-size: 80px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.14));
}
.flora-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.flora-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  transition: transform .2s;
}
.flora-wishlist-btn:hover { transform: scale(1.3); }

.flora-product-info { padding: 20px; }
.flora-product-cat {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.flora-product-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--flora-dark);
  margin: 0 0 8px;
}
.flora-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}
.flora-stars { color: #FFD700; font-size: 13px; }
.flora-reviews { color: #888; font-size: 12px; font-weight: 600; }
.flora-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flora-product-price {
  font-size: 24px;
  font-weight: 900;
}
.flora-add-btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
}
.flora-add-btn:hover { transform: scale(1.06); opacity: .9; }

/* ── DISCOUNT BANNER ── */
.flora-discount-banner {
  margin: 20px 40px 60px;
  border-radius: 32px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.flora-discount-banner::after {
  content: '🌸';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  opacity: .07;
  pointer-events: none;
}
.flora-banner-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 12px;
}
.flora-banner-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}
.flora-banner-code {
  font-family: 'Nunito', sans-serif;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  margin: 0;
}

/* ── FOOTER ── */
.flora-footer {
  color: #fff;
  padding: 50px 40px 30px;
  text-align: center;
}
.flora-footer-logo {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}
.flora-footer-tagline {
  font-family: 'Nunito', sans-serif;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  font-size: 14px;
}
.flora-footer-copy {
  font-family: 'Nunito', sans-serif;
  color: rgba(255,255,255,.3);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 600px) {
  .flora-discount-banner { margin: 20px 16px 40px; padding: 40px 24px; }
  .flora-banner-title { font-size: 28px; }
}
