.page-id-19571 .wd-page-content{
    background-image: url("https://wingstopd.flexzyndev.com/wp-content/uploads/2025/08/flavor-bg.png") !important;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
	background-color: #000 !important;
}

/* Dual heat slider */
#heat-scale-range {
    margin: 15px 10px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg,
        green 0%,
        yellow 25%,
        orange 50%,
        red 100%);
    position: relative;
    border: 1px solid #fff;
}

/* Selected range overlay */
#heat-scale-range .ui-slider-range {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}

/* Slider handles */
#heat-scale-range .ui-slider-handle {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    top: -6px;
    cursor: pointer;
}
#heat-scale-range .ui-slider-handle:hover {
    border-color: #ff9000;
    box-shadow: 0 0 6px rgba(255,144,0,0.7);
}

/* ============================
   FLAVOUR FILTER SECTION
============================ */
.flavour-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #2b0802;
	border: 1px solid #5e4141;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    margin: 10px;
}

.flavour-filter-section h4 {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
	font-weight: bold !important;
    font-family: 'Roc Gortex Bold'!important;
	font-style: oblique;
}
.meal-range-slider-wrapper h4 {
    font-family: 'Roc Gortex Bold';
    text-transform: uppercase;
    font-size: 35px !important;
}
.meal-hungry-button-wrapper h4 {
    font-family: 'Roc Gortex Bold';
    text-transform: uppercase;
    font-size: 25px !important;
}
/* ----------------------------
   HEAT SCALE
---------------------------- */
.heat-scale-wrapper {
    flex: 1 1 60%;
    width: 75%;
    padding: 10px;
}

.heat-scale-wrapper input[type=range] {
    width: 100%;
    accent-color: red;
}

.heat-scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.85rem;
	font-weight: bold !important;
	font-family: 'Roc Gortex Bold' !important;
	font-style: oblique;
}

/* Custom range track */
.flavour-filter-section input[type=range] {
    -webkit-appearance: none;
}

.flavour-filter-section input[type=range]::-webkit-slider-runnable-track {
    height: 12px;
    border: 0.6px solid #fff;
    border-radius: 1.3px;
    background: linear-gradient(270deg,
        red 0,
        #ff9000 34.47%,
        #fff600 72.87%,
        #91fa00 100%);
    cursor: pointer;
}

/* Range thumb */
.flavour-filter-section input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -7px;
    width: 16px;
    height: 26px;
    border: 1px solid #000;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
}

/* ----------------------------
   FLAVOUR TYPE SWITCHES
---------------------------- */
.flavor-type-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    margin-bottom: 35px;
    font-size: 1.4rem;
}

.flavor-type-button-wrapper {
    width: 80% !important;
}

.flavor-type-button-wrapper .flavor-button-left,
.flavor-type-button-wrapper .flavor-button-right {
    display: flex;
    gap: 5px;
}

.flavor-button-left { float: left; }
.flavor-button-right { float: right; }

.flavor-type-button-wrapper label {
    font-size: 13px;
    font-weight: 800;
    font-family: FuturaStd, sans-serif;
    font-style: oblique;
    line-height: 14px;
    text-transform: uppercase;
    color: #fff;
}

/* Toggle switch */
.flavor-button-switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 10px;
}

.flavor-button-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Switch background */
.flavor-button-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #bcac45;
    transition: 0.4s;
    cursor: pointer;
}

/* Slider circle */
.flavor-button-slider:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 20px;
    height: 20px;
    background: #fff;
    transition: 0.4s;
}

/* Checked state */
.flavour-filter-section input:checked + .flavor-button-slider {
    background-color: #006938;
}

.flavour-filter-section input:focus + .flavor-button-slider {
    box-shadow: 0 0 1px #006938;
}

.flavour-filter-section input:checked + .flavor-button-slider:before {
    transform: translateX(26px);
}

/* Rounded version */
.flavor-button-slider.flavor-button-round {
    border-radius: 34px;
}
.flavor-button-slider.flavor-button-round:before {
    border-radius: 50%;
}

/* ============================
   FLAVOUR CARD GRID
============================ */
.flavour-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 10px !important;
}

.flavour-card {
    position: relative;
    padding: 35px 38px;
    text-align: center;
    border-radius: 10px;
    background-color: #2b0802;
    color: #fff;
}

.flavour-card img {
    max-width: 100px !important;
}

.flavour-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    font-weight: bold;
    font-style: oblique;
    text-transform: uppercase;
    color: #fff;
}

.flavour-card p {
    font-size: 16px;
    color: #fff;
}

/* Badge */
.flavour-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    font-size: 0.8rem;
    background: #eee;
    color: #000;
    border-radius: 20px;
}

/* Order button */
.flavour-btn-order {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: #007f2a;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.flavour-btn-order:hover {
    background: #0ca43f;
    color: #fff;
    text-decoration: none;
}

/* CTA button inside cards */
.flavour-card button {
    margin: 24px 8px 0;
    padding: 12px 16px 7px;
    font-size: 18px;
    font-weight: 900;
    font-style: oblique;
    text-transform: uppercase;
    font-family: 'Roc Gortex Bold'!important;
    color: #fff;
    background-color: #006938;
    border-color: #006938;
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 991px) {
    .flavour-filter-section {
        flex-direction: column;
    }
    .heat-scale-wrapper {
        width: 100%;
    }
    .flavor-type-wrapper {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .flavour-card-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 670px) {
    .flavor-type-wrapper {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .flavour-card-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 345px) {
    .flavors button {
        font-size: 14px;
    }
}