body {
    padding-bottom: 120px;
}

.woocommerce-product-gallery {
    /* display: none; */
}

.product svg {
    fill: var(--c-primary-l);
}

.product {
    justify-content: center;
}

.product>* {
    width: 100%;
}

.product-info {
    padding: 34px 12px 56px;
    background-color: var(--c-white);

}

.product_title {
    order: 2;
    font-size: 1.15em;
}

.woocommerce-product-gallery{
    max-width: 90%;

}

.woocommerce-product-gallery img{
    box-shadow: 0 0 5px -1px var(--c-grey-l);
    border-radius: 6px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.summary {
    border-radius: 12px;
    margin-top: -24px;
    background: var(--c-text-l);
    padding: 12px;
    color: var(--c-white);
}

.product .product-attributes {
    justify-content: space-evenly;
    padding: 6px 0 24px;
}

.product .product-attributes-row {
    flex-flow: column wrap;
    flex: 1 0 0;
    justify-content: flex-start;
}

.product .product-attributes-row .label {
    margin-bottom: 8px;
}

.product .product-attributes-row .label span {
    display: none;
}

.product .product-attributes-row .label svg {
    /* width: 28px;
    height: 28px; */
}
.product_meta{
    margin-top: auto;
}
.sku_wrapper {
    justify-content: right;
    padding: 12px 4px;
}

.sku_wrapper i {
    margin-left: 8px;
}

.sku_wrapper svg {
    width: 38px;
    height: 38px;
}

.sku_wrapper .sku {
    margin-right: 8px;
    color: var(--c-primary);
}

.product-cart {
    background-color: var(--c-theme-l);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 12px 8px;
    border-radius: 12px 12px 0 0;
}

.product-cart>* {
    width: 100%;
}

.price {
    margin: 6px;
    text-align: center;
    color: var(--c-green);
    font-size: 1.2em;
    font-weight: 600;
}

.stock.in-stock {
    display: none;
}

.woocommerce-Price-amount {}

.single_add_to_cart_button {
    width: 100%;
    max-width: 260px;
}

.single_add_to_cart_button span {
    font-weight: 700;
}

@media (min-width: 768px) {
    .product {
        margin: auto auto 42px;
    }

    .product>* {
        width: 33%;
    }

    .product_title {
        border-radius: 12px;
        padding: 28px 24px;
    }

    .summary,
    .product-cart {
        margin: 0 -24px 0 0;
        border-radius: 12px;
    }

    .product .product-attributes {
        flex-flow: column wrap;

    }

    .product .product-attributes-row {
        flex-flow: row wrap;
        justify-content: right;
        margin: 6px 0;
    }

    .product .product-attributes-row .label {
        margin-left: 4px;
        margin-bottom: 0;
    }

    .product .product-attributes-row .label span {
        display: unset;
        font-size: 0.8em;
        color: var(--c-grey-l);
    }

    .product .product-attributes-row .label i {
        margin-left: 4px;
    }

    .product .product-attributes-row .data {
        color: var(--c-white);
    }

    .product-cart {
        position: unset;
        width: calc(33% + 48px);
    }

    body {
        padding-bottom: 0;
    }

}

.more-details {
    background-color: var(--c-white);
    padding: 0 12px 12px;
    border-radius: 12px;
    width: 90%;
    max-width: 960px;
    margin: 56px auto;
}

.wc-tabs {
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px solid var(--c-grey-l);
    margin-bottom: 18px;
}

.wc-tabs li {
    margin-left: 12px;
    padding: 18px;
    border-bottom: 0px solid var(--c-primary);
    transition: all 0.2s ease-in-out;
}

.wc-tabs li a {
    color: var(--c-grey);
}

.wc-tabs li.active {
    border-bottom-width: 2px;
    transition: all 0.1s 0.2s ease-in-out;
    padding-bottom: 16px;

}


.woocommerce-Tabs-panel {
    padding: 0 24px;
}