  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f3f3f3;
      color: #111;
    }

    header {
      background-color: #131921;
      padding: 10px 20px;
    }

    .top-bar {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      align-items: center;
      gap: 10px;
    }

    .top-bar img {
      height: 40px;
    }

    .top-bar .search-bar {
      display: flex;
    }

    .search-bar input {
      flex: 1;
      padding: 8px;
      font-size: 16px;
      border: none;
      border-radius: 4px 0 0 4px;
    }

    .search-bar button {
      padding: 8px 16px;
      background-color: #febd69;
      border: none;
      border-radius: 0 4px 4px 0;
      font-weight: bold;
      cursor: pointer;
    }

    .top-bar .profile {
      text-align: right;
      color: white;
      font-weight: bold;
    }

    nav {
      background-color: #232f3e;
      padding: 10px 0;
      text-align: center;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .container {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 15px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .product-card {
      background: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .product-card img {
     /* max-width: 100%;
      height: 200px;
      object-fit: contain;
      margin-bottom: 10px;*/

      width: 100%;
      height: 100%;
      max-height: 200px;
      object-fit: cover;
      border-radius: 6px;

    }

    .product-card h3 {
      font-size: 16px;
      margin: 10px 0;
    }

    /*.price {
      color: #B12704;
      font-size: 18px;
    }*/

    .price {
      font-size: 16px;
      margin-top: 5px;
    }

    .price .mrp {
      text-decoration: line-through;
      color: #777;
      margin-right: 8px;
      font-size: 14px;
    }

    .price .current {
      color: #B12704;
      font-weight: bold;
      font-size: 18px;
    }

    .discount {
      font-size: 14px;
      color: green;
    }

    .btn-group {
      margin-top: 10px;
    }

    .btn-group a,
    .btn-group button {
      padding: 8px 12px;
      margin: 5px 5px 0 0;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      text-decoration: none;
      display: inline-block;
    }

    .btn-view {
      background-color: #FF9900;
      color: white;
    }

    .btn-add {
      background-color: #007600;
      color: white;
    }

    .load-more {
      display: block;
      margin: 30px auto;
      padding: 10px 20px;
      background-color: #232f3e;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .product-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    footer {
      background-color: #131921;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .top-bar {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .search-bar {
        margin: 10px 0;
      }

      .top-bar .profile {
        text-align: center;
      }
    }

/*    contact form*/

.contact-form {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #232f3e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin: 10px auto 0;
}

.submit-btn:hover {
  background-color: #37475a;
}
   