/* ============================================================
   MODERN CART & CHECKOUT STYLES
   ============================================================ */

/* Modern Checkout Styles */
.modern-checkout-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Modern Checkout Steps */
.modern-checkout-step {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-checkout-step.-current {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.modern-checkout-step.-complete:not(.-current) {
    opacity: 0.9;
}

.modern-checkout-step .step-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.modern-checkout-step.-current .step-title {
    background: linear-gradient(135deg, #21493a 0%, #2d5a47 100%);
}

.modern-checkout-step.-complete .step-title {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.step-title-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #21493a 0%, #2d5a47 100%);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-right: 15px;
    box-shadow: 0 2px 8px rgba(33, 73, 58, 0.3);
    transition: all 0.3s ease;
}

/* Step number styling for incomplete steps */
.checkout-step:not(.-complete):not(.-current) .step-number-circle,
.checkout-step.-unreachable .step-number-circle {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Unreachable steps styling */
.checkout-step.-unreachable {
    opacity: 0.6;
}

.checkout-step.-unreachable .step-title {
    color: #999;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-step.-unreachable .step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 14px;
}

/* Current step styling */
.checkout-step.-current .step-number-circle {
    background: linear-gradient(135deg, #21493a 0%, #2d5a47 100%);
    color: white;
    box-shadow: 0 2px 12px rgba(33, 73, 58, 0.4);
    transform: scale(1.05);
}

/* Completed step styling */
.checkout-step.-complete .step-number-circle {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Loading state */
.checkout-step.loading {
    opacity: 0.7;
    pointer-events: none;
}

.checkout-step.loading .step-title-content::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #21493a;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.step-title-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-name {
    font-size: 18px;
    font-weight: 600;
}

.step-status {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.step-actions {
    display: flex;
    align-items: center;
}

.step-edit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.step-edit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modern-checkout-step .content {
    padding: 25px;
}

.modern-checkout-step:not(.-current) .content {
    display: none;
}

.checkout-security-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(33, 73, 58, 0.1);
    border-radius: 20px;
    color: #21493a;
    font-size: 14px;
    font-weight: 500;
}

.security-badge svg {
    color: #21493a;
}

/* Progress Indicator */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.current .step-circle {
    background: #21493a;
    color: white;
    transform: scale(1.1);
}

.progress-step.complete .step-circle {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
}

.progress-step.current .step-label {
    color: #21493a;
    font-weight: 600;
}

.progress-step.complete .step-label {
    color: #28a745;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
    transition: background 0.3s ease;
}

.progress-line.complete {
    background: #28a745;
}

/* Checkout Sections */
.modern-checkout-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.6;
}

.checkout-section.current {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.checkout-section.complete {
    opacity: 0.9;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.checkout-section.current .section-header {
    background: linear-gradient(135deg, #21493a 0%, #2d5a47 100%);
}

.checkout-section.complete .section-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.section-content {
    padding: 25px;
}

.checkout-section:not(.current) .section-content {
    display: none;
}

.checkout-section.current .section-content {
    display: block;
}

/* Form Styling */
.section-content input,
.section-content select,
.section-content textarea {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.section-content input:focus,
.section-content select:focus,
.section-content textarea:focus {
    border-color: #21493a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 73, 58, 0.1);
}

.section-content .btn {
    background: #21493a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.section-content .btn:hover {
    background: #2d5a47;
}

/* Step Action Buttons */
.checkout-step-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-continue-step {
    background: #21493a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-continue-step:hover {
    background: #2d5a47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 73, 58, 0.3);
}

.btn-back-step {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back-step:hover {
    border-color: #21493a;
    color: #21493a;
}

/* Final Order Button */
.btn-place-order {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Additional Cart & Checkout Improvements */
.cart-detailed-totals {
    padding: 25px;
}

.cart-reassurance {
    display: none!important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-security-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .checkout-progress {
        padding: 15px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .progress-line {
        width: 40px;
        margin: 0 5px;
    }
    
    .section-header {
        padding: 15px 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .section-content {
        padding: 20px;
    }
}

/* Modern Cart Page */
.modern-cart-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

.modern-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Navigation */
.cart-breadcrumb,
.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #21493a;
}

.breadcrumb-separator {
    color: #dee2e6;
    font-weight: 500;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

/* Cart Content Layout */
.cart-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.cart-main {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    background: #21493a;
    color: white;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.cart-icon {
    opacity: 0.9;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.cart-products-section {
    padding: 30px;
}

.cart-navigation {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 20px;
}

.cart-summary-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 25px;
    background: #21493a;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

/* Modern Cart Actions */
.modern-cart-actions {
    padding: 25px;
}

.cart-warning-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #856404;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-icon {
    opacity: 0.3;
    margin-bottom: 16px;
}

.cart-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #21493a;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 73, 58, 0.4);
}

.secure-checkout-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #e8f5e8;
    border-radius: 8px;
    color: #155724;
    font-size: 14px;
    font-weight: 500;
}

/* Modern Checkout Page */
.modern-checkout-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

.modern-checkout-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 12px 0;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.checkout-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.checkout-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.checkout-main {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.checkout-form-container {
    padding: 30px;
}

.checkout-navigation {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.btn-back-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back-to-cart:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 20px;
}

.checkout-summary-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.checkout-security-info {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.security-item:last-child {
    margin-bottom: 0;
}

/* Modern Checkout Process */
.modern-checkout-process {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-section {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.section-header {
    background: white;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.section-content {
    padding: 25px;
}

.modern-checkout-step {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.step-completed-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 20px;
    background: #e8f5e8;
    border-top: 1px solid #c3e6cb;
    border-radius: 0 0 8px 8px;
}

.completed-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #155724;
    font-weight: 500;
}

.check-icon {
    color: #28a745;
}

.step-form-content {
    padding: 20px;
}

.step-form-collapsed {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.step-complete .step-form-collapsed {
    max-height: none;
    overflow: visible;
    padding: 20px;
}

.checkout-final-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-complete-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #21493a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-complete-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.order-terms {
    margin-top: 16px;
}

.terms-text {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.terms-text a {
    color: #21493a;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #21493a;
    color: white;
    border: 1px solid #21493a;
}

.btn-primary:hover {
    background: #1a3d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 73, 58, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-link {
    background: transparent;
    color: #21493a;
    padding: 8px 12px;
}

.btn-link:hover {
    background: #f8f9fa;
    color: #0056b3;
}

.btn-disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-content-wrapper,
    .checkout-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-sidebar,
    .checkout-sidebar {
        position: static;
        order: -1;
    }
    
    .modern-cart-container,
    .modern-checkout-content {
        padding: 0 15px;
    }
    
    .cart-header,
    .checkout-header {
        padding: 20px;
    }
    
    .cart-title,
    .checkout-title {
        font-size: 24px;
    }
    
    .cart-products-section,
    .checkout-form-container {
        padding: 20px;
    }
    
    .section-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cart-breadcrumb,
    .checkout-breadcrumb {
        padding: 8px 15px;
        margin-bottom: 20px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 12px;
    }
    
    .cart-title,
    .checkout-title {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-checkout,
    .btn-complete-order {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Enhanced Cart Item Styles */
.cartItems__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cartItems__row {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cartItems__row:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ps-cartItem {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
}

.ps-cartItem__media {
    border-radius: 8px;
    overflow: hidden;
}

.ps-cartItem__media img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.ps-cartItem__media:hover img {
    transform: scale(1.05);
}

.ps-cartItem__title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.ps-cartItem__title a:hover {
    color: #667eea;
}

.ps-cartItem__unit {
    color: #6c757d;
    font-size: 14px;
    margin-top: 4px;
}

.qtyStepper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.qtyStepper__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qtyStepper__btn:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.qtyStepper__input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 500;
    background: white;
}

.ps-cartItem__total {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
}

.ps-cartItem__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ps-cartItem__remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

.ps-cartItem__remove::before {
    content: "×";
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .ps-cartItem {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }
    
    .ps-cartItem__media {
        grid-row: 1 / 3;
    }
    
    .ps-cartItem__info {
        grid-column: 2;
        grid-row: 1;
    }
    
    .ps-cartItem__qty,
    .ps-cartItem__total,
    .ps-cartItem__removeWrap {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Empty Cart Styles */
.cart-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
}

.empty-cart-illustration {
    margin-bottom: 30px;
}

.empty-cart-icon {
    color: #dee2e6;
    opacity: 0.7;
}

.empty-cart-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.empty-cart-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.empty-cart-actions {
    margin-top: 30px;
}

.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #21493a;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 73, 58, 0.4);
}

.empty-cart-benefits {
    padding: 20px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #495057;
    font-weight: 500;
}

.benefit-item svg {
    color: #28a745;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cart-empty-state {
        padding: 40px 20px;
    }
    
    .empty-cart-title {
        font-size: 24px;
    }
    
    .empty-cart-description {
        font-size: 14px;
    }
    
    .empty-cart-illustration svg {
        width: 80px;
        height: 80px;
    }
}