.page-id-19508 .wd-page-content{
	background-color: #d0ccac !important;
}

/* =========================
   Meal Slider Section
========================= */
.meal-slider-section {
    text-align: center;
}

.meal-range-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.meal-range-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: 2px solid #6b663e !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
       
}

/* =========================
   Range Input Styles
========================= */
.meal-range-container {
    position: relative;
    width: 60%;
}

#crewRange {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #a89f60;
    border-radius: 5px;
    outline: none;
}

/* Hide default thumb (Webkit + Firefox) */
#crewRange::-webkit-slider-thumb,
#crewRange::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Custom Thumb Overlay */
.meal-thumb-value {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ccc;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* =========================
   Hungry Button Section
========================= */
.meal-hungry-button-wrapper {
    width: 80%;
    display: inline-block;
    margin-top: 20px;
}

.meal-hunger-buttons {
    display: flex;
    margin-top: 10px;
}

.meal-hunger-btn {
    flex: 1;
    padding: 10px !important;
    border: 1px solid #827c48 !important;
    background: transparent !important;
    cursor: pointer !important;
}

.meal-hunger-btn.active {
    background: #556b2f !important;
    color: #fff !important;
}

/* =========================
   Run Button Section
========================= */
.meal-run-wrapper {
    margin-top: 25px;
}

#meal-run-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0.65rem 2rem;
    font-size: 25px;
    font-weight: 900;
  
    font-style: oblique;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background-color: #006938;
    border-color: #006938;
    color: #fff;
    position: relative;
    font-family: 'Roc Gortex Bold';
    letter-spacing: 2px;
}

/* =========================
   Meal Results Section
========================= */
#meal-results{
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  grid-template-rows: auto;
  gap: 10px;
  width: 100%;
  padding: 10px;
  position: relative;
  background-color: transparent;
  border-radius: 0.25rem;
  margin: 20px 0 !important;
}

/* put the two items in columns 2 and 3 (center) */
#meal-results > :nth-child(1) { grid-column: 2; }
#meal-results > :nth-child(2) { grid-column: 3; }

/* optional: reset on mobile */
@media (max-width: 768px){
  #meal-results { grid-template-columns: 1fr; }
  #meal-results > :nth-child(1),
  #meal-results > :nth-child(2){ grid-column: auto; }
}
.meal-card {
    display: flex;
    flex-direction: column;      /* stack content vertically */
    justify-content: space-between; /* spread content so button stays at bottom */
    align-items: center;       
    grid-template-columns: 120px auto 120px;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    padding-bottom: 30px;
    border: 1px solid #ddd;
	border-radius: 5px !important;
	background-color: #fff;
}

.meal-card-content {
    text-align: center;
}
.meal-card-content h3 {
background-color: #006938;
    font-family: 'Roc Gortex Bold';
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    color:#fff;
        padding-top: 6px;
    padding-bottom: 4px;

}

.meal-card-content p {
    padding: 0 20px 0 20px;
    font-family: "roc 4", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 1px;
    color: #3A3A3A;
}

.meal-card img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  object-position: center;
  display: block; 
}


.meal-card-btn { 
	background-color: var(--e-global-color-primary); 
	font-family: "Roc Gortex Bold", Sans-serif; 
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 3px; 
	color: #fff;
	display: inline-block;
	font-size: 16px; 
	line-height: 1; 
	padding: 12px 24px; 
	fill: #fff; 
	text-align: 
	center; transition: all .3s; 
/* 	margin-left: 35%!important; */
}

.meal-card-btn:hover {
    background: #027740;
    color: #fff;
}

.meal-range-slider-wrapper h4{
	font-size:2rem !important;
}