#jewellery-filter {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 10px;
  padding: 10px;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #aaa #222; /* Firefox thumb and track */
}

/* Webkit Browsers (Chrome, Safari, Edge) */
#jewellery-filter::-webkit-scrollbar {
  height: 6px;
}

#jewellery-filter::-webkit-scrollbar-track {
  background: #222; /* Track color */
}

#jewellery-filter::-webkit-scrollbar-thumb {
  background-color: #aaa; /* Scrollbar color */
  border-radius: 10px;
}

.filter-btn {
    margin: 5px;
    padding: 8px 15px;
    cursor: pointer;
    border: none;
    background: #01261C;
    color: #fff !important;
    font-size: 15px;
    border-radius: 8px;
}
.filter-btn.active {
    background: #000;
    color: #fff;
}
.jewellery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.jewellery-item {
    padding: 10px;
    width: 32%;
}

.jewellery-item {
    
    padding: 10px;
    display: flex;
}

div#jewellery-filter {
    display: flex;
    align-items: center;
    gap: 9px;
    
}

img.jewellery-image {
    border-radius: 15px !important;
}
#load-more-container {
    text-align: center;
    margin-top: 20px;
}
#load-more-btn {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}


/* Ensure pagination is horizontal and centered */
.pagination {
    display: flex;
    justify-content: center !Important;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.pagination-btn.active {
    background-color: #d4af37; /* Gold color for active page */
    color: #000;
}





@media (max-width: 767px) {
    .jewellery-item {
    padding: 0 !important;
    width: 100%;
}

  #jewellery-filter {
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    flex: 0 0 auto;
  }
}
