* {
  box-sizing: border-box;
}

.title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 40px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 0 40px 60px;
}

.card {
  text-align: center;
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-top: 5px;
  margin-bottom: 5px;
}

.qty-box {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.qty-box button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

.qty {
  font-weight: 600;
}
	
.product-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 12px;
}

.product-actions .btn {
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #000;
  color: #000;
  background: #fff;   
}

/* Click */
.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hover */
.btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
	
/* HERO CIRCULAR BADGES */
.hero-circles {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-circles .circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: white;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;

  background: #2b1a12;
   /* subtle contrast on image */
  backdrop-filter: blur(100px);  /* modern glass effect */
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .hero-circles {
    gap: 12px;
  }

  .hero-circles .circle {
    width: 72px;
    height: 72px;
    font-size: 10.5px;
    border-width: 1.5px;
  }
}
	
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2,1fr);
    padding: 0 20px;
  }
  
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
