/* Age Verification Popup Styles */
.age-verification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-verification-modal {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.age-verification-header {
  text-align: center;
  padding: 24px 24px 0 24px;
}

.age-verification-logo {
  max-height: 60px;
  width: auto;
}

.age-verification-body {
  padding: 20px 24px 8px 24px;
  text-align: center;
}

.age-verification-title {
  font-size: 22px;
  margin: 8px 0 8px;
  font-weight: normal;
  color: #111827;
}

.age-verification-desc {
  color: #4b5563;
  margin: 0;
}

.age-verification-actions {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
}

.age-verification-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.age-verification-btn-primary {
  background: #35492d;
  color: #fff;
}

.age-verification-btn-primary:hover {
  background: #2c3f26;
}

.age-verification-btn-secondary {
  background: #f3f4f6;
  color: #111827;
}

.age-verification-btn-secondary:hover {
  background: #e5e7eb;
}

.age-verification-footer {
  border-top: 1px solid #e5e7eb;
  padding: 14px 20px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.age-verification-footer a {
  color: #35492d;
  text-decoration: underline !important;
}

/* Focus styles for accessibility */
.age-verification-btn:focus {
  outline: 3px solid rgba(53,73,45,0.35);
  outline-offset: 2px;
}
body .age-verification-btn-primary:hover, 
body .age-verification-btn-secondary:hover
{
    background: #2c3f26;
    color: #fff;
}

@media only screen and (max-width: 767px){
	.age-verification-actions {
		flex-direction: column;
	}
}