/* styles/exclusive.css */
#exclusive {
  padding: 6rem 2rem;
  background: #000;
  color: #fff;
  text-align: center;
}

.exclusive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#exclusive h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

#exclusive p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.exclusive-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.exclusive-card {
  background: #111;
  border: 2px solid #fff;
  border-radius: 8px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.exclusive-card:not(.locked):hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.exclusive-card.locked:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* Locked card styling */
.exclusive-card.locked {
  filter: grayscale(0.7);
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.locked:hover .lock-overlay {
  opacity: 1;
}

.lock-overlay .lock-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  animation: floatIcon 2s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.exclusive-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.exclusive-details {
  margin-top: 1rem;
}

.exclusive-details h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.exclusive-details p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.exclusive-card .cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.exclusive-card .cta-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #exclusive .exclusive-container {
    text-align: center;
    padding: 0 1rem;
  }
  #exclusive .exclusive-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #exclusive .exclusive-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  #exclusive h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
