/*
|--------------------------------------------------------------------------
| Cart Page
|--------------------------------------------------------------------------
*/

.phc-cart-page{
    padding:40px 0 80px;
}

.phc-cart-wrapper{
    max-width:1100px;
    margin:0 auto;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.phc-cart-header{
    margin-bottom:24px;
}

.phc-cart-header h1{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:8px;
}

.phc-cart-header p{
    font-size:15px;
    color:#64748b;
}

/*
|--------------------------------------------------------------------------
| Cart Items
|--------------------------------------------------------------------------
*/

.phc-cart-items{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/*
|--------------------------------------------------------------------------
| Cart Item
|--------------------------------------------------------------------------
*/

.phc-cart-item{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:22px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 2px 12px rgba(0,0,0,0.04);
}

.phc-cart-item-left{
    flex:1;
}

.phc-cart-product-name{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

.phc-cart-product-drug{
    font-size:14px;
    color:#0f172a;
    font-weight:600;
    margin-bottom:10px;
}

.phc-cart-product-meta{
    font-size:14px;
    color:#64748b;
    margin-bottom:5px;
}

/*
|--------------------------------------------------------------------------
| Right Side
|--------------------------------------------------------------------------
*/

.phc-cart-item-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
}

.phc-cart-price{
    font-size:26px;
    font-weight:800;
    color:#0f172a;
}

.phc-cart-line-total{
    font-size:18px;
    font-weight:700;
    color:#059669;
}

/*
|--------------------------------------------------------------------------
| Qty Controls
|--------------------------------------------------------------------------
*/

.phc-qty-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #f8fafc;

    border: 1px solid #dbe3ef;

    border-radius: 14px;

    padding: 6px;

    width: fit-content;

}

.phc-qty-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:10px;
    color:#fff;
    font-size:24px;
    font-weight:700;
    cursor:pointer;
}

.phc-qty-btn.minus{
    background:#059669;
}

.phc-qty-btn.plus{
    background:#2563eb;
}

.phc-qty-number{
    min-width:24px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

/*
|--------------------------------------------------------------------------
| Summary
|--------------------------------------------------------------------------
*/

.phc-cart-summary{
    margin-top:30px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:28px;
    box-shadow:0 2px 12px rgba(0,0,0,0.04);
}

.phc-cart-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #f1f5f9;
    font-size:15px;
    color:#334155;
}

.phc-cart-summary-row strong{
    color:#0f172a;
}

.phc-cart-grand-total{
    margin-top:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:22px;
    font-weight:800;
    color:#0f172a;
}

/*
|--------------------------------------------------------------------------
| Place Order
|--------------------------------------------------------------------------
*/

.phc-place-order-btn{
    width:100%;
    margin-top:24px;
    height:58px;
    border:none;
    border-radius:14px;
    background:#059669;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s;
}

.phc-place-order-btn:hover{
    opacity:0.94;
}

/*
|--------------------------------------------------------------------------
| Empty Cart
|--------------------------------------------------------------------------
*/

.phc-empty-cart{
    background:#fff;
    border-radius:18px;
    padding:60px 30px;
    text-align:center;
    font-size:18px;
    color:#64748b;
    border:1px solid #e2e8f0;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width:768px){

    .phc-cart-page{
        padding:24px 0 120px;
    }

    .phc-cart-header h1{
        font-size:28px;
    }

    .phc-cart-item{
        flex-direction:column;
        padding:18px;
    }

    .phc-cart-item-right{
        align-items:flex-start;
        width:100%;
    }

    .phc-cart-price{
        font-size:24px;
    }

    .phc-cart-line-total{
        font-size:17px;
    }

    .phc-cart-summary{
        padding:20px;
    }

    .phc-cart-grand-total{
        font-size:20px;
    }

}

