.elex-order-summary-container {
    margin: 0;
    font-size: 14px;
}

/* Cart items table */
.elex-cart-items {
    margin-bottom: 25px;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.elex-cart-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.elex-cart-item:last-child {
    border-bottom: none;
}

.elex-cart-item .elex-cart-image {
    width: 70px;
}

.elex-cart-item .elex-cart-image img,
.elex-product-thumbnail {
    display: block;
    max-width: 60px;
    height: auto;
    border: 1px solid #eee;
    border-radius: 3px;
    margin: 0 auto;
}

.elex-cart-item .elex-cart-details {
    flex: 1;
    margin: 0 15px;
}

.elex-item-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.elex-license-info {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.elex-variation-details {
    margin-top: 4px;
    font-size: 13px;
    color: #666;
}

.elex-variation-attribute {
    display: block;
    margin-top: 2px;
}

.elex-item-price {
    width: 90px;
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Cart totals */
.elex-cart-totals {
    padding: 15px 0;
    background-color: transparent;
    border-top: 1px solid #e0e0e0;
}

.elex-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.elex-total-row:last-child {
    margin-bottom: 0;
}

.elex-total-label {
    font-weight: 600;
    color: #555;
}

.elex-total-amount {
    font-weight: 600;
    color: #333;
}

.elex-grand-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
}

.elex-grand-total .elex-total-amount {
    color: #0074cc;
    font-weight: 700;
}

.elex-discount-row {
    color: #d94f4f;
}

.elex-discount-amount {
    color: #d94f4f;
}

.elex-original-total {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 0.9em;
}

.elex-discount-note {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
    text-align: right;
}

/* Responsive styles */
@media (max-width: 768px) {
    .elex-cart-item {
        flex-wrap: wrap;
    }
    
    .elex-cart-image {
        width: 50px;
    }
    
    .elex-cart-details {
        width: calc(100% - 140px);
    }
    
    .elex-item-price {
        width: 70px;
    }
} 