body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
}

header h1 {
  font-family: 'Playfair Display', serif;
  color: #e63946;
}

.header-btns a,
.header-btns button {
  margin-left: 15px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: #e63946;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.product-card button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  background: #e63946;
  color: #fff;
  border: none;
}

.product-card {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

button {
  background: linear-gradient(135deg,#e63946,#f28482);
  border-radius: 30px;
}

header {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.checkout-box {
  background:#fff;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
}

.checkout-item {
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:10px;
}

.checkout-item img {
  width:60px;
  border-radius:8px;
}

.shipping-option {
  display:flex;
  align-items:center;
  border:1px solid #ddd;
  padding:15px;
  border-radius:10px;
  margin-bottom:10px;
  cursor:pointer;
}

.shipping-option input {
  margin-right:15px;
}

.payment-box img {
  max-width:100%;
  margin-top:10px;
}

.checkout-total {
  text-align:center;
  margin-top:30px;
}
.btn-add {
  display:inline-block;
  padding:10px 20px;
  background:#e63946;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
}
.admin-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  overflow:hidden;
}

.admin-table th {
  text-align:left;
  padding:14px;
  background:#f8f8f8;
}

.admin-table td {
  padding:14px;
  border-bottom:1px solid #eee;
}
.btn-edit {
  padding:6px 12px;
  background:#7c3aed;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  margin-right:6px;
}

.btn-delete {
  padding:6px 12px;
  background:#e63946;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
}
.btn-update {
  padding:8px 16px;
  background:#e63946;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}
.header-btns a,
.header-btns button {
  padding:10px 20px;
  border-radius:8px;
  background:#e63946;
  color:#fff;
  border:none;
  text-decoration:none;
  cursor:pointer;
}
.qty-box {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.qty-btn {
  padding:6px 12px;
  background:#e63946;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
}

.qty-box input {
  width:50px;
  text-align:center;
}
.checkout-box input,
.checkout-box textarea {
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:8px;
  border:1px solid #ddd;
}
.shipping-option {
  display:block;
  padding:15px;
  border:1px solid #ddd;
  border-radius:10px;
  margin-bottom:10px;
  cursor:pointer;
}
.shipping-option input {
  margin-right:10px;
}
.price-box {
  margin: 8px 0;
}

.old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.discount-badge {
  background: #e63946;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 6px;
}
.price-box {
  margin-top: 8px;
}

.old-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.new-price {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}


