/*
Theme Name: Foodota Child
Template: foodota
*/


/* Summary: Mobile-safe focus effect using inner overlay instead of outer border only. */


.bt-food-card.bt-focus-flash {
    position: relative;
    z-index: 5;
}

.bt-food-card.bt-focus-flash::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid #f7c600;
    border-radius: 18px;
    box-shadow: 0 0 0 6px rgba(247, 198, 0, 0.20);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 991px) {
    .bt-food-card.bt-focus-flash::after {
        border: 4px solid #f7c600;
        box-shadow: 0 0 0 5px rgba(247, 198, 0, 0.24);
    }
}




/* 
 
.bt-food-card.bt-focus-flash {
    position: relative;
    z-index: 5;
    border: 3px solid #f7c600 !important;
    border-radius: 18px !important;
    background: #fff9e8 !important;
    box-shadow: 0 0 0 6px rgba(247, 198, 0, 0.22) !important;
}

@media (max-width: 991px) {
    .bt-food-card.bt-focus-flash {
        border: 4px solid #f7c600 !important;
        border-radius: 18px !important;
        background: #fff7db !important;
        box-shadow: 0 0 0 5px rgba(247, 198, 0, 0.28) !important;
    }

    .bt-food-card.bt-focus-flash .bt-food-card__content,
    .bt-food-card.bt-focus-flash .bt-food-card__image {
        background: transparent !important;
    }
}

.bt-store-menu-grid,
.bt-store-menu-grid .bt-food-card {
    overflow: visible !important;
}

*/


/* Summary: Add left/right breathing space to WooCommerce block checkout. */
body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
}


/* Summary: Small clean margins on mobile checkout */
@media (max-width: 767px) {
  body.woocommerce-checkout .wp-block-woocommerce-checkout,
  body.woocommerce-checkout .wc-block-checkout {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
    box-sizing: border-box !important;
  }
}

/* Summary: Safer mobile checkout inset for Chrome and Safari 
@media (max-width: 767px) {
  body.woocommerce-checkout .wp-block-woocommerce-checkout,
  body.woocommerce-checkout .wc-block-checkout {
    width: auto !important;
    max-width: none !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
    box-sizing: border-box !important;
    display: block !important;
  }
} */

.bt-food-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*.related.products .owl-item.cloned {
    display: none !important;
} */