/* Cart, Checkout & Success Page Styles */

:root {
    --automotive-primary: #98221e;
    --automotive-secondary: #98221e;
    --automotive-accent: #cf820a;
    --automotive-success: #10b981;
    --automotive-danger: #ef4444;
    --automotive-text: #1e293b;
    --automotive-text-muted: #64748b;
    --automotive-background: #ffffff;
    --automotive-surface: #f8fafc;
    --automotive-border: #e2e8f0;
    --automotive-border-light: #f1f5f9;
}

/* General Automotive Styling */
.automotive-container {
    background: var(--automotive-background);
    border-radius: 12px;
    border: 1px solid var(--automotive-border);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Cart Table Automotive Styling */
.cart-table.automotive {
    background: var(--automotive-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--automotive-border);
}

.cart-table.automotive thead {
    background: var(--automotive-surface);
    color: var(--automotive-text);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.cart-table.automotive thead th {
    border: none;
    position: relative;
    border-bottom: 2px solid var(--automotive-primary);
}

.cart-table.automotive thead th::after {
    display: none;
}

.cart-table.automotive tbody tr {
    background: var(--automotive-background);
    border-bottom: 1px solid var(--automotive-border-light);
    transition: all 0.2s ease;
}

.cart-table.automotive tbody tr:hover {
    background: var(--automotive-surface);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.cart-table.automotive tbody td {
    padding: 16px 20px;
    color: var(--automotive-text);
    border: none;
    vertical-align: middle;
}

.cart-table.automotive img {
    border-radius: 6px;
    border: 1px solid var(--automotive-border);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

/* Automotive Buttons */
.btn-automotive {
    background: var(--automotive-primary);
    color: white;
    border: 1px solid var(--automotive-primary);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-automotive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s;
}

.btn-automotive:hover::before {
    left: 100%;
}

.btn-automotive:hover {
    background: var(--automotive-accent);
    border-color: var(--automotive-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    color: white;
}

.btn-automotive-secondary {
    background: var(--automotive-background);
    color: var(--automotive-text);
    border: 1px solid var(--automotive-border);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
}

.btn-automotive-secondary:hover {
    background: var(--automotive-surface);
    border-color: var(--automotive-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    color: var(--automotive-primary);
}

/* Cart Summary Automotive Style */
.cart-summary.automotive {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.cart-summary.automotive::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--automotive-primary), var(--automotive-accent));
    border-radius: 13px;
    z-index: -1;
    opacity: 0.1;
}

.cart-summary.automotive h5 {
    color: var(--automotive-text);
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
    border-bottom: 2px solid var(--automotive-primary);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.cart-summary.automotive p {
    color: var(--automotive-text);
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary.automotive p i {
    color: var(--automotive-primary);
    margin-right: 8px;
}

/* Progress Bar Automotive Style */
.progress.automotive {
    height: 8px;
    background: var(--automotive-border-light);
    border-radius: 4px;
    border: none;
    overflow: hidden;
    margin: 16px 0;
}

.progress.automotive .progress-bar {
    background: linear-gradient(90deg, var(--automotive-primary) 0%, var(--automotive-accent) 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Quantity Input Automotive Style */
.quantity-input.automotive {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    color: var(--automotive-text);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quantity-input.automotive:focus {
    border-color: var(--automotive-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--automotive-background);
    outline: none;
}

/* Checkout Form Automotive Style */
.card.automotive {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.card.automotive .card-header {
    background: var(--automotive-surface);
    border-bottom: 1px solid var(--automotive-border);
    border-radius: 11px 11px 0 0;
}

.card.automotive .card-title {
    color: var(--automotive-text);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    font-size: 1.125rem;
}

.card.automotive .card-body {
    background: var(--automotive-background);
    color: var(--automotive-text);
}

.card.automotive .form-label {
    color: var(--automotive-text);
    font-weight: 500;
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.card.automotive .form-control,
.card.automotive .form-select {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    color: var(--automotive-text);
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 10px 12px;
}

.card.automotive .form-control:focus,
.card.automotive .form-select:focus {
    background: var(--automotive-background);
    border-color: var(--automotive-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    color: var(--automotive-text);
    outline: none;
}

/* Success Page Automotive Style */
.success-card.automotive {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.success-card.automotive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--automotive-primary), var(--automotive-success));
    z-index: 1;
}

.success-card.automotive .success-icon {
    position: relative;
}

.success-card.automotive .success-icon i {
    color: var(--automotive-success);
}

.success-card.automotive h2 {
    color: var(--automotive-text);
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.success-card.automotive p {
    color: var(--automotive-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Automotive Action Buttons */
.action-buttons.automotive {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Remove Button Automotive Style */
.btn-cart-remove.automotive {
    background: var(--automotive-danger);
    color: white;
    border: 1px solid var(--automotive-danger);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 14px;
}

.btn-cart-remove.automotive:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    color: white;
}

/* Breadcrumb Automotive Enhancement */
.breadcrumb-area.automotive {
    position: relative;
    background: var(--automotive-surface);
    border-bottom: 1px solid var(--automotive-border);
}

.breadcrumb-area.automotive .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-area.automotive h1 {
    color: var(--automotive-text);
    font-weight: 600;
    letter-spacing: 0;
    font-size: 2rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .action-buttons.automotive {
        flex-direction: column;
        align-items: center;
    }

    .cart-table.automotive {
        font-size: 0.875rem;
    }

    .cart-table.automotive thead th,
    .cart-table.automotive tbody td {
        padding: 12px 8px;
    }

    .btn-automotive,
    .btn-automotive-secondary {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .automotive-container {
        padding: 0.2rem;
    }
}

/* Animations for Enhanced UX */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-table.automotive tbody tr {
    animation: slideInFromLeft 0.6s ease-out;
}

.cart-summary.automotive {
    animation: slideInFromRight 0.6s ease-out;
}

.success-card.automotive {
    animation: slideInFromLeft 0.8s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   REDESIGNED CHECKOUT AREA STYLES
   ======================================== */

/* Checkout Area Container */
.checkout-area-redesigned {
    padding: 3rem 0;
    background: #fafbfc;
    min-height: 100vh;
}

/* Progress Indicator */
.checkout-progress-indicator {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--automotive-border);
    color: var(--automotive-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--automotive-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--automotive-text-muted);
}

.step.active .step-label {
    color: var(--automotive-text);
}

.step-connector {
    width: 4rem;
    height: 2px;
    background: var(--automotive-border);
    margin-top: -1rem;
}

/* Checkout Cards Container */
.checkout-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Redesigned Checkout Card */
.checkout-card {
    background: var(--automotive-background);
    border: 1px solid var(--automotive-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.checkout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

/* Card Header Redesigned */
.card-header-redesigned {
    background: var(--automotive-surface);
    border-bottom: 1px solid var(--automotive-border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--automotive-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.header-content {
    flex: 1;
}

.card-title-redesigned {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--automotive-text);
    margin: 0 0 0.25rem 0;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--automotive-text-muted);
    margin: 0;
}

/* Card Body Redesigned */
.card-body-redesigned {
    padding: 2rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-redesigned {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-redesigned.full-width {
    grid-column: 1 / -1;
}

/* Form Labels Redesigned */
.form-label-redesigned {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--automotive-text);
    display: flex;
    align-items: center;
    margin: 0;
}

.form-label-redesigned i {
    color: var(--automotive-primary);
    width: 16px;
    flex-shrink: 0;
}

/* Form Controls Redesigned */
.form-control-redesigned {
    padding: 0.875rem 1rem;
    border: 2px solid var(--automotive-border);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--automotive-background);
    color: var(--automotive-text);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-redesigned:focus {
    outline: none;
    border-color: var(--automotive-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: var(--automotive-background);
}

.form-control-redesigned::placeholder {
    color: var(--automotive-text-muted);
}

/* Form Text */
.form-text {
    font-size: 0.8rem;
    color: var(--automotive-text-muted);
    margin-top: 0.25rem;
}

/* Error Messages */
.error-message {
    color: var(--automotive-danger);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

/* Delivery Note */
.delivery-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
}

.note-icon {
    color: var(--automotive-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.note-content {
    font-size: 0.875rem;
    color: var(--automotive-text);
    line-height: 1.5;
}

/* Order Items */
.order-items {
    margin-bottom: 1.5rem;
}

.order-item-redesigned {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* padding: 1rem; */
    border: 1px solid var(--automotive-border-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.order-item-redesigned:hover {
    background: var(--automotive-surface);
    border-color: var(--automotive-border);
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--automotive-text);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.item-quantity {
    font-size: 0.8rem;
    color: var(--automotive-text-muted);
    margin: 0;
}

.item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--automotive-primary);
    text-align: right;
}

/* Order Calculations */
.order-calculations {
    padding-top: 1rem;
    border-top: 1px solid var(--automotive-border-light);
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calculation-row .label {
    font-size: 0.9rem;
    color: var(--automotive-text);
}

.calculation-row .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--automotive-text);
}

.shipping-value {
    color: var(--automotive-success) !important;
}

.calculation-divider {
    height: 1px;
    background: var(--automotive-border);
    margin: 1rem 0;
}

.total-row {
    background: var(--automotive-surface);
    padding: 1rem;
    border-radius: 10px;
    margin: 0 !important;
}

.total-row .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--automotive-text);
}

.total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--automotive-primary) !important;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option-redesigned {
    position: relative;
    border: 2px solid var(--automotive-border);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option-redesigned:hover {
    border-color: var(--automotive-primary);
    background: rgba(59, 130, 246, 0.02);
}

.payment-option-redesigned.active {
    border-color: var(--automotive-primary);
    background: rgba(59, 130, 246, 0.05);
}

.payment-option-redesigned input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--automotive-surface);
    flex-shrink: 0;
}

.payment-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.payment-details {
    flex: 1;
}

.payment-details h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--automotive-text);
    margin: 0 0 0.25rem 0;
}

.payment-details p {
    font-size: 0.8rem;
    color: var(--automotive-text-muted);
    margin: 0;
}

.payment-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--automotive-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option-redesigned.active .payment-check {
    opacity: 1;
}

/* Complete Order Section */
.checkout-completion {
    margin-top: 2rem;
}

.btn-complete-order {
    width: 100%;
    background: var(--automotive-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-complete-order:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-complete-order:active {
    transform: translateY(0);
}

.btn-complete-order:disabled {
    background: var(--automotive-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--automotive-text-muted);
}

.security-badge i {
    color: var(--automotive-success);
}

/* Loading Animation */
.btn-complete-order .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive Design for Redesigned Checkout */
@media (max-width: 992px) {
    .checkout-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .progress-steps {
        gap: 1rem;
    }
    
    .step-connector {
        width: 2rem;
    }
}

@media (max-width: 768px) {
    .checkout-area-redesigned {
        padding: 2rem 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-header-redesigned {
        padding: 1rem;
    }
    
    .card-body-redesigned {
        padding: 1.5rem;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-title-redesigned {
        font-size: 1.1rem;
    }
    
    .order-item-redesigned {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .item-image {
        width: 40px;
        height: 40px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .step-connector {
        display: none;
    }
}

/* Checkout Page Enhancements */
.checkout-area .card.automotive {
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-area .card.automotive:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

/* Order Item Styling */
.order-item {
    transition: background-color 0.2s ease;
}

.order-item:hover {
    background: var(--automotive-border-light) !important;
}

.order-item .item-name {
    font-size: 0.9rem;
    line-height: 1.4;
}

.order-item .item-price {
    font-size: 1rem;
    white-space: nowrap;
}

/* Payment Option Styling */
.payment-option {
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment-option:hover {
    background: var(--automotive-border-light) !important;
    border-color: var(--automotive-primary) !important;
}

.payment-option .form-check-input:checked ~ .form-check-label {
    color: var(--automotive-primary);
}

/* Form Validation States */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--automotive-danger) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--automotive-success) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Checkout Button Enhancement */
.btn-automotive:disabled {
    background: var(--automotive-secondary) !important;
    border-color: var(--automotive-secondary) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-automotive .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Enhanced Security Notice */
.text-muted .fa-shield-alt {
    color: var(--automotive-success);
}

/* Mobile Responsiveness for Checkout */
@media (max-width: 768px) {
    .checkout-area .card.automotive {
        margin-bottom: 1rem;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .order-item .item-price {
        align-self: flex-end;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .btn-automotive {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Cart item styling (migrated from inline styles) */
.cart-table.automotive .cart-product-cell {
    color: var(--automotive-primary);
    font-weight: bold;
}

.cart-table.automotive .cart-price-cell {
    color: var(--automotive-primary);
    font-weight: bold;
    font-size: 1.1em;
}

.cart-table.automotive .cart-total-cell {
    color: var(--automotive-primary);
    font-weight: bold;
}

.cart-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}

.cart-item-icon {
    color: var(--automotive-primary);
    margin-right: 5px;
}

.cart-actions-spacing {
    margin-top: 20px;
}

.cart-empty-message {
    color: var(--automotive-primary);
    font-size: 1.2em;
}

.cart-empty-message i {
    color: var(--automotive-primary);
    margin-right: 10px;
}

.cart-shipping-info {
    font-size: 0.9em;
    color: var(--automotive-text-muted);
    margin-bottom: 20px;
}

.cart-total-line {
    font-size: 1.2em;
    font-weight: bold;
    border-top: 2px solid var(--automotive-danger);
    padding-top: 15px;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}