
/* New Popup */
.age-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: #ffffff90;
  }
  .age-confirmation.hidden {
    display: none;
  }
  
  .age-confirmation .content {
    position: relative;
    background: #222;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 2;
    color: white;
  }
  .age-confirmation .content h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
  }
  .age-confirmation .content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .age-confirmation .content .dob {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 15px;
  }
  .age-confirmation .content .dob input {
    width: 100%;
    padding: .7rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    outline: none;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
  }
  .age-confirmation .content .dob input::placeholder {
    color: #fff;
  }
  .age-confirmation .content .actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .age-confirmation .content .actions button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .age-confirmation .content .actions button:hover {
    transform: scale(1.05);
  }
  .age-confirmation .content .actions button.cancel {
    background: #e53935;
    color: white;
  }
  .age-confirmation .content .actions button.cancel:hover {
    background: #c62828;
  }
  .age-confirmation .content .actions button.proceed {
    background: #43a047;
    color: white;
  }
  .age-confirmation .content .actions button.proceed:hover {
    background: #388e3c;
  }
  .age-confirmation .note {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: grey;
    margin-top: 1rem;
  }
  
  .toastr {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    opacity: 1;
    z-index: 99999;
    transition: opacity 0.5s;
  }
  .toastr.error {
    background: #e53935;
  }
  .toastr.success {
    background: #43a047;
  }
  .toastr.fade-out {
    opacity: 0;
  }
  

.category-text {
    padding: 8px 12px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}
.menu-header {
    margin: 12px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    position: relative;
}

.menu-header li {
    list-style: none;
    position: relative;
    white-space: nowrap; /* Prevent wrapping */
}

.menu-header li a {
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    transition: color 0.3s;
}

.menu-header li a:hover {
    color: #7641BA; /* Hover color for links */
}

/* Categories dropdown */
.menu-header .categories-list {
    display: none;
    position: absolute;
    top: 100%; /* Align below the menu item */
    left: 0;
    background: rgba(0, 0, 0, 0.9); /* Match dark theme */
    padding: 10px;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 10;
    white-space: nowrap; /* Prevent wrapping */
}

.menu-header li:hover > .categories-list {
    display: block;
}

/* Subcategories dropdown */
.menu-header .subcategories-list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Offset to the right of the category */
    background: rgba(0, 0, 0, 0.8); /* Slightly lighter for subcategories */
    padding: 10px;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 10;
    white-space: nowrap; /* Prevent wrapping */
}

.menu-header .category-item:hover > .subcategories-list {
    display: block;
}

/* Nested list items styling */
.menu-header .categories-list li,
.menu-header .subcategories-list li {
    margin: 5px 0;
}

.menu-header .categories-list li a,
.menu-header .subcategories-list li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    border-radius: 3px;
    transition: background 0.3s, color 0.3s;
}

.menu-header .categories-list li a:hover,
.menu-header .subcategories-list li a:hover {
    background: #7641BA; /* Background hover color */
    color: #fff;
}



.slider-img-block {
    background-color: transparent !important;
    text-align: center !important;
}
.slider-img-block img {
    height: 110px !important;
}

.form-select.new {
    background-color: transparent;
    color: #fff;
    outline: none;

}

.has-nice-select {
    width: auto;
    min-width: 200px;
    padding: 5px;
}

.custom-slider-nav {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    width: 70px;
}

#main-product-image {
    height: 300px;
}

.products-slider {
    display: flex;
    gap: 10px 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.products-slider .slider-img {
    width: 100px;
    height: 100px;
    padding: 4px;
}
.products-slider .slider-img.active {
    border: 1px solid #ff0;
}
.products-slider .slider-img img {
    width: 100%;
    height: 100%;
}
.flavours-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.flavours-table table {
    width: 100%;
    border: 1px solid #ddd;
}

.flavours-table th, .flavours-table td {
    text-align: left;
    padding: 10px;
    border: 1px solid #ddd;
}

.flavours-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}


.flavours-table input[type="number"] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #fff;
}

.header-text {
    background-color: #80808070;
    text-shadow: 0 0 7px rgba(0, 0, 0, 255);
    color: #fff;
    padding: 7px 8px;
    border-radius: 8px;
}


#search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* display: none;
     */
}

#search-suggestions div {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

#search-suggestions div:hover {
    background-color: #f0f0f0;
}

#search-suggestions .no-result {
    padding: 10px;
    font-style: italic;
    color: #777;
    text-align: center;
}


.single-brand {
    display: flex;
    font-size: 1rem;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    border-radius: 10px;
}
.single-brand img {
    width: 60px;
    height: 60px;
}
.big-font {
    font-size: 1.2rem;
    line-height: 32px;
}

.quantityBox {
    display: flex;
    align-items: center;
}

.quantity-btn {
    /* border: 1px solid #ccc; */
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    user-select: none;
}
.quantity-btn.increase {
    background-color: green;
}
.quantity-btn.decrease {
    background-color: red;
}
.quantity-btn.disabled {
    background-color: grey;
    /* pointer-events: none; */
    cursor: not-allowed;
}


.quantityBox input[type="number"] {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
}


.cartside-img {
    width: 100px;
    height: 100px;
    max-width: 100px !important;
}
.cartImage {
    width: 70px;
    height: 70px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
}