/*============================
    cart-page css
==============================*/
.cart-page .cart-page-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: -30px -15px 0px;
    gap: 30px;
}
.cart-page .cart-page-wrap .cart-wrap-info,
.cart-page .cart-page-wrap .cart-info-wrap {
    margin-top: 30px;
    padding: 0;
}
.cart-page .cart-page-wrap .cart-wrap-info {
    width: 75%;
}
.cart-page .cart-page-wrap .cart-info-wrap {
    width: calc(25% - 30px);
}
@media (max-width: 1199px) {
    .cart-page .cart-page-wrap .cart-wrap-info {
        width: 66.67%;
    }
    .cart-page .cart-page-wrap .cart-info-wrap {
        width: 33.33%;
    }
}
@media (max-width: 991px) {
    .cart-page .cart-page-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: -30px 0px 0px;
    }
    .cart-page .cart-page-wrap .cart-wrap-info,
    .cart-page .cart-page-wrap .cart-info-wrap {
        width: 100%;
        padding: 0px;
    }
}

/*=====================================
    cart empty css
======================================*/
.cart-page .empty-cart-page {
    text-align: center;
}
.cart-page .empty-cart-page h2 {
    font-size: 40px;
    line-height: 1;
}
.cart-page .empty-cart-page h6 {
    font-size: 18px;
    margin-top: 17px;
}   
.cart-page .empty-cart-page p a {
    color: var(--font-color-header);
    border-bottom: 1px solid;
}
.cart-page .empty-cart-page p a:hover {
    color: var(--font-color-body);
}

/*=====================================
    cart item css
======================================*/
.cart-page .cart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 12px;
    border-bottom: 1px solid #eaeaea;
}
.cart-page .cart-title h6 {
    font-size: 18px;
}
.cart-page .cart-title span.cart-count {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 6px;
}
@media (max-width: 767px) {
    .cart-page .cart-item-wrap {
        padding: 30px 12px;
    }
}

/* cart-item css */
.cart-page .item-wrap ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
}
.cart-page .item-wrap ul li.item-info {
    width: 60%;
}
.cart-page .item-wrap ul li.item-qty,
.cart-page .item-wrap ul li.item-price {
    width: 150px;
}
@media (max-width: 991px) {
    .cart-page .item-wrap ul li.item-info {
        width: 100%;
    }
    .cart-page .item-wrap ul li.item-qty,
    .cart-page .item-wrap ul li.item-price {
        width: 50%;
        margin-top: 15px;
    }
}

/* cart-img css */
.cart-page .item-wrap ul li.item-info {
    display: flex;
    align-items: center;
}
.cart-page .item-wrap ul li.item-info .item-img {
    width: 100px;
}
.cart-page .item-wrap ul li.item-info .item-img a img {
    border: none;
}
.cart-page .item-wrap ul li.item-info .item-title {
    width: calc(100% - 100px);
    padding: 0 15px;
}
.cart-page .item-wrap ul li.item-info .item-title a {
    display: block;
    color: var(--font-color-header);
    font-weight: 600;
}
.cart-page .item-wrap ul li.item-info .item-title a:hover {
    color: var(--font-color-body);
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option {
    display: flex;
    margin-top: 11px;
    line-height: 1;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option:first-of-type {
    margin-top: 9px;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option span {
    color: var(--font-color-header);
    margin-right: 0.25em;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option span.pro-variant-title {
    color: var(--font-color-header);
    font-weight: 600;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option span.pro-variant-type {
    margin-right: 5px;
}

/* cart qty css */
.cart-page .item-wrap ul li.item-qty {
    text-align: center;
    align-self: self-end;
}
.cart-page .item-wrap ul li.item-qty .product-quantity {
    display: flex;
    justify-content: center;
}
.cart-page .item-wrap ul li.item-qty .item-remove {
    margin-top: 0px;
}
.cart-page .item-wrap ul li.item-qty .item-remove .remove-wrap a {
    text-decoration: underline;
    font-size: 0.8rem;
}
@media (max-width: 991px) {
    .cart-page .item-wrap ul li.item-qty {
        display: flex;
        align-items: center;
        text-align: right;
    }
    .cart-page .item-wrap ul li.item-qty .item-remove {
        margin-top: 0;
        margin-right: 15px;
    }
}

/* cart price css */
.cart-page .item-wrap ul li.item-price {
    text-align: right;
    align-self: self-end;
}
.cart-page .item-wrap ul li.item-price span.amount {
    color: var(--font-color-header);
    font-weight: 600;
}
.cart-page .item-wrap ul li.item-price .full-weight {
    display: block;
    border-top: 1px dashed #eaeaea;
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

.cart-page .item-wrap ul li.item-price .full-weight * {
    font-weight: 400;
    color: #777;
}
/* cart button css */
.cart-page .cart-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
@media (max-width: 479px) {
    .cart-page .cart-buttons {
        flex-direction: column;
    }
    .cart-page .cart-buttons a {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

/*special instruction & notes css*/
.cart-page .special-notes {
    margin-top: 30px;
    background-color: var(--extra-color);
}
.cart-page .special-notes label {
    display: block;
    color: var(--font-color-header);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}
.cart-page .special-notes textarea {
    width: 100%;
}

/*=================================
    cart calulate & shipping css
===================================*/
/* cart info css */
.cart-page .cart-info-wrap {
    position: sticky;
    top: 140px;
}
.cart-page .cart-info-wrap .cart-info {
    margin-top: 15px;
}
.cart-page .cart-info-wrap .cart-info:first-child {
    margin-top: 0px;
    padding: 15px 30px;
}
@media (max-width: 991px) {
    .cart-page .cart-info-wrap {
        position: unset;
        margin-top: 30px;
    }
}

/* cart shipping css */
.cart-page .cart-info-wrap .cart-calculator {
    padding: 30px;
    background-color: #f3f3f3;
}
.cart-page .cart-info-wrap .cart-calculator h6 {
    font-size: 18px;
    font-weight: 600;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping {
    margin-top: 28px;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping ul li.field {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping ul li.field:first-child {
    margin-top: 0px;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping ul li.field label {
    display: block;
    cursor: auto;
    margin-bottom: 8px;
    line-height: 1;
}
@media (max-width: 767px) {
    .cart-page .cart-info-wrap .cart-calculator {
        padding: 30px 12px;
    }
}

/* shippping calculate */
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping .shipping-info {
    margin-top: 25px;
    text-align: center;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping .shipping-info a {
    color: #c19d60;
    font-size: 16px;
    padding: 13px 30px;
    background-color: rgba(0,0,0,0);
    text-transform: uppercase;
    font-weight: 400;
    border: 2px solid #c19d60;
    border-radius: 0px;
    letter-spacing: 0.5px;
    line-height: 1;
}
.cart-page .cart-info-wrap .cart-calculator .culculate-shipping .shipping-info a:hover {
    color: #ffffff;
    background-color: #c19d60;
    border: 2px solid #c19d60;
}

/* cart-total-wrap css */
.cart-page .cart-total-wrap {
    padding: 30px;
    background-color: #f3f3f3;
}
.cart-page .cart-total-wrap .cart-total .total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-page .cart-total-wrap .cart-total .total-amount.for-company {
    align-items: end;
}
.cart-page .cart-total-wrap .cart-total .total-amount h6.total-title,
.cart-page .cart-total-wrap .cart-total .total-amount span.amount {
    color: var(--font-color-header);
    font-weight: 600;
    margin: 0;

}
.cart-page .cart-info-wrap .cart-total .proceed-to-discount {
    margin-top: 30px;
}
.cart-page .cart-info-wrap .cart-total .proceed-to-discount input {
    width: 100%;
}
.cart-page .cart-info-wrap .cart-total .proceed-to-checkout {
    margin-top: 25px;
    text-align: center;
}
.cart-page .cart-info-wrap .cart-total .proceed-to-checkout a {
    text-transform: uppercase;
    width: 100%;
}
.cart-page .cart-info-wrap .cart-total .proceed-to-checkout a:hover {
}
.cart-page .cart-info-wrap .cart-total .cart-payment-icon {
    margin-top: 27px;
}
.cart-page .cart-info-wrap .cart-total .cart-payment-icon a {
    justify-content: center;
}

/* cart-pro css */
.cart-category.collection-category {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f3f2ee;
}
@media (max-width: 1199px) {
    .cart-category.collection-category {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .cart-category.collection-category {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* tab swiper margin css */
@media (max-width: 767px) {
    .collection-category-template .collection-wrap .collection-slider.swiper {
        margin-top: -18px;
    }
    .collection-category-template .collection-wrap .collection-slider.swiper .swiper-wrapper .swiper-slide .single-product-wrap {
        margin-top: 18px;
    }
}



.cart-page .item-wrap ul li.item-info .item-img a {
    display: block;
}

.cart-page .item-wrap ul li.item-info .item-img a img {
    transform: scale(1.02);
    width: 100%;
}

.cart-page .item-wrap ul li.item-info .item-title span.item-option:first-of-type label {
    border: 1px solid ;
    background-color: #fec175;
    color: #ffffff;
    padding: 1px 4px;
    line-height: 1.25em;
    margin-right: 5px;
    height: fit-content;
}

.cart-page .item-wrap ul li.item-info .item-title span.item-option:first-of-type label:has(img) {
    flex-direction: column;
    flex-basis: min-content;
}

.cart-page .item-wrap ul li.item-info .item-title span.item-option:first-of-type label img {
    max-height: 5rem;
}

#shop_cart_weight {
    font-size: 1.75rem;
    line-height: 1.75rem;
    font-weight: 400;
}

#shop_cart_subtotal {
    font-size: 1.75rem;
    line-height: 1.75rem;
    font-weight: bold;
}

#shop_cart_subtotal_for_company {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.item-order-info {
    font-size: 0.8rem;
}