/* MAIN CSS */
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.checkbox-sf {
    background-color: #ffffff;
    border-color: #de3c4b;
    border-radius: 50%!important;
    border-width: 2px;
}

.link {
    color: #de3c4b;
    text-decoration: underline;
}

.checkbox-sf:checked {
    background-color: #de3c4b!important;
    border-color: #de3c4b!important;
}

/*PRELOADER*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.2s ease;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #de3c4b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* HOMEPAGE */
/* homepage splash */
.homepage-splash {
    height: calc(100vh - 80px);
}

/* progress bar */
.progress {
    height: 6px;
    border-radius: 3px;
}

.progress .progress-bar {
    background-color: #de3c4b;
    border-radius: 3px;
}

/* cart dot */
.link-button .cart-dot {
    height: 8px;
    width: 8px;
    background-color: #de3c4b;
    right: -5px;
    top: -5px;
    border-radius: 4px;
}

/* Error Landing */
.error-landing {
    height: 100vh;
    width: 100%;
}

.error-landing h1 {
    font-size: 3rem;
}

.error-landing .sub {
    font-size: 1.5rem;
}

.error-landing .text {
    width: 400px;
    text-align: center;
}

/* image-box-v */
.image-box-v {
    position: absolute;
    z-index: 30;
}

/* reviews */
/* Hide the radio buttons */
.star-input {
    display: none;
}

/* Style the stars */
.star-label i {
    font-size: 30px;
    color: #ccc; /* Default color (gray) */
    cursor: pointer;
    transition: color 0.3s ease;
}

/* When the radio button is checked, color the selected star */
.star-input:checked + .star-label i {
    color: #de3c4b; /* Red color for the selected star */
}

/* Hover effect: Change color to red when hovered over */
.star-label:hover i {
    color: #de3c4b;
}

/* review result */
.review-result .pill-number {
    background-color: #de3c4b;
    padding: 4px 10px;
    border-radius: 10px;
    color: white;
}

/* cart */
.cart .icon {
    text-align: center;
}

.cart .icon i {
    font-size: 2rem;
    color: #de3c4b;
}

/* mod container */
.mod-container .form-check-input {
    background-color: #ffffff;
    border-color: #de3c4b;
    border-radius: 50%;
    border-width: 2px;
}

.mod-container .form-check-input:checked {
    background-color: #de3c4b;
    border-color: #de3c4b;
}

/* s1 - locations */
.s1-locations {
    transition: opacity 0.3s ease-in-out, max-height 0.5s ease-in-out; /* Transition on opacity and max-height */
}
