/* === Discover Your Style (category tiles) === */
.discover-style {
  background: #fff;
  padding: 60px 0 40px;
}

.discover-style__head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: 42px;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.discover-style__head p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* Tile card */
.style-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: box-shadow .25s ease, transform .2s ease;
  margin-bottom: 24px;
}
.style-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.style-card__media {
  position: relative;
  height: 260px; /* matches design */
  overflow: hidden;
}
@media (min-width: 1200px) {
  .style-card__media { height: 300px; } /* a touch taller on wide screens */
}

.style-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}
.style-card:hover .style-card__media img {
  transform: scale(1.08);
}

.style-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.40);
  transition: background .25s ease;
}
.style-card:hover .style-card__overlay { background: rgba(0,0,0,.60); }

.style-card__label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  pointer-events: none;
}

@media (max-width: 767px) {
  .style-card__media { height: 220px; }
  .style-card__label { font-size: 30px; }
}

.discover-style--bg {
  background-color: #F8F8F8; /* matches requested design */
}