/* Reset */
.unique-reset * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Delivery */
.unique-delivery {
  background: #f9f9f9;
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Filter Buttons */
.unique-filters {
  text-align: center;
  margin: 25px 0 10px;
}

.unique-filters button {
  background: #fff;
  border: 2px solid #193153;
  color: #193153;
  padding: 8px 18px;
  margin: 6px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.unique-filters button:hover,
.unique-filters button.active {
  background: #f78a21;
  color: #193153;
}

/* Products Grid */
.unique-products {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
  padding: 30px;
  background: #f3e4e4;
}

/* Product Card */
.unique-product-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  min-height: 320px;
  /* fixed minimum height */
}

.unique-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Product Content */
.unique-product-content {
  flex-grow: 1;
  /* content grows, button stays fixed */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.unique-product-content img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}

.unique-product-content h3 {
  font-size: 1rem;
  margin: 5px 0;
  color: #333;
}

.unique-brand,
.unique-quantity {
  font-size: 0.9rem;
  color: #666;
  margin: 3px 0;
}

.unique-ratings {
  font-size: 0.9rem;
  color: #ffb400;
  margin: 5px 0;
}

.unique-price {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.unique-discount {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
  margin-left: 5px;
}

.unique-off {
  color: green;
  font-size: 0.85rem;
  margin-left: 5px;
}

/* Filter Bar - Sort By (compact version) */
.filter-bar1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* left side align */
  width: 250px;
  /* fixed smaller width */
  padding: 8px 12px;
  margin: 20px 0 20px auto;
  /* right side auto, left me align */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}


.filter-bar1 label {
  font-size: 0.85rem;
  color: #333;
  margin-right: 8px;
  font-weight: 500;
}

.filter-bar1 select {
  padding: 5px 10px;
  border: 2px solid #193153;
  border-radius: 6px;
  font-size: 0.85rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.filter-bar1 select:hover,
.filter-bar1 select:focus {
  border-color: #193153;
  outline: none;
}

/* Responsive Filter Bar */
@media (max-width: 900px) {
  .filter-bar1 {
    width: 180px;
    /* aur chhota on tablet */
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .filter-bar1 {
    width: 150px;
    /* mobile ke liye aur chhota */
    margin: 15px auto;
    justify-content: center;
    /* center on mobile */

   
    
  }
  
 

  .filter-bar1 label {
    font-size: 0.75rem;
  }

  .filter-bar1 select {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}


/* Add to Cart Button */
.unique-btn-cards {
  background: #9b287b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
  width: 100%;
  /* full width button */
  height: 40px;
  /* fixed height */
  flex-shrink: 0;
  /* button never shrinks */
  font-weight: 600;
  transition: 0.3s;
}

.unique-btn-cards:hover {
  background: #f78a21;
}


/* Responsive Grid */
@media (max-width: 900px) {
  .unique-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .unique-product-card {
    min-height: 300px;
  }

  .unique-product-content h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .unique-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .unique-product-card {
    padding: 10px;
    min-height: 260px;
  }

  .unique-product-content h3,
  .unique-brand,
  .unique-quantity,
  .unique-ratings,
  .unique-price {
    font-size: 0.75rem;
  }
}

/* Footer */
.unique-footer {
  background: linear-gradient(135deg, #193153, #d94f9c);
  color: #fff;
  padding: 60px 8% 30px;
  font-family: "Poppins", sans-serif;
}

.unique-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 30px;
}

.unique-footer-brand img {
  width: 60px;
  margin-bottom: 10px;
}

.unique-footer-brand h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd54f;
}

.unique-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #fce4ec;
}

.unique-footer-links h4,
.unique-footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd54f;
}

.unique-footer-links ul,
.unique-footer-contact ul {
  list-style: none;
}

.unique-footer-links li,
.unique-footer-contact li {
  margin: 8px 0;
}

.unique-footer-links a {
  text-decoration: none;
  color: #fce4ec;
  transition: 0.3s;
}

.unique-footer-links a:hover {
  color: #ffd54f;
  padding-left: 5px;
}

.unique-footer-contact li {
  font-size: 14px;
  color: #fce4ec;
}

.unique-footer-social a {
  display: inline-block;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px;
  border-radius: 50%;
  font-size: 15px;
  transition: 0.3s;
}

.unique-footer-social a:hover {
  background: #ffd54f;
  color: #193153;
  transform: translateY(-3px);
}

.unique-footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #fce4ec;
}

.unique-footer-bottom span {
  color: #ffd54f;
  font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .unique-footer {
    padding: 40px 5% 20px;
  }


  .unique-footer-brand img {
    width: 50px;
  }

  .unique-footer-brand h2 {
    font-size: 20px;
  }



  .unique-footer-links h4,
  .unique-footer-contact h4 {
    font-size: 16px;
  }

  .unique-footer-bottom {
    font-size: 12px;
  }
}