
 
  @import url(https://fonts.googleapis.com/css?family=Roboto);


 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
     font-family: 'Segoe UI', sans-serif; 
      background-color: #d6d1d1  !important;
    }

    header {
      text-align: center; 
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 30px 20px;
    }

    .category-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

    .category-card img {
      width: 100%; 
      object-fit: cover;
    }

    .category-card h3 {
      padding: 15px;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: center;
    }
    .product-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 50px auto;
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

  

    .product-details {
      flex: 1 1 500px;
      padding: 40px;
    }

    .product-title {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .product-price {
      font-size: 24px;
      color: #e91e63;
      margin-bottom: 20px;
    }

    .product-description {
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .product-specs {
      margin-bottom: 30px;
    }

    .product-specs h4 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .product-specs ul {
      padding-left: 20px;
    }

    .product-specs li {
      margin-bottom: 5px;
    }

    .buttons {
      display: flex;
      gap: 15px;
    }

    .buttons button {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .add-to-cart {
      background-color: #2196f3;
      color: #fff;
    }

    .buy-now {
      background-color: #4caf50;
      color: #fff;
    }

    @media (max-width: 768px) {
      .product-container {
        flex-direction: column;
      }

      .product-image, .product-details {
        flex: 1 1 100%;
      }
    }


/****** LOGIN MODAL ******/
.loginmodal-container {
  padding: 30px;
  max-width: 100%;
  width: 100% !important;
  background-color: #353535;
  margin: 0 auto;
  border-radius: 2px; 
  overflow: hidden;
  font-family: roboto;
}

.loginmodal-container h1 {
  text-align: center;
  font-size: 1.8em;
  font-family: roboto;
}

.loginmodal-container input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.loginmodal-container input[type=text], input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.loginmodal-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loginmodal {
  text-align: center;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.loginmodal-submit {
  /* border: 1px solid #3079ed; */
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #983e3c;
  padding: 17px 0px;
  font-family: roboto;
  font-size: 14px;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.loginmodal-submit:hover {
  /* border: 1px solid #2f5bb7; */
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
} 

.login-help{
  font-size: 12px;
}



.product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 5px;
      margin-bottom: 20px;
    }

    .product-card {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-image {
      width: 100%;
      height: auto;
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .product-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .product-name {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      flex-grow: 1;
    }

    .product-price {
      color: #e91e63;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .add-to-cart {
      padding: 10px;
      background-color: #4caf50;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s;
    }

    .add-to-cart:hover {
      background-color: #43a047;
    }


    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      padding: 10px 16px;
      margin-right: 10px;
      margin-left: 10px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      font-size: 14px;
    }

    .breadcrumb li {
      display: flex;
      align-items: center;
      color: #007bff;
    }

    .breadcrumb li + li::before {
      content: "›";
      margin: 0 10px;
      color: #888;
    }

    .breadcrumb li a {
      text-decoration: none;
      color: #007bff;
    }

    .breadcrumb li a:hover {
      text-decoration: underline;
    }

    .breadcrumb li.active {
      color: #333;
      pointer-events: none;
    }