/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://needgrass.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom CSS goes here */
#ageGateOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ageGateModal {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.ageGateModal p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ageGateModal h3 {
  font-weight: 700;
  margin: 20px 0;
  color: #000;
}

.ageGateButtons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

#ageGateYes, #ageGateNo {
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}

#ageGateYes {
  background-color: #2e8b57; /* Green */
}

#ageGateYes:hover {
  background-color: #1e6b40;
}

#ageGateNo {
  background-color: #a04900; /* Brownish orange */
}

#ageGateNo:hover {
  background-color: #7a3500;
}

/* Inline product meta styling */
.product-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center; /* center align under title */
  align-items: center;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
}


//
.checkout-product-with-image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-product-with-image img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
}

.checkout-name {
  display: inline-block;
  font-weight: 500;
}

