.nail-section {
  padding: 30px;
}

.nail-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  background-color: pink;
  color: rgb(255, 10, 92);
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content; 
  max-width: 100%;
  white-space: nowrap;
  font-size: 15px;
  margin: 0 auto;
  margin-bottom: 22px;
  font-weight: 700;
}

.pink-star-icon {
  width: 20px;
}

h4{
  margin-bottom: -12px;
}

.js-nail-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding:  30px 10px;
}

/* CARD */
.nail-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}


.nail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.nail-card:hover .Book-now{
  background-color: rgb(255, 10, 92);
  color: white;
}

/* IMAGE */
.nail-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.nail-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nail-card:hover .nail-image-container img {
  transform: scale(1.05);
}

/* INFO SECTION */
.nail-info {
  padding: 15px;
}

/* NAME + PRICE */
.nail-name-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.nail-name {
  font-size: 22px;
  font-weight: 700;
  color: rgb(19, 1, 68);
}

.nail-price {
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 10, 92);
}

/* DESCRIPTION */
.nail-description {
  font-size: 14px;
  color: rgb(100, 100, 100);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* BUTTON */
.Book-now {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: pink;
  color: rgb(255, 10, 92);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Book-now:hover {
  background-color: rgb(255, 10, 92);
  transform: translateY(-2px);
}

.nail-bottom-text{
  display: flex;
  align-items: center;
  gap:5px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 0;
  transition: all 0.4s ease;
}
.nail-bottom-text:hover{
  color: rgb(255, 10, 92);
}

@media (max-width: 600px) {
  .js-nail-container {
    grid-template-columns: 1fr;
  }
}