@import "_variables.scss";
/* Using a string */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

body {
    font-family: "Quicksand", sans-serif;
}

*,
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-weight: 700;
}

.z-1 {
    z-index: 1;
}

.top-bg {
    background: var(--blue-800);
}

.footer {
    background: var(--blue-800);
}

.footer .btn-outline-primary:hover {
    color: #ffffff;
}

.text-gray-50 {
    color: var(--gray-50);
}

.text-gray-100 {
    color: var(--gray-100);
}

.bg-gray-100 {
    background: var(--gray-100);
}

.border-gray-50 {
    border-color: var(--gray-50);
}

.fa-1x {
    font-size: 1.5em;
}

.container-form {
    max-width: 1024px;
}

.qty-count {
    top: -8px;
    left: 18px;
    height: 24px;
    width: 25px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.header-img {
    object-fit: cover;
    height: 350px;
    object-position: center;
}

.header-search {
    z-index: 1;
    position: relative;
}

.product-img img {
    object-fit: contain;
}

.package-product img {
    object-fit: cover;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 100;
}

/*** Spinner End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.addItemButton i,
.btn.addItemButton {
    transition: 0.5s;
}

.btn.addItemButton:hover {
    background: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn.addItemButton:hover i.text-primary {
    color: var(--bs-white) !important;
}

.global-search {
    gap: 15px;
}

/* Remove border & background */
.select2-container--default .select2-selection--single {
    border: none !important;
    background-color: transparent !important;
    height: auto !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    color: #333 !important;
    outline: none !important;
}

/* Remove focus outline */
.select2-container--default .select2-selection--single:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Hide dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

/* Style dropdown options */
.select2-dropdown {
    border: 1px solid #ccc !important;
    /* Add border only in dropdown */
    border-radius: 4px !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style the selected item */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px !important;
    color: #333 !important;
    padding: 0 !important;
}

.location-search {
    border: none;
    height: 100%;
    border-radius: 0px;
    padding: 5px;
    font-weight: bold;
    color: #333;
}

.location-search::placeholder {
    color: #333;
}

.location-search:focus-visible,
.location-search:focus {
    border: none;
}

.search-field label {
    left: 0px;
    top: 0px;
    font-size: 1em;
    font-weight: 400;
    color: #595959;
    text-transform: none;
}
#modifyOrder .search-field {
    border: none;
}

/* Increase radio button size */
.radio-field input[type="radio"] {
    width: 22px;
    height: 22px;
    appearance: none;
    /* Remove default styles */
    border: 2px solid #ccc;
    /* Default border */
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Add a custom checked effect */
.radio-field input[type="radio"]:checked {
    border-color: #ffc107;
    /* Yellow border when selected */
    background-color: #ffc107;
    /* Yellow background */
}

/* Inner circle effect */
.radio-field input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    /* White inner circle */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Label styling */
.radio-field label {
    font-size: 18px;
    /* Make text larger */
    margin-left: 10px;
    /* Add space between radio and label */
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

/* Change text color when selected */
.radio-field input[type="radio"]:checked+label {
    color: #ffc107;
}

.filters {
    max-width: 320px;
    padding: 24px 14px 24px 24px;
}

.filters ul {
    max-height: 62vh;
    overflow: auto;
    padding-right: 10px;
    height: 100vh;
}

.filters ul li {
    border: #dee2e6 solid 1px;
    border-radius: 4px;
    transition: 0.5s;
}

.filters ul li a {
    gap: 15px;
    padding: 6px;
}

.filters ul li a span {
    color: #333;
    font-weight: 500;
    transition: 0.5s;
}

.filters ul li.active,
.filters ul li:hover {
    border: #ffc107 solid 1px;
    background-color: #ffc107;
}

.filters ul li.active a span,
.filters ul li:hover a span {
    color: #000;
}

.modify-filters ul li a {
    gap: 15px;
    padding: 6px;
}
.modify-filters ul li a span {
    color: #333;
    font-weight: 500;
    transition: 0.5s;
}
.modify-filters {
    padding: 0px;
    width: 320px;
}
.modify-filters ul {
    max-height: calc(100vh - 323px);
    margin: 0px;
    overflow: auto;
    padding-right: 10px;
    height: 100vh;
}
.modify-filters ul li {
    background: #fff;

    border-radius: 4px;
    transition: 0.5s;
}
.modify-filters ul li.active, .modify-filters ul li:hover {
    background: #ffb524;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(255, 181, 36, 0.70) 100%);
}

.modify-filters ul li.active span, .modify-filters ul li:hover span {
    color: #000;
}

.modify-filters ul li .thumbnail-image {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex: none;
}
.modify-filters ul li .thumbnail-image .slider-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 6px;
}

.modify-filters ul li .thumbnail-image .slider-wrapper .slider-inner img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    flex-shrink: 0;
}

.modify-tabs li a.active {
    border-bottom: 1px solid #feb435 !important;
    color:#feb435 !important;
    background: #fff;
    border-radius: 6px 6px 0px 0px;
}
  @media (max-width: 768px) {
    .modify-tabs {
      padding: 0 !important;
      margin: 0 !important;
      display: flex !important;
    }


    .modify-tabs .nav-item a {
      padding-left: 12px !important;
      padding-right: 12px !important;
      text-align: center !important;
      width: 100% !important;
      display: block !important;
    }
  }

.vertical-container.home-vertical {
    max-height: calc(100vh - 258px);
}

.vertical-container.modify-vertical {
    max-height: calc(100vh - 266px);
}

.thumbnail-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex: none;
}

.thumbnail-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.bundles-filters ul li {
    display: flex;
}

.bundles-filters ul li a {
    padding: 7px 15px;
    color:#333;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.bundles-filters ul li:hover a {
   background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 181, 36, 0.70) 100%);
    border-color: #ffc107;
    transition: all 0.5s ease;
}

.bundles-filters ul li.active a {
   background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 181, 36, 0.70) 100%);
    color: #000;
    border-color: #ffc107;
    transition: all 0.5s ease;
}

@media (max-width: 1199px) {
    #navbarCollapse {
        position: fixed!important;
        display: block;
        height: 100vh;
        top: 0px;
        border-radius: 0px !important;
        width: 280px;
        right: 0;
        transform: translateX(100%);
        transition: all 0.5s ease !important; /* Smooth transition */
    }
    #navbarCollapse .navbar-nav {
        height: 100%;
    }
    #navbarCollapse.show {
        transform: translateX(0%);
    }
    #bundles-collapse.show .nav-overlay,
    #categories-collapse.show .nav-overlay,
    #navbarCollapse.show .nav-overlay {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
        display: block !important;
        cursor: pointer;
    }
    .close-nav {
        width: 28px;
        cursor: pointer;
    }
    body:has(#bundles-collapse.show),
    body:has(#categories-collapse.show),
    body:has(#navbarCollapse.show) {
        overflow: hidden;
    }

    .global-search {
        flex-wrap: wrap;
    }

    .location-field {
        border-right: none;
        border-bottom: #dee2e6 solid 1px;
        padding-bottom: 15px;
    }
    .custom-edit-modal .locationDiv {
        border-left: 0px !important;
    }
    .duration-field {
        border-bottom: #dee2e6 solid 1px;
        padding-bottom: 15px;
    }
    .event-field{
        border-top: #dee2e6 solid 1px;
        padding-top: 15px;
    }

    .start-date {
        width: auto;
        border-right: none;
        border-bottom: #dee2e6 solid 1px;
        padding-bottom: 15px;
    }
    .event-host-div,
    .option-div,
    .pickup-div,
    .location-div {
        width: auto;
        padding-bottom: 15px;
    }

    .end-date {
        width: calc(50% - 8px);
        border-right: none;
        border-bottom: #dee2e6 solid 1px;
    }

    .start-date input, .end-date input {
        width: 100%;
    }
    .bundles-filters {
        background-color: #fff;
    }
    #itemsSection .mobile-filters,
    #itemsSection .filters {
        border-radius: 0px!important;
        background-color: #f5f5f5 !important;
    }
    .bundles-filters,
    #itemsSection .mobile-filters,
    .filters {
        max-width: 100%;
        padding: 16px !important;
        margin-bottom: 15px;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 9999;
        height: calc(100vh - 0px);
        width: 320px;
        display: block!important;
        transform: translateX(100%);
        transition: all 0.5s ease !important;
    }
    .bundles-filters.show,
    #itemsSection .mobile-filters.show,
     .filters {
        transform: translateX(0%);
    }
    .bundles-filters ul {
         max-height: calc(100vh - 100px);
        overflow: auto;
    }
    #itemsSection .mobile-filters .modify-filters ul,
    .filters ul {
        padding-right: 10px;
        margin: 0px;
        flex-direction: column;
        max-height: calc(100vh - 140px);
    }
    .filters ul li:focus-within,
    .filters ul li:focus-visible {border: none;}
    .filters ul li {
        background: #fff;
        border: none;
    }

    .filters ul li a {
        padding: 6px 6px;
    }
    .filters .thumbnail-image {
        width: 40px;
        height: 40px;
    }
    .filters .slider-inner img {
        width: 44px;
        height: 44px;
    }
    #editModal .custom-edit-modal .search-field {
        border-right: 0px solid #dee2e6 !important;
    }
    #vertical-view.vertical-container {
        max-height: calc(100vh - 450px);
        padding-right: 15px!important;
    }
    #vertical-view.vertical-container.home-vertical {
        max-height: calc(100vh - 184px);
        padding-right: 10px!important;
        height: 100vh;
    }
    .modify-filters {
        width: 100%;
    }
    .modify-filters ul li {
        flex: 0 0 auto;
    width: auto !important;
    }
    .modify-filters ul {
        height: auto;
    }
    .bundles-filters ul li,
    .bundles-filters ul li a {
        width: 100%;
    }
    .bundles-filters ul li a {
        padding: 12px 15px;
        text-align: left;
    }
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
    z-index: 999;
    height: 116px;
}

body.modal-open .fixed-top {
    z-index: 1020 !important;
}

.flatpickr-calendar.open {
    z-index: 1060 !important;
}

.topbar {
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;

    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;

    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-primary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: 0.5s;
}

.navbar {
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-green);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .search-field {
        border-right: #dee2e6 solid 1px;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: 0.5s;
        opacity: 0;
    }
    .custom-edit-modal {
		max-width: 1200px;
		width: 100%;
	}
    .navbar {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: 0.5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, 0.8);
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1),
            rgba(248, 223, 173, 0.1)),
        url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7),
            rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.product-slider .border-primary.product-item {
    border-color: #e1e2e3 !important;
}

.page-header {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media (max-width: 992px) {

    /* .hero-header,
    .page-header {
        margin-top: 130px !important;
    } */
}

/*** Hero Header end ***/

/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary);
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--blue-800) !important;
}

/*** Single Page End ***/

/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-white) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}

/*** Footer End ***/
@media (max-width: 1199px) {
    .navbar {
        height: 64px;
        padding: 0px 15px;
    }
}

@media (max-width: 991px) {
    .header-img {
        height: 250px;
    }

    .product .owl-nav {
        position: relative;
        top: inherit;
        /* right: 0; */
        /* left: 0; */
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 30px;
    }

    .product .owl-nav .owl-next,
    .product .owl-nav .owl-prev {
        position: relative;
        right: 0px;
    }

    .product .owl-stage {
        margin-bottom: 30px;
    }

    .product-carousel {
        margin-bottom: 50px;
    }
}

.selected-location {
    border: 2px solid #FFC107 !important; /* Highlight border color */
    background-color: #FFF8E1 !important; /* Light yellow background */
    transition: all 0.3s ease !important; /* Smooth transition */
}

.selected-location input:checked {
    background-color: #FFC107;
    border-color: #FFC107;
}

/* Wave animation for the selected pin */
.wave-animation {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.5); /* Yellow with transparency */
    border-radius: 50%;
    animation: wave 1.5s infinite ease-out;
    pointer-events: none; /* Prevent interaction with the wave */
    transform: translate(-50%, -50%);
    z-index: -1; /* Place it behind the pin */
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.custom-underline:hover {
    text-decoration: underline !important;
}

.custom-h4 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333333 !important;
}

.fixed-event-info {
    /* margin-top: 116px !important; */
    padding: 0px !important;
    justify-content: center !important;
    display: flex !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    border-top: 1px solid #ced4da70;
    border-bottom: 1px solid #ced4da70;
    position: relative;
    z-index: -1;
}

.shadow-bottom {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

#mapModal .modal-dialog-scrollable {
    height: calc(90% - 3.5rem) !important;
    max-height: calc(90% - 3.5rem) !important;
    min-height: calc(90% - 3.5rem);
}

.balanced-text {
    text-wrap: balance;
}

.no-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.getDirectionsBtn:focus {
    box-shadow: none !important;
}

.eventInfoStaticBlock {
    position: relative;
    overflow: hidden;
}

/* .eventInfoStaticBlock:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    z-index: 1;
} */

/* Overlay badge container */
.edit-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* allows clicks to pass through */
}

.eventInfoStaticBlock:hover .edit-overlay {
    opacity: 1;
}

/* Badge styling */

.disabled,
.order-disabled {
    pointer-events: none !important;
    opacity: 0.65 !important;
}
#resendEmailLink {
    cursor: pointer;
    font-weight: bold;
}
#resendEmailLink:hover {
    text-decoration: underline;
}

.toast-top-right {
    top: 50px !important;
}

.card-title .product-name:hover {
    text-decoration: underline;
}

.map-wave-icon {
    position: relative;
    animation: pulse 2s infinite;
}

.map-wave-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 10px solid #FFC107;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: wave 2s infinite ease-out;
    z-index: -1;
}

.semibold-text {
  font-weight: 600 !important;
}

.custom-cursor-pointer {
	cursor: pointer !important;
}

@media (max-width: 575px) {
    #vertical-view.vertical-container.home-vertical {
		max-height: calc(100vh - 167px);
	}
}
