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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: #fafafa;
  color: #111;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.menu a:hover {
  color: #25D366;
}

.cart-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-btn {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.cart-btn:hover {
  opacity: 0.9;
}

.payment-info {
  margin-top: 5px;
  font-size: 11px;
  color: white;
  opacity: 0.85;
  text-align: center;
  white-space: nowrap;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/marrakech.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.logo-container {
  text-align: center;
}

.logo {
  width: 380px;
  max-width: 85%;
  display: block;
  margin: 0 auto;
  animation: fadeIn 1s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.subtitle {
  color: white;
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

/* MAIN CIRCLES */

.main-circles {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.circle-box {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.55);
}

.circle-icon {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circle-box span {
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.circle-box:hover {
  background: #25D366;
  color: white;
  transform: translateY(-6px) scale(1.05);
}

.circle-blur {
  filter: blur(4px);
  opacity: 0.5;
  transition: 0.3s;
}

/* BLUR MENU */

.blur-active .navbar,
.blur-active .logo-container,
.blur-active .activities,
.blur-active .subcategory-section {
  filter: blur(5px);
}

#blur-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

#blur-overlay.active {
  display: block;
}

#circle-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
}

#circle-menu.active {
  display: block;
}

.sub-circle-menu {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  pointer-events: auto;
  z-index: 4000;
}

.sub-circle-menu:hover {
  background: white;
  color: #111;
  transform: scale(1.08);
}

/* SECTIONS */

.activities,
.subcategory-section {
  padding: 55px 20px 20px;
  text-align: center;
}

.activities h2,
.subcategory-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.subcategory-section h2 {
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* HORIZONTAL PRODUCTS */

.horizontal-scroll {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 5px 5px 20px;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}

.card {
  min-width: calc((100% - 40px) / 3);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ddd;
}

.card h3 {
  margin: 15px 10px 10px;
  font-size: 20px;
}

.card p {
  padding: 0 15px;
  margin-bottom: 15px;
  color: #555;
  min-height: 40px;
}

/* BUTTONS */

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 18px;
}

.btn-whatsapp:hover {
  background-color: #128C43;
  transform: scale(1.05);
}

.btn-danger {
  background: red;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 10px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

/* POPUPS */

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
}

.popup-content {
  background: white;
  width: 90%;
  max-width: 430px;
  max-height: 85vh;
  overflow-y: auto;
  margin: 70px auto;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.popup-content img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

.popup-content label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.price {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

/* CART */

.cart-item {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: left;
}

.cart-item button {
  margin-top: 8px;
  background: red;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.cart-total {
  background: #e9fff1;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
  font-size: 18px;
  text-align: left;
}

.trust-message {
  color: green;
  font-weight: bold;
  margin: 15px 0 5px;
}

.urgent-message {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

/* WHATSAPP FLOAT */

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  background: #128C43;
}


/* HOME FLOAT */

.home-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: 0.3s;
}

.home-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-btn:hover {
  transform: scale(1.05);
  background: #25D366;
}

/* ANIMATION */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .navbar {
    padding: 12px 10px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 14px;
  }

  .payment-info {
    font-size: 9px;
  }

  .logo {
    width: 300px;
  }

  .subtitle {
    font-size: 16px;
  }

  .circle-box {
    width: 105px;
    height: 105px;
    font-size: 13px;
  }

  .sub-circle-menu {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }

  .activities h2,
  .subcategory-section h2 {
    font-size: 26px;
  }

  .card {
    min-width: 85%;
  }

  .whatsapp-btn span,
  .home-btn span {
    display: none;
  }

  .whatsapp-btn,
  .home-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-btn img,
  .home-btn svg {
    width: 28px;
    height: 28px;
  }
}


/* CARTES COMPACTES : texte + bouton directement sur l'image */
.card {
  position: relative;
  height: 270px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  color: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
  to top,
  rgba(0,0,0,0.65) 0%,
  rgba(0,0,0,0.30) 30%,
  rgba(0,0,0,0) 50%
);
  z-index: 1;
  pointer-events: none;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}

.card:hover img {
  transform: scale(1.06);
}

.card h3,
.card p,
.card .price-tag,
.card .btn-whatsapp {
  position: absolute;
  z-index: 2;
}

/* TITRE */

.card h3 {
  left: 16px;
  bottom: 58px;

  margin: 0;
  color: white;
  font-size: 20px;
  line-height: 1.1;

  text-align: left;

  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* DESCRIPTION */

.card p {
  left: 16px;
  bottom: 20px;

  margin: 0;
  padding: 0;

  color: rgba(255,255,255,0.9);

  font-size: 13px;
  line-height: 1.3;

  text-align: left;

  max-width: 55%;
}

/* PRIX */

.price-tag {
  position: absolute;
  right: 16px;
  bottom: 58px;

  background: rgba(0,0,0,0.7);
  color: white;

  padding: 7px 12px;
  border-radius: 20px;

  font-size: 13px;
  font-weight: bold;

  backdrop-filter: blur(5px);
}

/* BOUTON */

.card .btn-whatsapp {
  right: 16px;
  bottom: 15px;

  left: auto;

  width: auto;

  margin: 0;

  padding: 10px 15px;

  font-size: 12px;
  border-radius: 30px;
}

.card h3 {
  bottom: 92px;
  margin: 0;
  color: white;
  font-size: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.65);
}

.card p {
  bottom: 55px;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.88);
  min-height: auto;
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card .btn-whatsapp {
  bottom: 14px;
  width: fit-content;
  margin: 0;
  padding: 10px 15px;
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.card:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .card {
    height: 255px;
  }

  .card h3 {
    bottom: 88px;
    font-size: 19px;
  }

  .card p {
    bottom: 53px;
    font-size: 13px;
  }

  .card .btn-whatsapp {
    bottom: 13px;
    font-size: 12px;
    padding: 9px 13px;
  }
}
#backToTop {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: #ffffff;
  color: #000;

  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  z-index: 999;
  transition: 0.3s;
}

#backToTop:hover {
  transform: scale(1.1);
}

/* PRICE GREEN */
.price-tag {
  background: #25D366 !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

/* WHITE BUTTON */
.card .btn-whatsapp {
  background: white !important;
  color: #111 !important;
  font-weight: bold;
}

.card .btn-whatsapp:hover {
  background: #25D366 !important;
  color: white !important;
}


/* MULTILINE PRICE */
.price-tag {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.price-tag span {
  display: block;
  line-height: 1.2;
}


/* FIX CARD TEXT LAYOUT: title and description each on its own line */
.card h3 {
  left: 16px !important;
  right: 120px !important;
  bottom: 64px !important;
  display: block !important;
  width: auto !important;
  max-width: calc(100% - 145px) !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.card p {
  left: 16px !important;
  right: 120px !important;
  bottom: 36px !important;
  display: block !important;
  width: auto !important;
  max-width: calc(100% - 145px) !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
  line-height: 1.25 !important;
}

/* PRICE: show default in DH only */
.price-tag {
  right: 16px !important;
  bottom: 58px !important;
  min-width: 78px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 0 !important;
  background: #25D366 !important;
  color: white !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* Detail button white */
.card .btn-whatsapp {
  right: 16px !important;
  left: auto !important;
  bottom: 16px !important;
  background: white !important;
  color: #111 !important;
}

.card .btn-whatsapp:hover {
  background: #25D366 !important;
  color: white !important;
}

/* CURRENCY FLOAT BUTTON */
#currencyBtn {
  position: fixed;
  bottom: 20px;
  left: 85px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: 0.3s;
}

#currencyBtn:hover {
  transform: scale(1.1);
}

.currency-menu {
  display: none;
  position: fixed;
  bottom: 82px;
  left: 85px;
  background: white;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

.currency-menu.show {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.currency-menu button {
  border: none;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111;
  font-weight: bold;
  padding: 9px 13px;
  cursor: pointer;
}

.currency-menu button:hover {
  background: #25D366;
  color: white;
}

@media (max-width: 768px) {
  .card h3 {
    right: 108px !important;
    max-width: calc(100% - 130px) !important;
    bottom: 66px !important;
    font-size: 17px !important;
  }

  .card p {
    right: 108px !important;
    max-width: calc(100% - 130px) !important;
    bottom: 39px !important;
    font-size: 12px !important;
  }

  .price-tag {
    right: 12px !important;
    bottom: 58px !important;
    min-width: 70px !important;
    font-size: 12px !important;
  }

  .card .btn-whatsapp {
    right: 12px !important;
    bottom: 15px !important;
    font-size: 11px !important;
    padding: 8px 11px !important;
  }

  #currencyBtn {
    left: 85px;
    width: 55px;
    height: 55px;
  }

  .currency-menu {
    left: 85px;
  }
}


/* SMALL FLOAT BUTTONS: currency + language */
#currencyBtn,
#languageBtn {
  width: 44px !important;
  height: 44px !important;
  bottom: 25px !important;
  font-size: 12px !important;
  border-radius: 50% !important;
}

#currencyBtn {
  left: 82px !important;
}

#languageBtn {
  position: fixed;
  left: 132px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: 0.3s;
}

#languageBtn:hover {
  transform: scale(1.1);
  background: #25D366;
}

.currency-menu {
  left: 82px !important;
  bottom: 75px !important;
}

.language-menu {
  display: none;
  position: fixed;
  bottom: 75px;
  left: 132px;
  background: white;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

.language-menu.show {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.language-menu button {
  border: none;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111;
  font-weight: bold;
  padding: 9px 13px;
  cursor: pointer;
  white-space: nowrap;
}

.language-menu button:hover {
  background: #25D366;
  color: white;
}

body[dir="rtl"] .card h3,
body[dir="rtl"] .card p {
  text-align: right !important;
}

@media (max-width: 768px) {
  #currencyBtn {
    left: 78px !important;
  }

  #languageBtn {
    left: 126px !important;
  }

  .currency-menu {
    left: 78px !important;
  }

  .language-menu {
    left: 126px !important;
  }
}


/* LANGUAGE FLAG BUTTON */

#languageBtn {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  border: 2px solid white !important;
}

.flag-fr {
  background-image: url('https://flagcdn.com/w80/fr.png') !important;
}

.flag-en {
  background-image: url('https://flagcdn.com/w80/gb.png') !important;
}

.flag-es {
  background-image: url('https://flagcdn.com/w80/es.png') !important;
}

.flag-ar {
  background-image: url('https://flagcdn.com/w80/ma.png') !important;
}


/* OPTIONS DE RESERVATION HABIBI */
.hidden {
  display: none !important;
}

.booking-options {
  margin: 12px 0;
  text-align: left;
}

.booking-options small {
  display: block;
  margin-top: -8px;
  margin-bottom: 12px;
  color: #666;
  font-size: 12px;
}

.option-group {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 12px;
  margin: 12px 0;
}

.option-group h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #111;
}

.option-group label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: normal !important;
  margin: 8px 0 !important;
  cursor: pointer;
}

.option-group input[type="radio"] {
  width: auto !important;
  margin: 0 !important;
}

.popup-content select,
.popup-content input[type="time"],
.popup-content input[type="file"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: white;
}


/* POPUP BOOKING LAYOUT FIXES */
.required-star,
.required-text {
  color: #e60023;
  font-weight: 800;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0;
  align-items: start;
}

.booking-row.one-column {
  grid-template-columns: 1fr;
}

.booking-field label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 13px;
}

.popup-content .booking-field input,
.popup-content .booking-field select {
  width: 100%;
  padding: 10px;
  margin: 0 0 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: white;
}

.booking-field small {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: -5px;
}

@media (max-width: 520px) {
  .booking-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* === CORRECTIONS POPUP RESERVATION V2 === */
.required-star,
.required-text {
  color: #e60023 !important;
  font-weight: 900 !important;
}

.required-text {
  font-size: 12px !important;
}

.booking-options {
  text-align: left !important;
}

.booking-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin: 10px 0 !important;
}

.booking-row.one-column {
  grid-template-columns: 1fr !important;
}

.booking-field label {
  display: block !important;
  text-align: left !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  font-size: 13px !important;
}

.popup-content .booking-field input,
.popup-content .booking-field select,
.popup-content input[type="time"],
.popup-content input[type="file"],
.popup-content select {
  width: 100% !important;
  padding: 10px !important;
  margin: 0 0 10px !important;
  border-radius: 10px !important;
  border: 1px solid #ccc !important;
  background: #fff !important;
}

.popup-content input[type="file"] {
  cursor: pointer !important;
}

.booking-field small {
  display: block !important;
  color: #666 !important;
  font-size: 12px !important;
  margin-top: -4px !important;
}

@media (max-width: 520px) {
  .booking-row {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
}


/* ==============================
   HABIBI FINAL MVP IMPROVEMENTS
   ============================== */
.hidden { display: none !important; }

.enhanced-popup {
  max-width: 560px !important;
  padding: 22px !important;
}

.popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.popup-head h2 {
  text-align: left;
  font-size: 24px;
  line-height: 1.15;
  margin-right: 20px;
}

.popup-badge {
  flex-shrink: 0;
  background: #e9fff1;
  color: #128c43;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
}

.popup-note {
  background: #fff8e5;
  color: #6b4b00;
  border: 1px solid #ffe2a1;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  text-align: left;
  margin-bottom: 14px;
}

.booking-options {
  margin-top: 12px;
  text-align: left;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-row.one-column {
  grid-template-columns: 1fr;
}

.booking-field label,
.option-group h4 {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #111;
}

.required-star,
.required-text {
  color: #e11d48 !important;
  font-weight: 900;
}

.booking-field input,
.booking-field select,
.popup-content input,
.popup-content select {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  background: #fff;
  outline: none;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.upload-field {
  background: #f8f8f8;
  border: 1px dashed #bdbdbd;
  padding: 12px;
  border-radius: 16px;
}

.booking-field small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

.option-group {
  background: #f8f8f8;
  padding: 13px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.radio-grid.two-cols {
  grid-template-columns: 1fr 1fr;
}

.radio-grid label,
.option-group label {
  background: white;
  border: 1px solid #dedede;
  border-radius: 13px;
  padding: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.radio-grid label:hover,
.option-group label:hover {
  border-color: #25D366;
  transform: translateY(-1px);
}

.popup-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e9fff1;
  color: #111;
  padding: 14px;
  border-radius: 16px;
  margin: 14px 0;
  font-size: 15px;
}

.popup-summary strong {
  color: #128c43;
  font-size: 22px;
}

.add-program-btn {
  width: 100%;
  margin-bottom: 0 !important;
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.cart-options {
  margin: 8px 0;
  padding: 8px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #25D366;
}

.item-total {
  font-weight: bold;
  color: #128c43;
  margin-top: 5px;
}

.price {
  color: #128c43;
}

@media (max-width: 768px) {
  .enhanced-popup {
    width: 94% !important;
    margin: 55px auto !important;
    max-height: 88vh !important;
  }

  .popup-head {
    flex-direction: column;
  }

  .booking-row,
  .radio-grid,
  .radio-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .popup-head h2 {
    font-size: 21px;
    margin-right: 30px;
  }
}


/* =========================
   HABIBI V3 - popup final polish
   ========================= */
.required-star,
.required-text {
  color: #e11d48 !important;
  font-weight: 800;
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.booking-field label,
.option-group h4 {
  font-size: 13px;
  line-height: 1.35;
  color: #111827;
}

.popup-content select,
.popup-content input[type="time"],
.popup-content input[type="file"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
}

.radio-grid label {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fafafa;
  cursor: pointer;
  transition: .2s;
}

.radio-grid label:has(input:checked) {
  border-color: #25D366;
  background: #e9fff1;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.18);
}

.popup-summary {
  background: linear-gradient(135deg, #e9fff1, #ffffff);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 18px;
}

.popup-summary span { color: #374151; font-weight: 700; }
.popup-summary strong { color: #16a34a; font-size: 22px; }

body[dir="rtl"] .booking-field label,
body[dir="rtl"] .cart-item,
body[dir="rtl"] .popup-content label {
  text-align: right !important;
}

body[dir="rtl"] .popup-summary,
body[dir="rtl"] .cart-item-head {
  flex-direction: row-reverse;
}

.cart-item-head button {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  padding: 0 !important;
  font-size: 18px;
}

@media (max-width: 640px) {
  .booking-row { grid-template-columns: 1fr; gap: 0; }
  .popup-content { margin: 54px auto; max-height: 88vh; }
}


/* V5 FIX: only circles stay red; all other red accents are green */
.circle-box:hover {
  background: #E50914 !important;
  color: white !important;
}

.sub-circle-menu {
  background: #E50914 !important;
  color: white !important;
}

.sub-circle-menu:hover {
  background: white !important;
  color: #111 !important;
}


/* =========================================================
   V6 COMPACT SUBCATEGORIES
   Objectif : rendre les cartes de sous-catégories plus petites,
   plus légères et plus rapides à parcourir, surtout sur mobile.
   ========================================================= */

.subcategory-section {
  padding-top: 38px !important;
  padding-bottom: 10px !important;
}

.subcategory-section h2 {
  font-size: 26px !important;
  margin-bottom: 14px !important;
  padding-left: 4px;
}

.subcategory-section .horizontal-scroll {
  gap: 14px !important;
  padding: 4px 4px 14px !important;
}

.subcategory-section .card {
  min-width: calc((100% - 42px) / 4) !important;
  height: 215px !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16) !important;
}

.subcategory-section .card::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.38) 34%,
    rgba(0,0,0,0.06) 56%,
    rgba(0,0,0,0) 100%
  ) !important;
}

.subcategory-section .card h3 {
  left: 12px !important;
  right: 92px !important;
  bottom: 52px !important;
  max-width: calc(100% - 108px) !important;
  font-size: 16px !important;
  line-height: 1.12 !important;
}

.subcategory-section .card p {
  left: 12px !important;
  right: 92px !important;
  bottom: 29px !important;
  max-width: calc(100% - 108px) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.subcategory-section .price-tag {
  right: 12px !important;
  bottom: 52px !important;
  min-width: 64px !important;
  padding: 6px 9px !important;
  font-size: 11px !important;
  border-radius: 999px !important;
}

.subcategory-section .card .btn-whatsapp {
  right: 12px !important;
  bottom: 14px !important;
  padding: 7px 10px !important;
  font-size: 10.5px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

.subcategory-section .card:hover {
  transform: translateY(-4px) !important;
}

@media (max-width: 1100px) {
  .subcategory-section .card {
    min-width: calc((100% - 28px) / 3) !important;
  }
}

@media (max-width: 768px) {
  .subcategory-section {
    padding: 34px 14px 6px !important;
  }

  .subcategory-section h2 {
    font-size: 21px !important;
    margin-bottom: 10px !important;
  }

  .subcategory-section .horizontal-scroll {
    gap: 12px !important;
  }

  .subcategory-section .card {
    min-width: 72% !important;
    height: 190px !important;
    border-radius: 16px !important;
  }

  .subcategory-section .card h3 {
    left: 11px !important;
    right: 84px !important;
    bottom: 50px !important;
    max-width: calc(100% - 98px) !important;
    font-size: 15px !important;
  }

  .subcategory-section .card p {
    left: 11px !important;
    right: 84px !important;
    bottom: 29px !important;
    max-width: calc(100% - 98px) !important;
    font-size: 10.5px !important;
  }

  .subcategory-section .price-tag {
    right: 10px !important;
    bottom: 50px !important;
    min-width: 58px !important;
    padding: 5px 8px !important;
    font-size: 10.5px !important;
  }

  .subcategory-section .card .btn-whatsapp {
    right: 10px !important;
    bottom: 13px !important;
    padding: 7px 9px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 420px) {
  .subcategory-section .card {
    min-width: 76% !important;
    height: 178px !important;
  }

  .subcategory-section .card h3 {
    font-size: 14px !important;
    bottom: 47px !important;
  }

  .subcategory-section .card p {
    display: none !important;
  }

  .subcategory-section .price-tag {
    bottom: 46px !important;
  }
}


/* POPUP IMAGE SERVICES ON IMAGE - NO GREEN FRAME */
.popup-image-wrap {
  position: relative;
  width: 100%;
  margin: 15px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
}

.popup-image-wrap #popup-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
}

.popup-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.28) 38%,
    rgba(0,0,0,0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

.popup-services {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 170px;
  max-width: 52%;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: white;
  text-align: left;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 3;
}

.services-title {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  color: white;
  text-shadow: 0 2px 7px rgba(0,0,0,0.75);
}

.popup-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-services li {
  position: relative;
  padding-left: 20px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 7px rgba(0,0,0,0.8);
}

.popup-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent !important;
  color: #25D366;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}

@media (max-width: 520px) {
  .popup-image-wrap #popup-img {
    height: 220px;
  }

  .popup-image-wrap::after {
    background: linear-gradient(
      to left,
      rgba(0,0,0,0.66) 0%,
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0) 78%
    );
  }

  .popup-services {
    right: 10px;
    width: 142px;
    max-width: 55%;
  }

  .services-title {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .popup-services li {
    font-size: 10px;
    padding-left: 18px;
  }

  .popup-services li::before {
    font-size: 14px;
  }
}


/* FINAL HABIBI FOOTER */
.habibi-footer {
  margin-top: 45px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 55%, #0b3d22 100%);
  color: white;
  padding: 45px 20px 18px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  max-width: 80%;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

.footer-brand p,
.footer-col p,
.footer-col span,
.footer-col a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: white;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  text-decoration: none;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #25D366;
  transform: translateX(3px);
}

.footer-cta a {
  width: fit-content;
  margin-top: 6px;
  background: #25D366;
  color: white !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}

.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

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

@media (max-width: 600px) {
  .activities,
  .subcategory-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .habibi-footer {
    padding-bottom: 92px;
  }
}


/* FINAL POLISH OVERRIDES */
.card h3,
.card p,
.card .price-tag,
.card .btn-whatsapp {
  position: absolute;
  z-index: 2;
}

.card {
  will-change: transform;
}

.horizontal-scroll {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.popup-content {
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

button, a {
  -webkit-tap-highlight-color: transparent;
}


/* PAYMENT POPUP V1 - Habibi Check-In */
.cart-payment-actions {
  margin: 16px 0 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f8f8;
  border: 1px solid #ececec;
}

.btn-pay-main {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: #111;
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s;
}

.btn-pay-main:hover {
  background: #25D366;
  transform: translateY(-2px);
}

.payment-mini-note {
  margin: 9px 0 0;
  font-size: 12px;
  color: #555;
  line-height: 1.35;
}

.payment-content {
  max-width: 560px;
}

.payment-intro {
  margin: 10px 0 14px;
  color: #555;
  line-height: 1.5;
}

.payment-summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #e9fff1;
  border: 1px solid rgba(37, 211, 102, 0.22);
  margin: 14px 0;
  text-align: left;
}

.payment-summary-box span {
  color: #333;
  font-weight: 700;
}

.payment-summary-box strong {
  color: #128C43;
  font-size: 22px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.payment-method {
  min-height: 104px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: white;
  color: #111;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.payment-method i,
.payment-method strong {
  font-size: 34px;
  line-height: 1;
}

.payment-method span {
  font-weight: 800;
}

.payment-method small {
  color: #777;
  font-size: 11px;
}

.payment-method:hover {
  transform: translateY(-3px);
  border-color: #25D366;
}

.disabled-pay {
  opacity: 0.62;
  cursor: not-allowed;
  background: #f7f7f7;
}

.binance-pay {
  border-color: rgba(240, 185, 11, 0.35);
}

.binance-pay strong {
  color: #f0b90b;
}

.cash-pay i {
  color: #25D366;
}

.payment-details {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid #eeeeee;
  text-align: left;
}

.payment-details h3 {
  margin-bottom: 8px;
}

.payment-details p {
  color: #555;
  line-height: 1.45;
  margin-bottom: 12px;
}

.binance-qr-card {
  width: 190px;
  height: 190px;
  margin: 12px auto;
  border-radius: 18px;
  background: white;
  border: 1px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.binance-qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}

.qr-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  color: #111;
  background: repeating-linear-gradient(45deg, #fff, #fff 8px, #f2f2f2 8px, #f2f2f2 16px);
  line-height: 1.4;
}

.qr-placeholder small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
  color: #666;
}

.btn-binance {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 16px;
  background: #f0b90b;
  color: #111;
  font-weight: 900;
  margin: 8px 0;
}

.payment-whatsapp-btn {
  width: 100%;
  margin: 8px 0 0 !important;
}

.cash-warning {
  background: #fff5e8;
  border: 1px solid #ffd8a8;
  border-radius: 14px;
  padding: 12px;
  color: #7a3d00 !important;
  font-weight: 700;
}

.cash-confirm-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 !important;
  padding: 12px;
  border-radius: 14px;
  background: white;
  border: 1px solid #eeeeee;
  font-weight: 700 !important;
  line-height: 1.35;
}

.cash-confirm-line input {
  width: auto !important;
  margin: 2px 0 0 !important;
}

.hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .payment-summary-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .binance-qr-card {
    width: 170px;
    height: 170px;
  }
}


/* ORDER SUCCESS BANNER */
.order-success-banner {
  display: none;
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 760px);
  background: #e9fff1;
  color: #0f6b35;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  z-index: 12000;
  text-align: center;
}

.order-success-banner.show {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-success-banner strong {
  font-size: 17px;
}

.order-success-banner span {
  font-size: 13px;
  line-height: 1.4;
}

.btn-pay-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#cart-payment-actions {
  display: none !important;
}

@media (max-width: 768px) {
  .order-success-banner {
    top: 76px;
    padding: 12px 14px;
  }
}


/* ADMIN COMMANDES LOCAL */
#adminOrdersBtn {
  position: fixed;
  bottom: 25px;
  left: 182px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: 0.3s;
}

#adminOrdersBtn:hover {
  transform: scale(1.08);
  background: #25D366;
}

.admin-orders-content {
  max-width: 760px !important;
  text-align: left !important;
}

.admin-intro {
  color: #555;
  margin: 8px 0 18px;
  line-height: 1.5;
}

.admin-login-box {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 16px;
}

.admin-login-box label {
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.admin-login-box input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.admin-login-box small {
  display: block;
  color: #777;
  margin-top: 10px;
}

.admin-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f7f7f7;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.admin-toolbar button,
.admin-order-actions button {
  border: none;
  border-radius: 999px;
  padding: 9px 12px;
  background: #111;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.admin-toolbar button:hover,
.admin-order-actions button:hover {
  background: #25D366;
}

.admin-order-card {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.admin-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-order-head strong {
  display: block;
  font-size: 18px;
}

.admin-order-head span {
  display: block;
  color: #666;
  font-size: 13px;
}

.admin-status {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px !important;
  font-weight: 800;
  white-space: nowrap;
}

.admin-status.pending {
  background: #fff3cd;
  color: #8a5a00;
}

.admin-status.paid {
  background: #e9fff1;
  color: #128C43;
}

.admin-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-order-meta span {
  background: #f4f4f4;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}

.admin-order-items {
  padding-left: 20px;
  margin: 10px 0;
}

.admin-order-items li {
  margin-bottom: 8px;
  line-height: 1.45;
}

.admin-options {
  color: #666;
  font-size: 13px;
  margin-top: 4px;
}

.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-empty {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 18px;
  color: #555;
}

@media (max-width: 768px) {
  #adminOrdersBtn {
    left: 182px;
    bottom: 25px;
  }
  .admin-order-head {
    flex-direction: column;
  }
  .admin-toolbar {
    align-items: stretch;
  }
  .admin-toolbar button,
  .admin-order-actions button {
    width: 100%;
  }
}


/* MYSQL PAYMENT / ADMIN LINK */
.payment-customer-box{
  background:#f7f7f7;
  border:1px solid #ececec;
  border-radius:18px;
  padding:12px;
  margin:14px 0;
}
.payment-whatsapp-btn:disabled{opacity:.65;cursor:not-allowed;transform:none!important;}
.footer-admin-link{max-width:1100px;margin:18px auto 0;text-align:center;border-top:1px solid rgba(255,255,255,.12);padding-top:14px;}
.footer-admin-link a{color:#25D366;text-decoration:none;font-weight:700;}
.footer-admin-link a:hover{text-decoration:underline;}
