/* Sticky Navbar  */
/* .stickyheaders {
    position: absolute;
    top: 0;
    background-color: transparent !important;
	background-image: linear-gradient(180deg, #0000009e, #0000004a);
    z-index: 3
}

.stickyheaders.navbar-fixed-sticky .top-header .label label[for='location']{
    display: none;
}

.stickyheaders.navbar-fixed-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: 5px 0 !important;
    animation: slideDown 1s ease-out;
    background-color: #fff !important;
	background-image: none !important;
    box-shadow: 0px 4px 14px 7px rgb(0 0 0 / 10%);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.stickyheaders.navbar-fixed-sticky .wpr-nav-menu .menu-item .wpr-menu-item {
    color: #000;
}
.stickyheaders.navbar-fixed-sticky .wpr-nav-menu .wpr-menu-item {
    color: #000 !important;
}
.stickyheaders.navbar-fixed-sticky .wpr-nav-menu .wpr-menu-item.wpr-active-menu-item {
    color: #FCC122 !important;
}
.stickyheaders.navbar-fixed-sticky ul.elementor-icon-list-items li.elementor-icon-list-item .elementor-icon-list-text {
    color: #000
}
.stickyheaders.navbar-fixed-sticky .sub-heading-logo h2.elementor-heading-title {
      color: #FCC122 !important;
} */
/* Contact Us Form  */
/* .form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.form-container .form-section {
    margin-bottom: 16px;
}
.form-container .form-section p{
    margin: 0;
}
.form-container .form-section p br {
    display: none;
}
.form-container .form-section .fields-cols {
    display: flex;
    gap: 1rem;
}

.form-container .form-section .fields-cols .col {
    flex: 1;
    position: relative;
}

.form-container .form-section .main-label {
    display: block;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.form-container .form-section .sub-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    padding-left: 2px;
}

.form-container .form-section .form-input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: #fff;
    font-size: 0.875rem;
}

.form-container .form-section .form-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-container .form-section .form-textarea {
    width: 100%;
    height: 120px;
    padding: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    resize: vertical;
    font-size: 0.875rem;
}

.form-container .submit-btn {
    padding: 0.875rem 1.5rem;
    background-color: #caab68;
    color: white;
    border: none;
    border-radius: 0.275rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-container .submit-btn:hover {
    background-color: #fff;
    color: #caab68;
}
@media (max-width: 640px) {
   .form-container .form-section .fields-cols {
        flex-direction: column;
    }

    .form-container {
        padding: 1rem;
    }
}
.form-input:focus,
.form-textarea:focus,
.form-input:hover,
.form-textarea:hover {
    outline: none;
    border-color: #caab68;
    box-shadow:unset;
}

.required {
    color: #ef4444;
    margin-left: 2px;
} */

/* Custom SHop Page  */
/* .custom-shop-container {
    display: flex;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.custom-shop-sidebar {
    width: 25%;
    background: #f4f4f4;
    padding: 10px 20px 2rem 20px;
    border-radius: 20px;
    border: 1px solid #DADADA;
    height: fit-content;
}

form#category-filter label {
    font-size: 14px;
}

.custom-shop-products {
    width: 75%;
}

#load-more {
    margin: 20px auto;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
}

#load-more:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #FFDEC0;
    border-top: 3px solid #FD6902;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
.loading-spinner-box{
    max-height: 600px;
    height: 100%;
    align-items: center;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

div#product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

div#product-list li {
    list-style: none;
}

div#product-list li {
    list-style: none;
    border: 1px solid #DADADA;
    border-radius: 5px;
    background-color: #f4f4f4c2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

div#product-list li img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

div#product-list li h2 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: left;
    margin: 0;
    padding: 10px 10px;
}

div#product-list li a:not(.button):hover h2 {
    color: #CAAB68;
}

div#product-list li a span.price {
    font-size: 16px;
    font-weight: 400;
    color: #CAAB68;
    width: 100%;
    text-align: left;
    padding: 0 10px;
}

div#product-list li a.button {
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #CAAB68;
    color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #CAAB68;
    border-radius: 38px 38px 38px 38px;
    line-height: 1;
    width: fit-content;
    margin: 20px auto;
}

div#product-list li a.button:hover, div#product-list li a.button:focus {
    background-color: #fff;
    color: #CAAB68;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #CAAB68;
}
@media(min-width:1024.2px){
    .custom-shop-sidebar {
        height: fit-content;
        position: sticky;
        top: 115px;
    }
}
@media(max-width: 1024px) {
    .custom-shop-container {
        display: flex;
        flex-direction: column
    }

    .custom-shop-sidebar {
        width: 100%;
        max-width: 400px;
    }

    .custom-shop-products {
        width: 100% !important;
    }

    select#category-select {
        display: block !important;
        max-width: 400px;
        width: 100%;
    }

    div#category-checkboxes {
        display: none !important;
    }

} */
/* Product grid Style  */
/* ul.custom-product-query {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 0;
    padding: 0;
}

ul.custom-product-query li {
    list-style: none;
}

ul.custom-product-query li {
    list-style: none;
    border: 0px solid #DADADA;
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}
ul.custom-product-query li .custom-product-content{
    width: calc(100% - 105px);
    padding: 10px 15px;
}
ul.custom-product-query li .custom-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.custom-product-query li h2 a, ul.custom-product-query li h2 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: left;
    margin: 0;
    padding: 10px 0px;
}

ul.custom-product-query li h2 a:hover{
    color: #CAAB68;
}

ul.custom-product-query li .custom-product-price .woocommerce-Price-amount{
    font-size: 14px;
    font-weight: 600;
    color: #CAAB68;
    width: 100%;
    text-align: left;
    padding: 0;
}

.custom-product-image {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.25);
}

select#category-select {
    display: none;
    margin-bottom: 30px;
}

div#category-checkboxes {
    display: block;
}
.custom-shop-sidebar span.product-count {
    font-size: 14px;
    font-weight: 600;
    color: #fac122;
}

@media(max-width:767px) {
    div#product-list{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}
@media(max-width:991px) {
    ul.custom-product-query {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}
@media(max-width:576px) {
    div#product-list, ul.custom-product-query {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .custom-shop-sidebar {
        width: 100% !important;
    }

}
button#reset-filters {
    background: red;
    border-color: red;
    color: #fff;
}

button#reset-filters:hover, button#reset-filters:focus {
    background: #ff0000c7 !important;
}
div#category-checkboxes {
    max-height: 550px;
    overflow: auto;
    margin-bottom: 30px;
} */
/* width
::-webkit-scrollbar {
  width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background:#FD6902; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FD6902; 
}  */
a.reset_variations {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.price-entirely {
    font-size: 16px;
}
select#location {
    background: #f4f4f4;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding-left: 15px;
    
}
.cart-page .woocommerce-variation-price span{
    color: #caab68 !important;
    font-weight: 600 !important;
}

.cart-page .wpr-variations-layout-column .variations tr th{
    width: auto !important;
    
}
.cart-page .form-group.ppom-input-serving_with_raps, 
.cart-page .form-group.ppom-input-served_with, 
.cart-page .form-group.ppom-input-get_size, 
.cart-page .form-group.ppom-input-get_size_3, 
.cart-page .form-group.ppom-input-choose_donut_quantity
{
        display: none !important;
    }
select#location{
/* 	 display: none !important; */
}
.cart-page .form-group.ppom-input-location, .cart-page .form-group.ppom-input-location .label label[for='location'], select#location_ppom, .cart-page .form-group.ppom-input-location_ppom label.form-control-label{
	 display: none !important;
}

.cart-page .form-group.ppom-input-served_with input#served_with {
    pointer-events: none !important;
}

.cart-page  .ppom-wrapper .form-group {
    display: flex;
/*     flex-direction: column; */
	flex-wrap: wrap;
    gap: 10px 20px;
}
.cart-page .product-short ul, .cart-page .product-short ol{
	margin: 0;
	padding: 0;
}
.cart-page .ppom-wrapper .form-group label:first-child:not(.form-check-inline label), 
.cart-page .ppom-wrapper .form-group label:first-child:not(.form-check label) {
    flex-basis: 100%;
    font-weight: 600;
    color: black;
}
.cart-page .ppom-wrapper .form-group .form-check-inline label span.ppom-option-label-price {
    color: #caab68;
}
.cart-page .ppom-wrapper .form-check-inline, .cart-page .ppom-wrapper .form-check{
    margin: 0;
    width: calc(50% - 40px);
}
.cart-page .ppom-wrapper .form-check{
    padding-left: 0;
}
/* Checkout page and thankyou page ppom fields styling start */
#custom-checkout-page table.shop_table .variation {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px 10px;
}

#custom-checkout-page table.shop_table .variation dt {
    width: calc(40% - 5px);
    margin: 0 !important;
}

#custom-checkout-page table.shop_table .variation dd {
    width: calc(60% - 5px);
    margin: 0 !important;
}

#custom-checkout-page table.shop_table .variation p {
    margin: 0;
}
.woocommerce-order-details ul.wc-item-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-order-details ul.wc-item-meta li .wc-item-meta-label {
    width: calc(40% - 5px);
}

.woocommerce-order-details ul.wc-item-meta li p {
    margin: 0;
    width: calc(60% - 5px);
}

.woocommerce-order-details ul.wc-item-meta li {
    margin: 0 !important;
    padding: 0;
    gap: 10px;
}
/* Checkout page and thankyou page ppom fields styling  end*/
@media(max-width: 980px){
	.cart-page .ppom-wrapper .form-check-inline, .cart-page .ppom-wrapper .form-check {

    width: 100% !important;
}
}

#delivery_pickup_option_field .woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  align-items: center;
}

#delivery_pickup_option_field .woocommerce-input-wrapper input[type="radio"] {
  margin-right: 5px;
}

#delivery_pickup_option_field .woocommerce-input-wrapper label.radio {
  display: inline-flex;
  align-items: center;
  margin-right: 25px;
  margin-bottom: 0px;
}
#delivery_pickup_option_field .woocommerce-input-wrapper label.radio .required{
  display: none;
}
/* Home Page  */
.welcome-images .elementor-widget-image img{
    height: 375px !important;
    object-fit: cover;
}

/* Location Check PopUp */
#location-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#location-popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
span#close-popup {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #caab68;
}
#location-popup button {
    margin: 10px;
    cursor: pointer;
}
/* Single Product Page  */
@media(min-width: 1024.98px){
.cart-page .woocommerce-product-gallery {
    max-width: 900px !important;
    width: 100% !important;
}

.cart-page .woocommerce-product-gallery img {
    height: 600px !important;
    width: auto !important;
	        object-fit: cover !important;
        object-position: center center;
}
}
@media(max-width: 1024.97px){
    .cart-page .wpr-product-media-wrap {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    display: block;
}
.cart-page .woocommerce-product-gallery {
    max-width: 900px !important;
    width: 100% !important;
}

.cart-page .woocommerce-product-gallery img {
    height: 400px !important;
    width: auto !important;
    object-fit: cover;
}
}
@media(max-width: 600px){
.cart-page .woocommerce-product-gallery img {
    height: 300px !important;
    width: auto !important;
    object-fit: cover;
}
}
/* Ensure product price displays before PPOM total */
#ppom-price-container table {
    display: flex;
    flex-direction: column;
}
#ppom-price-container table th, #ppom-price-container table td{
    border: 0px solid #dee2e6 !important;
}
#ppom-price-container table tr.ppom-option-price-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dee2e6 !important;
}

#ppom-price-container table tr.ppom-option-price-list.ppom-product-base-price {
    order: 1;
}

#ppom-price-container table tr.ppom-option-price-list.ppom-option-total-price {
    order: 2;
}

#ppom-price-container table tr.ppom-option-price-list.ppom-total-without-fixed {
    order: 3;
}
/* ENd  Sinple product page*/