body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #f4f6f8;
  color: #333;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background-color: #0d47a1;
  color: white;
  padding: 20px;
  text-align: center;
}

.store-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.nav a.active{
  background-color:white;
  color:#0d47a1;
  padding:6px 10px;
  border-radius:15px;
}

/* Main Layout */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

/* Cards */
.card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #e3f2fd;
}

/* Form */
input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #0d47a1;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #1565c0;
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: white;
  text-align: center;
  padding: 15px;
}

.welcome-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.welcome-text{
  flex:1;
}

.welcome-image img{
  width:1250px;
  max-width:100%;
  height:auto;
}

/* Products Grid like an e-commerce listing */
.products-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}

.product-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.product-image{
  height:160px;
  background:#f6f8fb;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.product-image img{
  max-height:100%;
  max-width:100%;
  object-fit:contain;
}

.product-body{
  padding:14px;
}

.product-title{
  margin:0 0 6px 0;
  font-size:18px;
}

.product-title a{
  color:#0d47a1;
  text-decoration:none;
}

.product-desc{
  margin:0 0 12px 0;
  color:#555;
  font-size:14px;
  line-height:1.4;
}

.product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.product-price{
  font-weight:700;
  font-size:18px;
}

.cart-icon{
  width:35px;
  height:35px;
  object-fit:contain;
  cursor:pointer;
}

.cart-icon:hover{
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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


