body {
  background-color: #FFFFF0 !important;
  color: #2d2520;
}

.container {
  max-width: 1400px;
  background-color: transparent;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.category-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 160px;
  /* max-width: 200px;
  min-width: 160px; */
  height: 56px;
  padding: 8px 14px;
  background: #FFFFF0;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #8B0000;
  cursor: pointer;
  box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-tab img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.category-tab .arrow {
  width: 14px;
  height: 14px;
  background-image: url("../../public/images/gold-jewellery/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.category-tab.active {
     background: linear-gradient(180deg, #8b1d1d, #761616);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(139, 29, 29, 0. 18);
    text-decoration: none;
}

.category-tab.active .arrow {
  background-image: url("../../public/images/gold-jewellery/arrow-white.svg");
}

.category-tab .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background-image: url("../../public/images/gold-jewellery/arrow.svg");
  /* ✅ your arrow path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.category-tab.active .arrow {
  background-image: url('../../public/images/gold-jewellery/arrow-white.svg');
  /* or same file if not needed */
}

.category-tab .arrow::before {
  content: none !important;
}

.product-card {
  border-radius: 22px;
  padding: 10.365px 10.365px 20.73px 10.365px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 200px;
  border: 1.037px solid var(--LIGHT-GREY, #F6F6F6);
  background: #FFFFF0;
  box-shadow: 8.292px 8.292px 8.292px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
}

.product-image {
  border-radius: 16px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image img {
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: flex-start;
}

.product-title {
  font-weight: 600;
  margin: 6px 0 4px;
  color: var(--DARK-BLACK, #424242);
  text-align: center;
  font-size: 18px;
}

.product-rating {
  color: #f0b429;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  gap: 4px;
  align-items: center;
      padding-left: 11px;
}

.product-price {
  font-weight: 600;
  color: var(--DARK-BLACK, #424242);
  font-size: 1.50rem;
  margin-top: 6px;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-card:hover {
  transform: translateY(-6px);
  transition: transform .16s ease;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.08);
}

.category-tabs+.row {
  margin-top: 40px !important;
}

.row.g-4 {
  margin-bottom: 60px !important;
}

@media (max-width: 576px) {
  .category-tabs {
    gap: 12px;
    padding: 0 12px;
    justify-content: space-between !important
  }

  .category-tab {
    box-sizing: border-box;
    flex: 0 0 calc(50% - 6px) !important;
    min-height: 56px !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    border-radius: 12px !important;
    white-space: nowrap;
    overflow: hidden
  }

  .category-tab img {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    border-radius: 50% !important;
    margin-left: 2px !important;
    margin-right: 8px !important;
    object-fit: cover
  }

  .category-tab span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 36px - 28px)
  }

  .category-tab .arrow {
    margin-left: auto;
    margin-right: 6px;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    line-height: 0;
    background-image: url('./public/images/gold-jewellery/arrow.svg') !important
  }

  .category-tab.active .arrow {
    background-image: url('./public/images/gold-jewellery/arrow-white.svg') !important
  }

  .category-tab:hover {
    transform: none !important
  }

  .category-tab.active {
    box-shadow: 0 8px 18px rgba(139, 29, 29, 0.12) !important
  }

  @media (max-width:360px) {
    .category-tab {
      min-height: 52px !important;
      padding: 8px 10px !important
    }

    .category-tab img {
      width: 30px !important;
      height: 30px !important;
      flex: 0 0 30px !important
    }

    .category-tab .arrow {
      width: 16px !important;
      height: 16px !important;
      flex: 0 0 16px !important
    }
  }
}

@media (max-width: 576px) {
  .product-image {
    height: 220px;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .product-card {
    padding-bottom: 18px;
  }
}

/* --- Mobile: 2 per row --- */
@media (max-width: 768px) {
  .category-tabs {
    gap: 12px;
    
    justify-content: space-between;
  }

  .category-tab {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    max-width: none;
    height: 60px;
  }
}

@media(max-width:576px) {
  .product-card {
    padding: 100x;
    min-height: auto;
  }

  .product-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .product-rating {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .product-title,
  .product-price {
    text-align: center;
    width: 100%;
  }
}