/* Reset */

:root {
  /* Fonts */
  --font-primary: 'Manrope', sans-serif;
  --font-2:'Manrope', sans-serif;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Manrope', sans-serif; */
}

body {
  background: #fff;
}

.jewellery-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 20px;
  flex-wrap: wrap;
}

/* Left Side */
.left-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Filter Buttons */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 210px);
  gap: 15px;

}

.filter-grid button {
  background: #f8f1e5;
  border: 2px solid #f4e7d2;
  font-family: var(--font-primary);
  padding: 14px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  color: #333;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-grid button:hover {
  background: #660033;
  color: #fff;
}

/* Category Cards */
.category-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-card {
  text-align: center;
}

.category-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.category-card p {
  margin-top: 8px;
  font-size: 15px;
  color: #333;
}

/* Right Side */
.right-side img {
  width: 420px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .jewellery-layout {
    justify-content: center;
    text-align: center;
  }
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-row {
    justify-content: center;
  }
  .right-side img {
    width: 360px;
  }
}

@media (max-width: 768px) {
  .jewellery-layout {
    flex-direction: column;
    align-items: center;
  }
  .filter-grid {
    grid-template-columns: repeat(2, 210px);
  }
  .right-side img {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .filter-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .filter-grid button {
    width: 100%;
  }
  .category-row {
    justify-content: center;
    gap: 12px;
  }
  .category-card img {
    width: 100px;
    height: 100px;
  }
}
