/* ==========================================================
   Quickk Style Switcher — Controller only
   Version 1.0.3
   Important:
   - Ahmed = design actuel du site, aucune modification CSS.
   - Ranym = design actuel aussi par défaut.
   - Pour changer Ranym, ajoutez votre CSS dans Apparence > Personnaliser > CSS additionnel
     avec le préfixe: html.quickk-style-ranym
   ========================================================== */

/* =========================
   Boutons switcher homepage
   ========================= */
.quickk-style-switcher {
  direction: ltr;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 14px auto 18px;
  padding: 10px;
  width: max-content;
  max-width: calc(100% - 24px);
  background: #fff8ef;
  border: 1px solid rgba(59, 12, 54, 0.14);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(13, 6, 37, 0.08);
  z-index: 9999;
}

.quickk-style-switcher-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: auto;
  max-width: calc(100% - 36px);
  margin: 0;
  box-shadow: 0 14px 34px rgba(13, 6, 37, 0.16);
}

.quickk-style-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  background: #f5e5d0;
  color: #3b0c36;
  transition: all 0.22s ease;
  text-align: center;
}

.quickk-style-btn small {
  display: none !important;
}

.quickk-style-btn:hover {
  transform: translateY(-1px);
}

.quickk-style-btn.is-active {
  background: #eba62f;
  color: #2a0620;
  box-shadow: 0 8px 18px rgba(235, 166, 47, 0.28);
}

/* Mobile */
@media (max-width: 768px) {
  .quickk-style-switcher {
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .quickk-style-switcher-floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .quickk-style-btn {
    flex: 1 1 0;
    min-width: 120px;
  }
}
