/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fffef7;
    color: #4b3b2b;
    min-height: 100vh;
  }
  
  /* Header */
  header {
    background-color: #d97904;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: white;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    user-select: none;
  }

 .tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff3d1; /* soft spice beige/gold */
  margin: 5px 20px;
  font-family: 'Segoe UI', sans-serif;
}
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s ease;
  }
  
  nav a:hover,
  nav a.active {
    color: #f6e27f;
  }
  
  /* Main content */
  main {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #a85f00;
    font-weight: 700;
    letter-spacing: 1.2px;
  }
  
  /* Product grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
  }
  
  /* Product card */
  .product-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .product-card h2 {
    margin: 15px 0 5px 0;
    color: #a85f00;
    font-weight: 700;
  }
  
  .product-card p {
    font-size: 1.1rem;
    color: #5a3e00;
    margin-bottom: 15px;
  }
  
  .add-to-cart {
    background-color: #d97904;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    user-select: none;
  }
  
  .add-to-cart:hover {
    background-color: #b46603;
  }
  
  .add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  /* Responsive */
  @media (max-width: 500px) {
    header {
      flex-direction: column;
      gap: 10px;
    }
    
    nav a {
      margin-left: 0;
      margin-right: 15px;
    }
  }
  

/*For about us page - styles */
.about-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-text h1 {
    font-size: 2rem;
    color: #4b2e00;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* For Contact Us page - style*/
/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fffdf3;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #f8b400;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Contact section */
.contact-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #b05d00;
}

.contact-container p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 1rem;
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 8px;
}

/* Form styling */
form label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #4b2e00;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 6px;
    font-size: 1rem;
    background-color: #fffaf0;
}

form button {
    margin-top: 25px;
    padding: 12px 25px;
    background: #f8b400;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #d18c00;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-container {
        padding: 25px;
    }

    .contact-container h1 {
        font-size: 2rem;
    }
}


form input,
form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 6px;
    font-size: 1rem;
    background-color: #fffaf0;
}

form button {
    margin-top: 25px;
    padding: 12px 25px;
    background: #f8b400;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #d18c00;
}

@media (max-width: 600px) {
    .contact-container {
        padding: 25px;
    }

    .contact-container h1 {
        font-size: 2rem;
    }
}
/* For cart page - styles*/

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fffdf3;
    margin: 0;
    padding: 0;
  }
  
  /* Header */
  header {
    background: #f8b400;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .navbar a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar a:hover {
    text-decoration: underline;
  }
  
  /* Cart */
  .cart-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .item-info {
    display: flex;
    align-items: center;
  }
  
  .item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
  }
  
  .item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .item-actions button {
    padding: 8px 12px;
    font-size: 1.2rem;
    background: #f8b400;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .item-actions button:hover {
    background: #d18c00;
  }
  
  .item-total {
    font-weight: bold;
    margin-left: 20px;
  }
  
  .remove-btn {
    background-color: #e74c3c;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
  }
  
  .remove-btn:hover {
    background-color: #c0392b;
  }
  
  .cart-summary {
    text-align: right;
    margin-top: 30px;
  }
  
  .checkout-btn {
    margin-top: 15px;
    padding: 12px 24px;
    background: #b05d00;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .checkout-btn:hover {
    background: #924800;
  }
  
  /* checkout-btn  */
  .checkout-button {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .checkout-button:hover {
    background-color: #218838;
  }
  