/* =========================
   FX BOISSONS – PREMIUM UI
========================= */

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(900px 500px at 10% 0%, #e0f2fe, transparent 60%),
    radial-gradient(900px 500px at 90% 0%, #dcfce7, transparent 60%),
    radial-gradient(900px 500px at 50% 100%, #fee2e2, transparent 60%),
    #f8fafc;
  color:#0f172a;
}

/* ================= HEADER ================= */
.header{
  background:#fff;
  border-bottom:4px solid;
  border-image:linear-gradient(90deg,#2563eb,#22c55e,#ef4444) 1;
}
.header-inner{
  max-width:1200px;
  margin:auto;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{height:80px}
.header-contact{
  text-align:right;
  font-size:14px;
}
.header-contact a{
  color:#2563eb;
  font-weight:700;
  text-decoration:none;
}

/* ================= MAIN ================= */
.main{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px 60px;
}

/* ================= BUTTONS ================= */
.btn-primary{
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#2563eb,#22c55e);
  color:#fff;
  font-weight:800;
  border:none;
  cursor:pointer;
  text-decoration:none;
}
.btn-outline{
  padding:12px 22px;
  border-radius:999px;
  border:2px solid #2563eb;
  color:#2563eb;
  font-weight:800;
  text-decoration:none;
}
.btn-ghost{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid #cbd5e1;
  background:#fff;
  cursor:pointer;
}

/* ================= CATALOGUE ================= */
.catalogue{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.catalogue-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.filters{
  display:flex;
  gap:10px;
}
.filters select,
.filters input{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #cbd5e1;
}

/* ================= PRODUCTS ================= */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.product-card{
  background:#fff;
  border-radius:20px;
  padding:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.1);
  display:flex;
  flex-direction:column;
}

.product-image-wrapper{
  height:160px;
  background:#f8fafc;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-image{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.product-title{
  font-size:15px;
  font-weight:900;
  margin-top:10px;
}
.product-ref{
  font-size:11px;
  color:#64748b;
}
.product-desc{
  font-size:12px;
  color:#475569;
  margin-bottom:8px;
}

.product-qty{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:auto;
}
.product-qty input{
  width:80px;
  text-align:center;
  border-radius:999px;
  border:1px solid #cbd5e1;
  padding:6px;
}

.btn-add{
  margin-top:10px;
  padding:10px;
  border-radius:999px;
  background:linear-gradient(135deg,#2563eb,#22c55e);
  color:#fff;
  border:none;
  font-weight:800;
  cursor:pointer;
}

/* ================= CART ================= */
.cart{
  margin-top:40px;
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}
.cart-table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
}
.cart-table th,
.cart-table td{
  padding:10px;
  border:1px solid #e5e7eb;
  font-size:13px;
}
.cart-table th{
  background:#f1f5f9;
}
.btn-remove{
  background:#fee2e2;
  border:1px solid #fecaca;
  color:#b91c1c;
  border-radius:999px;
  padding:6px 10px;
  cursor:pointer;
}

/* ================= ORDER ================= */
.order{
  margin-top:40px;
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}
.form-row{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.form-group{
  flex:1;
}
label{
  font-size:13px;
  font-weight:700;
}
input,textarea{
  width:100%;
  padding:10px;
  border-radius:14px;
  border:1px solid #cbd5e1;
}

/* ================= FOOTER ================= */
.footer{
  text-align:center;
  padding:30px;
  font-size:13px;
  color:#64748b;
}


