/* ==========================================================
   BODY PORTAL CART
   Premium WooCommerce Cart
========================================================== */

:root{

    --bp-primary:#1f1f1f;
    --bp-secondary:#6f6f6f;
    --bp-gold:#c79b67;
    --bp-bg:#f8f7f3;
    --bp-white:#ffffff;
    --bp-border:#ececec;
    --bp-radius:18px;

}

/* Reset */

.bpw-cart-page *,
.bpw-cart-page *::before,
.bpw-cart-page *::after{

    box-sizing:border-box;

}

/* ==========================================================
   CONTAINER
========================================================== */

.bpw-cart-page{

    width:100%;
    background:#fafafa;
    padding:70px 0;

}

.bpw-container{

    width:100%;
    max-width:1320px;

    margin:auto;

    padding:0 25px;

}

/* ==========================================================
   HERO
========================================================== */

.bpw-cart-hero{

    margin-bottom:60px;

}

.bpw-small-title{

    display:inline-block;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--bp-gold);

    margin-bottom:12px;

}

.bpw-cart-hero h1{

    font-size:48px;

    line-height:1.2;

    font-weight:700;

    color:var(--bp-primary);

    margin:0 0 18px;

}

.bpw-cart-hero p{

    font-size:17px;

    color:#666;

    max-width:650px;

    line-height:1.8;

}

/* ==========================================================
   MAIN GRID
========================================================== */

.bpw-cart-layout{

    display:grid;

    grid-template-columns:

        minmax(0,2fr)

        380px;

    gap:45px;

    align-items:start;

}

.bpw-cart-products{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.bpw-cart-sidebar{

    position:sticky;

    top:120px;

}

/* ==========================================================
   EMPTY CART
========================================================== */

.bpw-empty-cart{

    text-align:center;

    background:#fff;

    border-radius:20px;

    padding:90px 40px;

    box-shadow:

        0 10px 35px rgba(0,0,0,.05);

}

.bpw-empty-cart h2{

    font-size:36px;

    margin-bottom:15px;

    color:#222;

}

.bpw-empty-cart p{

    color:#777;

    margin-bottom:30px;

}

.bpw-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:#222;

    color:#fff;

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.bpw-btn:hover{

    background:var(--bp-gold);

}

/* ==========================================================
   SECTION SPACING
========================================================== */

.bpw-cart-products,
.bpw-summary-card{

    animation:fadeUp .5s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* ==========================================================
   PRODUCT CARD
========================================================== */

.bpw-cart-card{

    display:grid;

    grid-template-columns:220px 1fr;

    gap:35px;

    background:#fff;

    border:1px solid var(--bp-border);

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

    transition:.35s;

}

.bpw-cart-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.bpw-cart-image{

    position:relative;

    background:#faf8f5;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:260px;

    padding:0px;

}

.bpw-cart-image img{

    width:100%;

    /*max-width:190px;*/

    height:100%;

    display:block;

    object-fit:cover;

    transition:.35s;

}

.bpw-cart-card:hover .bpw-cart-image img{

    transform:scale(1.04);

}

/* ==========================================================
   SALE BADGE
========================================================== */

.bpw-sale{

    position:absolute;

    top:18px;

    left:18px;

    background:#1f1f1f;

    color:#fff;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    padding:7px 12px;

    border-radius:50px;

    font-weight:600;

}

/* ==========================================================
   CONTENT
========================================================== */

.bpw-cart-info{

    padding:30px 35px 30px 0;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

/* Inspired By */

.bpw-inspired{

    color:var(--bp-gold);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:10px;

}

/* Product Name */

.bpw-title{

    font-size:32px;

    line-height:1.25;

    color:#222;

    margin:0 0 12px;

    font-weight:700;

}

/* Rating */

.bpw-rating{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

    font-size:14px;

    color:#666;

}

.bpw-rating .star-rating{

    margin:0;

}

.bpw-rating span{

    font-size:14px;

    color:#666;

}

/* ==========================================================
   FRAGRANCE
========================================================== */

.bpw-fragrance{

    color:#555;

    font-size:16px;

    line-height:1.7;

    margin-bottom:20px;

}

/* ==========================================================
   PRICE
========================================================== */

.bpw-price{

    font-size:26px;

    font-weight:700;

    color:#1f1f1f;

    margin-bottom:25px;

}

.bpw-price del{

    color:#9d9d9d;

    margin-right:10px;

    font-size:18px;

    font-weight:500;

}

.bpw-price ins{

    text-decoration:none;

    color:#111;

}

/* ==========================================================
   ACTIONS
========================================================== */

.bpw-cart-actions{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:22px;

}

/* Quantity Placeholder */

.bpw-qty{

    display:flex;

    align-items:center;

}

/* Remove */

.bpw-remove{

    color:#c0392b;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.bpw-remove:hover{

    color:#8e1f14;

}

/* ==========================================================
   SUBTOTAL
========================================================== */

.bpw-subtotal{

    padding-top:18px;

    border-top:1px solid var(--bp-border);

    font-size:20px;

    font-weight:700;

    color:#111;

}

/* ==========================================================
   WOOCOMMERCE STAR RATING
========================================================== */

.bpw-cart-card .star-rating{

    color:#f5b301;

}


/* ==========================================================
   ORDER SUMMARY
========================================================== */

.bpw-summary-card{

    background:#fff;

    border-radius:18px;

    border:1px solid #ececec;

    padding:28px;

    position:sticky;

    top:120px;

    transition:.35s;

    box-shadow:0 8px 30px rgba(0,0,0,.04);

}

.bpw-summary-card:hover{

    box-shadow:

        0 20px 50px rgba(0,0,0,.08);

}

.bpw-summary-title{

    margin:0 0 30px;

    font-size:28px;

    font-weight:700;

    color:#222;

    padding-bottom:18px;

    border-bottom:1px solid var(--bp-border);

}

/* Summary Rows */

.bpw-summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #f2f2f2;

    font-size:16px;

}

.bpw-summary-row:last-of-type{

    border-bottom:none;

    padding-top:25px;

    margin-top:10px;

    font-size:20px;

}

.bpw-summary-row span{

    color:#666;

}

.bpw-summary-row strong{

    color:#111;

    font-weight:700;

}

/* ==========================================================
   CHECKOUT BUTTON
========================================================== */

.bpw-checkout-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:58px;

    border-radius:14px;

    background:#111;

    color:#fff;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.bpw-checkout-btn:hover{

    background:#000;

    transform:translateY(-2px);
}

/* ==========================================================
   TRUST TEXT
========================================================== */

.bpw-summary-card::after{

    content:"Secure Payment • Fast Shipping • Easy Returns";

    display:block;

    margin-top:25px;

    text-align:center;

    color:#888;

    font-size:13px;

    line-height:1.8;

}

/* ==========================================================
   PRODUCT SPACING
========================================================== */

.bpw-cart-products{

    padding-bottom:40px;

}

.bpw-cart-card + .bpw-cart-card{

    margin-top:25px;

}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1100px){

.bpw-cart-layout{

    grid-template-columns:1fr;

}

.bpw-cart-sidebar{

    position:relative;

    top:0;

}

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

.bpw-cart-page{

    padding:40px 0;

}

.bpw-container{

    padding:0 16px;

}

/* Hero */

.bpw-cart-hero{

    margin-bottom:35px;

}

.bpw-cart-hero h1{

    font-size:34px;

}

.bpw-cart-hero p{

    font-size:15px;

}

/* Product */

.bpw-cart-card{

    grid-template-columns:1fr;
    gap:0px;

}

.bpw-cart-image{

    min-height:220px;

    padding:0px;

}

.bpw-cart-image img{

    /*max-width:170px;*/
    height:360px;

}

.bpw-cart-info{

    padding:20px;

}

.bpw-title{

    font-size:26px;

}

.bpw-price{

    font-size:22px;

}

.bpw-cart-actions{

    flex-direction:column;

    align-items:flex-start;

}

.bpw-remove{

    margin-top:10px;

}

.bpw-summary-card{

    padding:25px;

}

.bpw-summary-title{

    font-size:24px;

}

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media(max-width:480px){

.bpw-cart-page{

    padding:25px 0;

}

.bpw-container{

    padding:0 14px;

}

.bpw-cart-hero h1{

    font-size:28px;

}

.bpw-title{

    font-size:22px;

}

.bpw-cart-image{

    min-height:180px;

}

.bpw-cart-image img{

    /*max-width:140px;*/
    height: 320px;

}

.bpw-summary-card{

    border-radius:18px;

    padding:20px;

}

.bpw-checkout-btn{

    height:54px;

    font-size:15px;

}

}


/*======================================
 SHIPPING PROGRESS
======================================*/

.bpw-shipping-progress{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:24px;

    margin:35px 0;

}

.bpw-progress-header{

    margin-bottom:18px;

}

.bpw-progress-header p{

    margin:0;

    font-size:16px;

    color:#222;

    line-height:1.6;

}

.bpw-progress-header strong{

    color:#000;

    font-weight:700;

}

.bpw-progress{

    height:10px;

    background:#ececec;

    border-radius:30px;

    overflow:hidden;

}

.bpw-progress-bar{

    height:100%;

    width:0;

    background:linear-gradient(90deg,#111,#444);

    border-radius:30px;

    transition:.5s;

}

/*==================================================
  PREMIUM QUANTITY
==================================================*/

.bpw-qty{

    display:flex;
    align-items:center;

}

.bpw-quantity{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:150px;
    height:50px;

    border:1px solid #E5E5E5;
    border-radius:999px;

    background:#fff;

    overflow:hidden;

}

.bpw-minus,
.bpw-plus{

    width:48px;
    height:50px;

    border:none;
    background:#fff;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

.bpw-minus:hover,
.bpw-plus:hover{

    background:#111 !important;

}

.bpw-minus,
.bpw-plus{

    font-size:28px;

    font-weight:700;

    color:#111;

}

.bpw-qty-count{

    flex:1;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#111;

}

.bpw-hidden-qty{

    display:none;

}

/*==================================================
COUPON
==================================================*/

.bpw-coupon-card{

	background:#fff;

	padding:28px;

	border-radius:18px;

	margin:30px 0;

	border:1px solid #eee;

}

.bpw-coupon-card h3{

	font-size:22px;

	margin-bottom:8px;

}

.bpw-coupon-card p{

	color:#777;

	margin-bottom:18px;

}

.bpw-coupon-form{

	display:flex;

	gap:12px;

}

#bpw-coupon-code{

	flex:1;

	height:52px;

	padding:0 18px;

	border:1px solid #ddd;

	border-radius:12px;

	font-size:15px;

}

#bpw-apply-coupon{

	height:52px;

	padding:0 28px;

	border:none;

	border-radius:12px;

	background:#111;

	color:#fff;

	font-weight:600;

	cursor:pointer;

	transition:.3s;

}

#bpw-apply-coupon:hover{

	background:#000;

}

#bpw-coupon-message{

	margin-top:14px;

	font-weight:600;

}

/*=========================================
SECURE CHECKOUT
=========================================*/

.bpw-secure-checkout{

    margin-top:22px;

    text-align:center;

    font-weight:600;

    color:#2E7D32;

}

.bpw-payment-icons{

    margin-top:18px;

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

}

.bpw-payment-icons span{

    padding:8px 16px;

    border-radius:30px;

    background:#f7f7f7;

    font-size:13px;

    font-weight:600;

}



/*==================================================
RECOMMENDATIONS
==================================================*/

.bpw-recommendations{

    margin:100px auto 0 ;
    
    max-width:1400px;

    padding:0 20px;

}

.bpw-recommendations h2{

    font-size:42px;

    font-weight:700;

    text-align:center;

    margin-bottom:55px;

    color:#1b1b1b;

}

/*.bpw-recommendation-grid{*/

/*    display:grid;*/

/*   grid-template-columns: repeat(3,1fr);*/

/*    gap:30px;*/

/*}*/

.bpw-rec-card{

    background:#fff;

    border:1px solid #eee;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    position:relative;

}

.bpw-rec-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border-color:#d8c3a5;

}

.bpw-rec-image{

    position:relative;

    background:#faf8f5;

    padding:0px;

    text-align:center;

}

.bpw-rec-image img{

    width:100%;

    height:370px;

    object-fit:cover;

    transition:.4s;

}

.bpw-rec-card:hover img{

    transform:scale(1.08);

}

.bpw-rec-content{

    padding:25px;

}

.bpw-rec-content h3{

    font-size:28px;

    font-weight:700;

    margin:10px 0;

    color:#111;

    line-height:1.2;

}

.bpw-rec-content .bpw-inspired{

    color:#b88d58;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

}

.bpw-rec-content .bpw-rating{

    margin:12px 0;

    font-size:14px;

    color:#777;

}

.bpw-rec-content .bpw-fragrance{

    color:#666;

    line-height:1.6;

    min-height:48px;

    margin-bottom:20px;

}

.bpw-rec-content .bpw-price{

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.bpw-rec-content del{

    color:#999;

    margin-right:10px;

    font-size:20px;

}

.bpw-add-cart{

    width:100%;

    height:56px;

    border:none;

    border-radius:40px;

    background:#111;

    color:#fff;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.bpw-add-cart:hover{

    background:#000;

    transform:translateY(-2px);

}

.bpw-rec-card .bpw-sale{

    position:absolute;

    top:18px;

    left:18px;

    background:#111;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    z-index:2;

}


/*=========================================
Cart Related Products
=========================================*/


.bpw-recommendations .bp-related{

    padding:0;

}

.bpw-recommendations .bp-related-slider{

    padding:30px 0 10px;

    overflow:hidden;

}

.bpw-recommendations .swiper{

    overflow:hidden;

}

.bpw-recommendations .swiper-wrapper{

    align-items:stretch;

}

.bpw-recommendations .swiper-slide{

    height:auto;

}

.bpw-recommendations .bp-related-prev,
.bpw-recommendations .bp-related-next{

    width:54px;
    height:54px;

    top:45%;

}

.bpw-cart-page{

    padding-bottom:90px;

}

/*==================================================
ADD TO CART LOADING
==================================================*/

.bpw-add-cart.loading{

    opacity:.7;

    pointer-events:none;

}