/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

.facebook a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url('http://test1.test/wp-content/uploads/2026/03/facebook-square-blue-logo-15981.svg') no-repeat center;
  background-size: contain;
}

.instagram a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url('http://test1.test/wp-content/uploads/2026/03/instagram-logo-8869.svg') no-repeat center;
  background-size: contain;
}

.ast-builder-menu .main-navigation > ul li.facebook a.menu-link,
.ast-builder-menu .main-navigation > ul li.instagram a.menu-link{font-size:0px;padding: 0 10px}

.ast-builder-menu .main-navigation > ul li.facebook a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url('https://fioris-boutique.com/wp-content/uploads/2026/03/facebook-square-blue-logo-15981.svg') no-repeat center;
  background-size: contain;
}

.ast-builder-menu .main-navigation > ul li.instagram a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url('https://fioris-boutique.com/wp-content/uploads/2026/03/instagram-logo-8869.svg') no-repeat center;
  background-size: contain;
}


/* ===== Mini Cart Product Item Layout ===== */
.elementor-menu-cart__product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

/* ===== Hover Effect ===== */
.elementor-menu-cart__product:hover {
  background: #f9f9f9;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

/* ===== Product Image ===== */
.elementor-menu-cart__product-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== Name & Price Layout ===== */
.elementor-menu-cart__product-name,
.elementor-menu-cart__product-price {
  flex: 1;
}

/* ===== Product Name ===== */
.elementor-menu-cart__product-name a {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.elementor-menu-cart__product-name a:hover {
  color: #0073e6;
}

/* ===== Price ===== */
.elementor-menu-cart__product-price {
  font-size: 13px;
  color: #666;
}

.elementor-menu-cart__product-price .amount {
  font-weight: 600;
  color: #000;
}

/* ===== Remove Button ===== */
.elementor-menu-cart__product-remove {
  margin-left: auto;
}

.elementor-menu-cart__product-remove a {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-decoration: none;
}

.elementor-menu-cart__product-remove a::before {
  content: "✕";
  font-size: 16px;
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
}

.elementor-menu-cart__product-remove a:hover::before {
  color: red;
}

/* ===== Cart Panel Padding ===== */
.elementor-menu-cart__container {
  padding: 20px 16px;
}

/* ===== Each Product Item ===== */
.elementor-menu-cart__product {
  padding: 18px 16px;
}

/* ===== Space between items */
.elementor-menu-cart__product:not(:last-child) {
  margin-bottom: 8px;
}

/* ===== Add spacing inside content */
.elementor-menu-cart__product-name {
  padding-right: 10px;
}

.elementor-menu-cart__product-price {
  padding-right: 8px;
}

.ast-builder-menu .main-navigation > ul li.instagram,


  .main-header-menu li.facebook,
  .main-header-menu  li.instagram {
    padding: 5px 0 8px 8px;
  }

.main-header-menu li.facebook a,
.main-header-menu li.instagram a {border-bottom-width:0px !important;}

// cart drawer css

.astra-cart-drawer .elementor-menu-cart__subtotal,
.astra-cart-drawer .elementor-menu-cart__footer-buttons	{line-height: 40px;padding: 0 17px;}
.widget_shopping_cart_content { display: flex !important; flex-direction: column !important;}
.widget_shopping_cart_content > .elementor-menu-cart__products { order: 1 !important;}
.widget_shopping_cart_content > .elementor-menu-cart__footer-buttons {  order: 2 !important;}
.widget_shopping_cart_content > .elementor-menu-cart__subtotal { order: 3 !important;}







/* MAIN CART CONTENT */
.widget_shopping_cart_content {
    padding: 20px;
}

/* PRODUCT LIST */
.widget_shopping_cart_content .elementor-menu-cart__products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

/* EACH PRODUCT ROW */
.widget_shopping_cart_content .elementor-menu-cart__product {
    display: grid;
    grid-template-columns: 72px 1fr 24px;
    grid-template-areas:
        "image name remove"
        "image price remove";
    column-gap: 14px;
    row-gap: 6px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

/* PRODUCT IMAGE */
.widget_shopping_cart_content .elementor-menu-cart__product-image {
    grid-area: image;
}

.widget_shopping_cart_content .elementor-menu-cart__product-image img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #f8f8f8;
}

/* PRODUCT NAME */
.widget_shopping_cart_content .elementor-menu-cart__product-name {
    grid-area: name;
    line-height: 1.4;
    margin: 0;
}

.widget_shopping_cart_content .elementor-menu-cart__product-name a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.widget_shopping_cart_content .elementor-menu-cart__product-name a:hover {
    color: #111;
}

/* PRICE / QUANTITY */
.widget_shopping_cart_content .elementor-menu-cart__product-price {
    grid-area: price;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.widget_shopping_cart_content .elementor-menu-cart__product-price .product-quantity {
    font-weight: 600;
    color: #222;
    margin-right: 4px;
}

/* REMOVE BUTTON */
.widget_shopping_cart_content .elementor-menu-cart__product-remove {
    grid-area: remove;
    align-self: start;
    justify-self: end;
    position: relative;
    width: 24px;
    height: 24px;
}

.widget_shopping_cart_content .elementor-menu-cart__product-remove a {
    position: absolute;
    inset: 0;
    text-decoration: none;
    opacity: 1;
}

.widget_shopping_cart_content .elementor-menu-cart__product-remove a:before,
.widget_shopping_cart_content .elementor-menu-cart__product-remove a:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 4px;
    width: 16px;
    height: 1.5px;
    background: #777;
    border-radius: 2px;
}

.widget_shopping_cart_content .elementor-menu-cart__product-remove a:before {
    transform: rotate(45deg);
}

.widget_shopping_cart_content .elementor-menu-cart__product-remove a:after {
    transform: rotate(-45deg);
}

.widget_shopping_cart_content .elementor-menu-cart__product-remove a:hover:before,
.widget_shopping_cart_content .elementor-menu-cart__product-remove a:hover:after {
    background: #000;
}

/* BUTTONS ABOVE SUBTOTAL */
.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
}

.widget_shopping_cart_content > .elementor-menu-cart__products {
    order: 1;
}

.widget_shopping_cart_content > .elementor-menu-cart__footer-buttons {
    order: 2;
}

.widget_shopping_cart_content > .elementor-menu-cart__subtotal {
    order: 3;
}

/* FOOTER BUTTON AREA */
.widget_shopping_cart_content .elementor-menu-cart__footer-buttons {
    display: flex;
    gap: 12px;
    padding: 18px 0 0;
    margin: 0;
    line-height: normal !important;
}

/* BUTTON STYLING */
.widget_shopping_cart_content .elementor-menu-cart__footer-buttons a.elementor-button {
    flex: 1;
    min-height: 46px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

/* VIEW CART BUTTON */
.widget_shopping_cart_content .elementor-button--view-cart {
    background: #f7f7f7;
    color: #111;
    border: 1px solid #ddd;
}

.widget_shopping_cart_content .elementor-button--view-cart:hover {
    background: #ededed;
    border-color: #ccc;
    color: #111;
}

/* CHECKOUT BUTTON */
.widget_shopping_cart_content .elementor-button--checkout {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.widget_shopping_cart_content .elementor-button--checkout:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* SUBTOTAL BOX */
.widget_shopping_cart_content .elementor-menu-cart__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: 16px;
    color: #222;
}

.widget_shopping_cart_content .elementor-menu-cart__subtotal strong {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.widget_shopping_cart_content .elementor-menu-cart__subtotal .amount {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* EMPTY SPACING FIX */
.widget_shopping_cart_content .woocommerce-cart-form__contents {
    margin: 0;
}
.astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart {flex: none; padding: 0;}
/* MOBILE */
@media (max-width: 544px) {
    .widget_shopping_cart_content {
        padding: 16px;
    }

    .widget_shopping_cart_content .elementor-menu-cart__product {
        grid-template-columns: 64px 1fr 22px;
        column-gap: 12px;
    }

    .widget_shopping_cart_content .elementor-menu-cart__product-image img {
        width: 64px;
        height: 64px;
    }

    .widget_shopping_cart_content .elementor-menu-cart__footer-buttons {
        flex-direction: column;
    }

    .widget_shopping_cart_content .elementor-menu-cart__footer-buttons a.elementor-button {
        width: 100%;
    }
}


@media (max-width: 800px) {
.elementor-357 .elementor-element.elementor-element-f688f16 {width: 100%; margin: 0; position: relative; padding: 25px 0px;  }
}
@media (max-width: 1100px) {
  body.archive.tax-product_cat #content,
  body.archive.post-type-archive-product #content {
    padding: 0 15px;
  }
}
