@charset "UTF-8";

.scent-container {padding: 20px 0;}
.scent-title {
    color: #393c41;
    font-size: 1.6rem;
    padding: 8px 0 8px 0;
    text-align: center;
    font-weight: 400;
}
.scent-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .scent-container {padding: 15px 0;}
  .scent-title {
    font-size: 1.6rem;
    padding: 10px;
  }

  .scent-wrapper {
    gap: 15px;
  }
}

.scent-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.scent-card:hover {
  opacity: .7;
}

.scent-card::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
@media (max-width: 768px) {
  .scent-card::after {
    right: 8px;
    width: 6px;
    height: 6px;
  }
}

.scent-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scent-card-info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.scent-card-title {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .scent-card-title {
    font-size: 12px;
  }
}
