/*======================================
    SHOPPING CART
======================================*/

.cart-page{

    padding:80px 0;

    background:#f8f8f8;

}

.cart-page .container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/*======================================
    HEADER
======================================*/

.cart-header{

    text-align:center;

    margin-bottom:50px;

}

.cart-header h1{

    font-size:42px;

    color:#222;

    margin-bottom:15px;

}

.cart-header p{

    color:#666;

    font-size:18px;

}

/*======================================
    TABLE
======================================*/

.shop_table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.shop_table thead{

    background:#b88a28;

}

.shop_table thead th{

    color:#fff;

    padding:20px;

    text-align:left;

    font-size:16px;

}

.shop_table tbody td{

    padding:25px 20px;

    border-bottom:1px solid #eee;

    vertical-align:middle;

}

/*======================================
    PRODUCT
======================================*/

.cart-product{

    display:flex;

    align-items:center;

    gap:20px;

}

.cart-image img{

    width:110px;

    height:110px;

    object-fit:cover;

    border-radius:12px;

    border:1px solid #eee;

}

.cart-details h3{

    margin:0;

    font-size:20px;

}

.cart-details h3 a{

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.cart-details h3 a:hover{

    color:#b88a28;

}

/*======================================
    PRICE
======================================*/

.product-price,

.product-subtotal{

    font-size:18px;

    font-weight:700;

    color:#b88a28;

}

/*======================================
    QUANTITY
======================================*/

.quantity{

    display:flex;

    justify-content:center;

}

.quantity input{

    width:70px;

    height:45px;

    text-align:center;

    border:1px solid #ddd;

    border-radius:8px;

}

/*======================================
    REMOVE
======================================*/

.remove{

    display:flex;

    align-items:center;

    justify-content:center;

    width:40px;

    height:40px;

    background:#ffebee;

    color:#e53935 !important;

    font-size:24px;

    text-decoration:none;

    border-radius:50%;

    transition:.3s;

}

.remove:hover{

    background:#e53935;

    color:#fff !important;

}

/*======================================
    BUTTONS
======================================*/

.cart-buttons{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:35px;

    flex-wrap:wrap;

    gap:20px;

}

.continue-shopping,

.update-cart{

    padding:16px 35px;

    border:none;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:.3s;

}

.continue-shopping{

    background:#222;

    color:#fff;

}

.continue-shopping:hover{

    background:#000;

}

.update-cart{

    background:#b88a28;

    color:#fff;

}

.update-cart:hover{

    background:#9b7420;

}

/*======================================
    CART TOTALS
======================================*/

.cart-totals{

    margin-top:60px;

    margin-left:auto;

    width:420px;

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cart-totals h2{

    font-size:28px;

    margin-bottom:25px;

    color:#222;

}

.cart-totals table{

    width:100%;

}

.cart-totals th{

    text-align:left;

    padding:15px 0;

    color:#444;

}

.cart-totals td{

    text-align:right;

    padding:15px 0;

    color:#222;

    font-weight:700;

}

.cart-totals .order-total{

    font-size:20px;

    color:#b88a28;

}

/*======================================
    CHECKOUT BUTTON
======================================*/

.wc-proceed-to-checkout{

    margin-top:25px;

}

.checkout-button{

    display:block !important;

    width:100%;

    text-align:center;

    background:#b88a28 !important;

    color:#fff !important;

    padding:18px !important;

    border-radius:40px !important;

    text-decoration:none;

    font-size:18px !important;

    transition:.3s;

}

.checkout-button:hover{

    background:#222 !important;

}

/*======================================
    RESPONSIVE
======================================*/

@media(max-width:992px){

.shop_table thead{

    display:none;

}

.shop_table,

.shop_table tbody,

.shop_table tr,

.shop_table td{

    display:block;

    width:100%;

}

.shop_table tr{

    background:#fff;

    margin-bottom:25px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.shop_table td{

    border:none;

    padding:15px 20px;

}

.cart-product{

    flex-direction:column;

    text-align:center;

}

.cart-buttons{

    flex-direction:column;

}

.continue-shopping,

.update-cart{

    width:100%;

    text-align:center;

}

.cart-totals{

    width:100%;

}

}

@media(max-width:768px){

.cart-header h1{

    font-size:32px;

}

.cart-header p{

    font-size:16px;

}

.cart-image img{

    width:90px;

    height:90px;

}

.cart-details h3{

    font-size:18px;

}

}
/*======================================
    CART QUANTITY
======================================*/

.cart-quantity{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

.cart-quantity button{

    width:40px;

    height:40px;

    border:none;

    background:#b88a28;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    border-radius:8px;

    transition:.3s;

}

.cart-quantity button:hover{

    background:#222;

}

.cart-quantity input.qty{

    width:70px;

    height:40px;

    text-align:center;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

    font-weight:600;

}