/* ===== RESET BASE ===== */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

/* ===== GENERALI ===== */
body {
  background:#f5f5f5;
  display:flex;
  justify-content:center;
  padding:20px;
}

.container {
  width:100%;
  max-width:650px;
}

h1 {
  text-align:center;
  margin-bottom:20px;
  color:#d8235c;
}

p {
  margin:10px 0;
  text-align:center;
}

/* ===== CARD OFFERTE ===== */
.grid {
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
}

.card {
  background:white;
  border-radius:15px;
  padding:20px;
  box-shadow:0 3px 6px rgba(0,0,0,0.1);
}

.card h2 {
  color:#333;
  margin-bottom:6px;
}

.card p.price {
  font-size:1.4em;
  font-weight:bold;
  color:#d8235c;
  text-align:left;
}

.card p.price del {
  color:#999;
  font-size:0.9em;
}

/* ===== FORM ===== */
label {
  display:block;
  margin-top:10px;
  font-size:0.9em;
  font-weight:bold;
  color:#444;
}

input, select, textarea {
  width:100%;
  padding:10px;
  margin-top:5px;
  border-radius:8px;
  border:1px solid #ccc;
  background:#fafafa;
}

button {
  width:100%;
  margin-top:15px;
  background:#d8235c;
  border:none;
  padding:14px;
  color:white;
  font-weight:bold;
  border-radius:8px;
  font-size:1.1em;
  cursor:pointer;
}

button:hover {
  background:#b11f4f;
}

/* ===== ADMIN LINK ===== */
.admin-link {
  margin-top:40px;
  text-align:center;
}

.admin-link a {
  text-decoration:none;
  color:#d8235c;
  font-weight:bold;
  font-size:1.2em;
}

/* --- Mini brand logo --- */
.brand-logo{display:flex;align-items:center;gap:12px;justify-content:center;margin:10px 0 20px}
.brand-mark{width:44px;height:44px;border-radius:12px;background:linear-gradient(135deg,#d8235c,#ff7aa2);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;box-shadow:0 4px 12px rgba(216,35,92,.35)}
.brand-text{line-height:1}
.brand-text .big{font-weight:900;letter-spacing:.5px;font-size:20px;color:#222}
.brand-text small{font-size:12px;color:#777;letter-spacing:1px}

/* ===== LOGO BRAND ===== */
.brand-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:25px;
  font-family: 'Segoe UI', sans-serif;
}

.brand-mark{
  width:60px;
  height:60px;
  border-radius:50%;
  background:black;
  color:white;
  font-size:28px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-text .big{
  font-size:24px;
  font-weight:700;
  letter-spacing:1px;
}

.brand-text small{
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  display:block;
  margin-top:-4px;
}

