/* =====================================================
   ðÂÂÂÂÂÂ Sido’s List — SaaS Premium Design System
   Inspiré Shopify / Upwork / Alibaba
===================================================== */

/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f9fafb, #eef2f7);
  color: #1f2937;
  line-height: 1.6;
  scroll-behavior: smooth;
}



/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 16px;
}



/* =========================
   SECTIONS COLORÉES
========================= */
section {
  position: relative;
  overflow: hidden;
}

.section-soft {
  background: linear-gradient(135deg, #f1f4ff, #ffffff);
  padding: 100px 0;
}

.section-gradient {
  background: linear-gradient(135deg, #fff5e6, #ffffff);
  padding: 100px 0;
}

.partners-section {
  background: linear-gradient(135deg, #eefcff, #ffffff);
  padding: 100px 0;
}

/* =========================
   HERO SAAS
========================= */
.hero-section {
  min-height: 100vh;
  background: url('../assets/images/sidoo.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  animation: fadeUp 1.2s ease;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.25rem;
  margin-top: 12px;
  opacity: 0.9;
}

/* =========================
   HERO SEARCH (ALIGNÉ)
========================= */
.hero-search {
  margin: 40px auto 0;
  max-width: 720px;
  display: flex;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  outline: none;
}

.hero-search button {
  border: none;
  padding: 18px 28px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s ease;
}

.hero-search button:hover {
  filter: brightness(1.1);
}

/* =========================
   CTA HERO
========================= */
.hero-cta {
  margin-top: 35px;
}

/* =========================
   TITRES & TEXTES
========================= */
.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* =========================
   GRIDS
========================= */
.showcase-grid,
.features-grid,
.stats-grid,
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
}

/* =========================
   GLASS CARDS
========================= */
.showcase-card,
.feature-card,
.stat-card,
.partner-card-pro {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(15,23,42,.15);
  transition: .4s ease;
}

.showcase-card:hover,
.feature-card:hover,
.stat-card:hover,
.partner-card-pro:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 35px 90px rgba(15,23,42,.28);
}

/* =========================
   SHOWCASE
========================= */
.showcase-card {
  overflow: hidden;
}
.showcase-card img {
  height: 220px;
  object-fit: cover;
}
.showcase-card p {
  padding: 18px;
  font-weight: 600;
  text-align: center;
}

/* =========================
   FEATURES
========================= */
.feature-card {
  padding: 36px;
  text-align: center;
}
.feature-card i {
  font-size: 2.4rem;
  color: #6f42c1;
  margin-bottom: 15px;
}

/* =========================
   STATS
========================= */
.stat-card {
  padding: 40px;
  text-align: center;
}
.stat-card h3 {
  font-size: 2.8rem;
  color: #fd7e14;
}

/* =========================
   VISION
========================= */
.vision-image img {
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0,0,0,.15);
}
.vision-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.vision-text p {
  max-width: 560px;
  color: #475569;
}

/* =========================
   PARTENAIRES
========================= */
.partners-carousel-pro {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 6px;
}
.partner-card-pro {
  min-width: 220px;
  padding: 22px;
  text-align: center;
}
.partner-card-pro img {
  max-height: 70px;
  margin: 0 auto 12px;
}

/* =========================
   FOOTER SLOGAN
========================= */
.logo-pulse {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform: translateY(0); }
}
/* ===============================
   Formulaires de recherche
================================= */
.search-form {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}

.search-form .input {
  width: 50%;
  min-width: 280px;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.search-form button {
  border-radius: 0 50px 50px 0;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ==============================
   BETA BANNER INSTITUTIONNEL
============================== */
.beta-banner{
  background:#fff3cd;
  color:#664d03;
  font-size:.85rem;
  padding:6px 10px;
  border-bottom:1px solid rgba(0,0,0,.05);
  position:relative;
  z-index:1050;
}

.beta-banner .beta-link{
  margin-left:8px;
  font-weight:600;
  color:#0d6efd;
  text-decoration:none;
}

.beta-banner .beta-link:hover{
  text-decoration:underline;
}
/* ===============================
   Cards (catégories / produits)
================================= */
.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ===============================
   Boutons premium
================================= */
.premium-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #0072ff;
  border-radius: 50px;
  font-weight: 600;
  color: #0072ff;
  background: transparent;
  transition: all 0.3s ease;
}

.premium-btn:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* ===============================
   Navbar moderne
================================= */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-weight: 500;
  color: #1f2937 !important;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #0072ff !important;
  transform: translateY(-2px);
}



.logo-premium {
  height: 320px;
  width: 320px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ===============================
   Footer premium
================================= */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #00c6ff;
  text-decoration: none;
}

footer a:hover {
  color: #0072ff;
}

/* ===============================
   Animations globales
================================= */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-favori {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #adb5bd;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}

.btn-favori:hover {
  transform: scale(1.15);
  color: #e63946;
}

.btn-favori.active {
  color: #e63946;
}

/* AOS Custom smooth */
[data-aos] {
  transition: all 0.8s ease-in-out !important;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
  opacity: 0;
}
[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

.text-gradient {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(90deg, #2575fc, #6a11cb);
  color: white !important;
  border: none;
  transition: 0.3s ease-in-out;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  transform: translateY(-2px);
}

.vision-editorial {
  background: linear-gradient(180deg, #ffffff, #f8f9fb);
}

.vision-editorial h3 {
  font-family: 'Playfair Display', serif;
}

.vision-editorial ul li {
  font-weight: 500;
}

.vision-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #0f172a; /* bleu très foncé institutionnel */
}

.vision-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569; /* gris premium */
  max-width: 560px;
}

.vision-editorial ul {
  margin-top: 20px;
}

.vision-editorial ul li {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
}

/* ==============================
   SHOWCASE VISUEL — PREMIUM
============================== */

.showcase-section {
  background: linear-gradient(180deg, #ffffff, #f8f9fb);
}

.showcase-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 20px 6px 30px;
  scroll-behavior: smooth;
}

.showcase-carousel::-webkit-scrollbar {
  height: 6px;
}
.showcase-carousel::-webkit-scrollbar-thumb {
  background: #cfd6e4;
  border-radius: 10px;
}

.showcase-card {
  min-width: 300px;
  max-width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  transition: transform .35s ease, box-shadow .35s ease;
  background: #000;
}

.showcase-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Live search suggestions - annonces */
.live-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 1200;
  max-height: 420px;
  overflow: auto;
  padding: 8px;
}
.live-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  transition: background .15s, transform .08s;
  margin-bottom: 6px;
}
.live-suggestion-item:hover,
.live-suggestion-item.active {
  background: linear-gradient(90deg, rgba(0,123,255,0.06), rgba(0,123,255,0.02));
  transform: translateY(-2px);
}
.live-suggestion-item .thumb img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.live-suggestion-item .meta { flex:1; }
.live-suggestion-item .meta .title { font-weight:600; font-size:0.95rem; }
.live-suggestion-item .meta .sub { font-size:0.82rem; color:#666; margin-top:4px; }
.live-suggestion-item .price { font-weight:700; color:#0d6efd; margin-left:8px; white-space:nowrap; }
.suggest-badge.premium {
  background:#ffd700; color:#111; font-weight:700; font-size:0.7rem; padding:4px 8px; border-radius:999px; margin-left:8px;
}
.live-no-results { padding:14px; color:#666; text-align:center; }

.dropdown-menu {
    border-radius: 14px;
}
.dropdown-item:hover {
    background: #f4f6fb;
}
