/* Force Add to Cart text white */
.single_add_to_cart_button,
.single_add_to_cart_button.elementor-button,
button.single_add_to_cart_button,
.woocommerce div.product form.cart button.single_add_to_cart_button {
  color: #fff !important;
}

.ticket-card {
    background-color: #113A4d;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    font-family: sans-serif;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}
#ticket_price{color:#76e0f0}
.cart-total .woocommerce-Price-amount{color:#76e0f0}
.slider-container{margin-bottom: 20px;}

.control-btn.slider-minus,
.control-btn.slider-plus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: #76e0f0 !important;
    color: #113A4d !important;

    border: none !important;
    box-shadow: none !important;

    width: 40px !important;
    height: 40px !important;

    border-radius: 8px !important;

    font-size: 46px !important;
    font-weight: bold !important;
    line-height: 0 !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0;
	box-sizing: border-box;
    vertical-align: middle;

}
.control-btn.slider-minus{
	padding-bottom: 8px !important;
}


.control-btn.slider-minus:hover,
.control-btn.slider-plus:hover {
    background-color: #5cd6eb !important;
}


.button-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.control-btn:hover {
    transform: scale(0.95);
}

#ticket_qty_slider {
    -webkit-appearance: none;
    appearance: none;
    flex-grow: 1;
    height: 16px;
    background: #ffffff;
    border-radius: 5px;
    outline: none;
}

#ticket_qty_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    background: url('shark-thumb-2.webp') no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
    margin-top: 3px !important;
}

#ticket_qty_slider::-moz-range-thumb {
    width: 50px;
    height: 50px;
    background: url('shark-thumb-2.webp') no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
	/*transform: translateY(3px);*/
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.presets {
    display: flex;
    gap: 8px;
}

.preset-btn {
    background: transparent;
    border: 1px solid #76e0f0;
    color: #fff;
    padding: 0px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    min-width: 50px;
	font-size: 24px;
	text-align: center;
	transition: background 0.3s, border-width 0.3s;
}

.preset-btn:hover {
	border-color: #76e0f0;
	background-color: #76e0f0;
	color: #113A4d;
}

/* WooCommerce Add to Cart gumb */
.single_add_to_cart_button {
    background-color: #76e0f0 !important;
    color: #113A4d !important;
    border: 1px solid #113A4d;
    padding: 1px 10px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    cursor: pointer;
	font-size: 24px !important;
	text-align: center;
	transition: background 0.3s, border-width 0.3s;
	line-height: inherit !important;
}

.single_add_to_cart_button:hover {
    background-color: #5cd6eb !important;
}

/* Mobile Sticky Styling */
@media (max-width: 768px) {
    body {
        /* Add padding to the bottom of the body so content isn't hidden behind the sticky card */
        padding-bottom: 250px;
    }

    .ticket-card {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%; /* Overrides any previous max-width */
        border-radius: 12px 12px 0 0; /* Rounds only top corners */
        z-index: 9999; /* Ensures it stays above all other elements */
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
        padding: 15px;
        box-sizing: border-box;
		border-top: 5px solid #76e0f0;
    }

    /* Adjusting the layout for tighter mobile screens */
    .button-slider {
        gap: 8px;
    }

    .control-btn.slider-minus,
    .control-btn.slider-plus {
        width: 50px !important; /* Slightly smaller buttons on mobile */
        height: 40px !important;
    }

    .presets {
        gap: 5px;
    }

    .preset-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .single_add_to_cart_button {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
}
