/* Age Verification Modal Styles */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.age-modal-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(76, 95, 69, 0.3) 0%, 
    rgba(95, 119, 87, 0.4) 50%, 
    rgba(76, 95, 69, 0.3) 100%);
  clip-path: polygon(
    20% 0%, 
    80% 0%, 
    100% 15%, 
    100% 85%, 
    80% 100%, 
    20% 100%, 
    0% 85%, 
    0% 15%
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  animation: bottleGlow 3s ease-in-out infinite;
}

@keyframes bottleGlow {
  0%, 100% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      inset 0 0 50px rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow: 
      0 20px 80px rgba(76, 95, 69, 0.6),
      inset 0 0 60px rgba(255, 255, 255, 0.1);
  }
}

.age-modal-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  color: white;
}

.age-modal-text h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 15px 50px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.age-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.age-btn:hover::before {
  width: 300px;
  height: 300px;
}

.age-btn-yes {
  border-color: #fff;
  background: rgba(76, 95, 69, 0.3);
}

.age-btn-yes:hover {
  background: rgba(76, 95, 69, 0.6);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76, 95, 69, 0.4);
}

.age-btn-no {
  border-color: rgba(255, 255, 255, 0.6);
}

.age-btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .age-modal-content {
    height: 350px;
  }
  
  .age-modal-text h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .age-modal-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .age-btn {
    padding: 12px 40px;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .age-modal-text {
    padding: 20px;
  }
  
  .age-modal-text h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .age-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
}