/* -- OVER 18 POP UP WINDOW  --  */
.av-hidden {
  display: none !important;
}

#av-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(222, 179, 126, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.av-modal-box {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 24rem;
  width: 91.666667%;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.av-modal-box:hover {
  transform: scale(1.01);
}

@media (min-width: 640px) {
  .av-modal-box {
    padding: 2.5rem;
  }
}

.av-icon {
  height: 3rem;
  width: 3rem;
  color: var(--av-color-red);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.av-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--av-color-text-dark);
  margin-bottom: 0.5rem;
}
.av-subtitle {
  color: var(--av-color-text-medium);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .av-title {
    font-size: 1.5rem;
  }
}

.av-button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .av-button-group {
    flex-direction: row;
  }
}

.av-button {
  flex-grow: 1;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
}
.av-button:hover {
  transform: scale(1.03);
}
.av-button:focus {
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.5);
}

.av-button-primary {
  background-color: var(--av-color-primary);
  color: white;
}
.av-button-primary:hover {
  background-color: var(--av-color-primary-dark);
}

.av-button-secondary {
  background-color: #f9fafb;
  color: #1f2937;
  border: 1px solid #d1d5db;
}
.av-button-secondary:hover {
  background-color: #f3f4f6;
}

#av-page-content {
  min-height: 100vh;
  padding: 2rem;
  color: var(--av-color-text-dark);
}

.av-header {
  background-color: var(--av-color-primary);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  margin-bottom: 2rem;
}
.av-header h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.av-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .av-container {
    padding: 2rem;
  }
}

.av-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.av-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.av-card p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.av-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .av-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.av-grid-item {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}
.av-grid-item h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #374151;
}
.av-grid-item p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.av-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

 
#agegate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #deb37e;
  opacity: 1;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.agegate-modal {
  background-color: #ffffff;
  color: #000000;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  width: 400px;
  text-align: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .agegate-modal {
    padding: 2rem 1.5rem;
    width: 95%;
  }
}

.agegate-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000;
}

.agegate-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.agegate-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-transform: uppercase;
}

.agegate-btn:active {
  transform: scale(0.98);
}

#agegate-btn-over {
  background-color: #4caf50;
  color: white;
}

#agegate-btn-over:hover {
  background-color: #43a047;
}

#agegate-btn-under {
  background-color: #f44336;
  color: white;
}

#agegate-btn-under:hover {
  background-color: #d32f2f;
}

#agegate-main-content {
  padding: 20px;
}

.agegate-content-placeholder {
  max-width: 800px;
  margin: 40px auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* --- END OF AGE VERIFICATION POP-UP --- */