/* === Statix Winkelmand === */

.statix-cart {
    max-width: 900px;
    margin: 0 auto;
}

.statix-cart h2 {
    margin-bottom: 24px;
    font-size: 24px;
}

.statix-cart-empty {
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.statix-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.statix-cart-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.statix-cart-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.statix-cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.statix-cart-product strong {
    display: block;
    font-size: 15px;
}

.statix-cart-product small {
    display: block;
    color: #888;
    font-size: 12px;
}

.statix-cart-summary {
    max-width: 400px;
    margin-left: auto;
    margin-bottom: 24px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.statix-cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.statix-cart-summary-row:last-child {
    border-bottom: none;
}

.statix-cart-total-row {
    font-size: 18px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #ddd;
}

.statix-cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.statix-cart-actions a {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

/* Winkelmand icoon */
.statix-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.statix-cart-icon__symbol {
    font-size: 24px;
}

.statix-cart-icon__count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 600px) {
    .statix-cart-table th:nth-child(3),
    .statix-cart-table td:nth-child(3) {
        display: none;
    }

    .statix-cart-actions {
        flex-direction: column;
    }

    .statix-cart-actions a {
        width: 100%;
    }
}
