.menu-button a {
    background-color: #0066cc; /* Adjust to match your site's brand colors */
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.menu-button a:hover {
    background-color: #004d99; /* Darker shade for hover effect */
}
/* Make WooCommerce Menu Cart Icon Bigger & More Visible */
.wpmenucart-contents {
    font-size: 20px !important;  /* Increase icon & text size */
    color: #E63946 !important;   /* Force red color */
    font-weight: bold;
    padding: 8px 12px !important; /* Adds spacing */
}

.wpmenucart-contents:hover {
    color: #ff4d4d !important;  /* Lighter red on hover */
}

.wpmenucart-icon-shopping-cart-0 {
    transform: scale(1.6) !important;  /* Force a larger cart icon */
}
/* Make 'Listen Now' Button Stand Out */
.listen-now-button {
    background-color: #E63946 !important; /* Bright Red */
    color: white !important; /* White text for contrast */
    font-size: 20px !important; /* Larger text */
    font-weight: bold;
    padding: 12px 24px !important; /* Bigger button */
    border-radius: 8px; /* Slightly rounded corners */
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* Hover Effect */
.listen-now-button:hover {
    background-color: #FF4D4D !important; /* Lighter red on hover */
    transform: scale(1.1); /* Slight zoom effect */
}
.crisis-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #ff0000;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  animation: pulse 2s infinite;
  transition: transform 0.2s ease-in-out;
}

.crisis-button:hover {
  transform: scale(1.05);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
/* General Form Text Color and Layout */
.wpforms-form {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}

/* Form Labels */
.wpforms-form label,
.wpforms-form .wpforms-field-label,
.wpforms-form .wpforms-field-sublabel,
.wpforms-form .wpforms-field-description {
    color: #ffffff !important;
    font-weight: 600;
}

/* Inputs, Textareas, and Dropdowns */
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form input[type=tel],
.wpforms-form select,
.wpforms-form textarea {
    background-color: #1c1c1c;
    color: #ffffff;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 4px;
}

/* Radio and Checkbox Styling */
.wpforms-form input[type=radio],
.wpforms-form input[type=checkbox] {
    accent-color: #e63946;
    transform: scale(1.2);
}

/* Other choice text box */
.wpforms-form input.wpforms-other-choice {
    background-color: #1c1c1c;
    color: #ffffff;
    border: 1px solid #444;
}

/* Section Headings */
.wpforms-form .wpforms-page-title,
.wpforms-form .wpforms-page-description,
.wpforms-form .wpforms-field .wpforms-field-label strong {
    font-size: 20px;
    font-weight: 700;
    color: #e63946;
    margin-top: 25px;
    display: block;
}

/* Submit Button */
.wpforms-submit {
    background-color: #e63946 !important;
    color: #ffffff !important;
    border: none;
    font-size: 16px;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.wpforms-submit:hover {
    background-color: #c72f3d !important;
}
/* Add spacing under section titles */
.wpforms-form h2,
.wpforms-form .wpforms-page-title {
    margin-bottom: 15px;
}
/* Tactical submit button enhancements */
.wpforms-submit {
    font-family: 'Oswald', sans-serif; /* Or replace with your site font */
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
