/* Privacy Policy Link Styling */
.privacy-policy-link {
  font-family: 'Jost', sans-serif !important;
  font-size: 12pt !important;
  font-weight: 600 !important;
  color: #3b5857 !important;
  text-decoration: none !important;
  letter-spacing: 1px !important;
  line-height: 1.6 !important;
  margin-top: 0 !important;
  display: inline-block;
  transition: color 0.3s ease;
  text-align: center;
  /* Center the link in the footer widget */
  width: 100%;
}

.privacy-policy-link:hover {
  color: #f1dec0 !important;
  text-decoration: none !important;
}

/* Popup Overlay */
.privacy-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center; /* Center content in the popup */
}

/* Popup Box */
.privacy-popup-content {
  background-color: #f1dec0;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  font-family: 'Jost', sans-serif;
  color: #3b5857;
  overflow-y: auto;
  max-height: 80vh;
}

/* Close Button */
.close-btn {
  position: fixed; /* Change from absolute to fixed */
  top: 20px; /* Position it above the popup */
  right: 20px; /* Move it to the right side */
  font-size: 24px;
  cursor: pointer;
  color: #3b5857;
  background-color: #f1dec0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10000; /* Ensure it appears above everything */
}

/* Text Styling */
.privacy-text h2, .privacy-text h3 {
  margin-top: 1.2rem;
  font-weight: 600;
}
.privacy-text p, .privacy-text ul {
  margin-bottom: 1rem;
  font-size: 14pt;
  line-height: 1.6;
}

/* Center Footer Widgets */
.footer-widget-privacy {
  text-align: center !important; /* Ensures everything is centered in the footer */
}

/* Mobile Adjustment for Footer Link */
@media (max-width: 768px) {
  .privacy-policy-link {
    text-align: center; /* Ensures it stays centered on mobile */
    display: inline-block;
    width: 100%;
  }
}




/* Popup Overlay */
.beer-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Popup Content Box */
.beer-popup-content {
  background-color: #f1dec0;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  font-family: 'Jost', sans-serif;
  color: #3b5857;
  text-align: center;
}

/* Title */
.beer-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 16pt;
  color: #3b5857;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Close Button */
.beer-close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 24px;
  cursor: pointer;
  color: #3b5857;
  background-color: #f1dec0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.beer-btn {
  display: block;
  background-color: #3b5857;
  color: #f1dec0;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 12pt;
  text-transform: uppercase;
  text-decoration: none !important;
  margin: 1.5rem auto;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.beer-btn:hover {
  background-color: #f1dec0;
  color: #3b5857;
  transform: scale(1.03);
  text-decoration: none !important;
}




/* ===========================
   Modern Times — Age Gate Styling
   =========================== */

/* Dropdown styling (Month / Day / Year) */
.age-gate .age-gate__select,
.age-gate .age-gate-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  background-color: #f1dec0 !important; /* MT gold background */
  color: #3b5857 !important;           /* Deep green text */
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-radius: 10px !important;

  padding: 12px 14px !important;
  padding-right: 40px !important; /* space for arrow */

  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;

  box-shadow: none !important;

  background-image:
    linear-gradient(to bottom, transparent 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233b5857' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px 18px !important;
}

/* Hover / focus states */
.age-gate .age-gate__select:hover,
.age-gate .age-gate-select:hover {
  border-color: rgba(0,0,0,0.3) !important;
}

.age-gate .age-gate__select:focus,
.age-gate .age-gate-select:focus {
  outline: none !important;
  border-color: #c39750 !important; /* MT bronze accent */
  box-shadow: 0 0 0 3px rgba(195,151,80,0.25) !important;
}

/* Placeholder option text */
.age-gate .age-gate__select option[disabled],
.age-gate .age-gate-select option[disabled] {
  color: rgba(0,0,0,0.5);
}



