/* ============================================================
   🟥 BOUTONS LNG UNIFIÉS
   ============================================================ */
.btn-primary, 
button.btn-primary, 
input[type="submit"].btn-primary {
  background: #b6062b;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 0.65rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #9a0525;
  transform: translateY(-1px);
}

/* Pour les boutons dans les formulaires (vérifier / procéder au paiement / ajouter au panier) */
button.btn-primary,
input[type="button"].btn-primary,
input[type="submit"].btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ============================================================
   🔍 ZONE DE RECHERCHE DE DOMAINE
   ============================================================ */
.domain-search {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 700px;
  margin: 2rem auto;
}
.domain-search input[type="text"] {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 0.65rem 0 0 0.65rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.domain-search input[type="text"]:focus {
  border-color: #b6062b;
  box-shadow: 0 0 0 2px rgba(182, 6, 43, 0.25);
}
.domain-search button {
  border-radius: 0 0.65rem 0.65rem 0;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
}

/* ============================================================
   💼 PACKS D’HÉBERGEMENT (ALIGNÉS)
   ============================================================ */
.pack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.pack-card {
  flex: 1 1 320px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 420px;
}
.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pack-card h3 {
  font-size: 1.3rem;
  color: #b6062b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pack-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b6062b;
  margin: 1rem 0;
}
.pack-card .btn-primary {
  margin-top: auto;
}

/* ============================================================
   ✅ LISTES AVEC ICONES CHECK
   ============================================================ */
ul.checked-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
ul.checked-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  color: #374151;
}
ul.checked-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #b6062b;
  font-weight: 700;
}

/* ============================================================
   ℹ️ SECTION INFOS (après packs)
   ============================================================ */
.info-section {
  /*background: #fff;*/
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.info-section h2 {
  color: #b6062b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.info-section p {
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.info-card {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.info-card h3 {
  color: #b6062b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.info-card p {
  color: #374151;
  font-size: 0.95rem;
}

/* ============================================================
   🧩 FOOTER LNG
   ============================================================ */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 1rem;
  text-align: center;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
}
footer h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 0.4rem;
}
footer a {
  color: #b6062b;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #fff;
}
footer .bottom-bar {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

table {
    width: 100%;
}
#cart-table {
  width: 100%;
  background: white;
}

#cart-table th, #cart-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}
input[type="number"] {
  width: 70px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  padding: 4px;
}

#cart-container th, 
#cart-container td {
  padding: 1rem 0.5rem;
}
#cart-container tbody tr {
  border-bottom: 1px solid #eee;
}
#cart-container tbody tr:last-child {
  border-bottom: none;
}
input[type="number"] {
  width: 80px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 4px;
}

#cart-body tr {
  transition: all 0.3s ease;
}
#cart-body tr.removed {
  opacity: 0;
  transform: translateX(-20px);
}

.bg-red-100 {
    background: red;
}
.text-red-600 {
    color: white;
}

.contentLNG {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  
  transition: all 0.3s ease;
  width: 100%;
}
.contentLNG:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.btn-success{
    color:#fff;
    background-color:#28a745;
    border-color:#28a745;
    padding: 0.7rem 1.4rem;
    border-radius: 0.65rem;
    transition: all 0.25s ease;
}
.btn-success:hover{
    color:#fff;
    background-color:#218838;
    border-color:#1e7e34
}
.btn-success.focus,.btn-success:focus{
    box-shadow:0 0 0 .2rem rgba(40,167,69,.5)
}

/* ===========================
   Admin Dashboard - Global
=========================== */

.admin-search-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: flex-end;
  background: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.admin-search-form div {
  display: flex;
  flex-direction: column;
}

.admin-search-form label {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.25rem;
}

.admin-search-form input,
.admin-search-form select {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
}

.admin-search-form button {
  align-self: flex-start;
  background-color: #b6062b;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.admin-search-form button:hover {
  background-color: #9a0525;
}
/* ===========================
   Dashboard - Cards & Stats
=========================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(182, 6, 43, 0.1);
}

.dashboard-card h3 {
  color: #b6062b;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.dashboard-card p {
  color: #666;
  font-size: 0.9rem;
}

.dashboard-activity {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dashboard-activity li {
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
}

.dashboard-activity li:last-child {
  border-bottom: none;
}

/* ===== WhatsApp Widget LNG Consulting ===== */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 55px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #20ba5a; }

.whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  font-family: "Inter", sans-serif;
  display: none;
  z-index: 999;
}
.whatsapp-chat.open { display: block; animation: fadeIn 0.3s ease; }

.chat-header {
  background-color: #b6062b; /* Couleur LNG */
  color: white;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.chat-header img { filter: brightness(0) invert(1); margin-right: 8px; }
.chat-header span { font-weight: 600; }

.chat-body { padding: 15px; }
.chat-body .welcome { font-size: 14px; color: #333; margin-bottom: 10px; }
.chat-btn {
  display: block;
  background-color: #25D366;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.chat-btn:hover { background-color: #20ba5a; }
.toggle { font-weight: bold; font-size: 18px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

