/* Werner Forster - Cart Styles */

.wf-cart-tit {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.wf-cart-empty {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 8px;
}

.wf-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.wf-cart-items {
    background: white;
    border-radius: 8px;
    padding: 30px;
}

.wf-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e4df;
}

.wf-cart-summary {
    background: white;
    border-radius: 8px;
    padding: 30px;
}
