/* cart.css - Claymorphism Style - Responsive Update */

/* ==================== BASE RESET ==================== */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ==================== CART HERO SECTION ==================== */
.cart-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 80px;
    margin: 20px;
    background: linear-gradient(145deg, #fff0f5, #ffe4ec);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.cart-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cart-hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 1;
}

.cart-hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(145deg, #ffb6c1, #ff69b4);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.1),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.4);
    animation: cart-pulse 2s ease-in-out infinite;
}

@keyframes cart-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cart-hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: #8b4563;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #a0607a;
    line-height: 1.6;
}

.cart-hero-visual {
    position: relative;
    width: 250px;
    height: 250px;
    z-index: 1;
    flex-shrink: 0;
}

.cart-hero-shape {
    position: absolute;
    font-size: 50px;
    padding: 20px;
    background: linear-gradient(145deg, #fff, #fff0f5);
    border-radius: 50%;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    animation: cart-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-hero-shape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    width: 120px;
    height: 120px;
}

.cart-hero-shape-2 {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
    background: linear-gradient(145deg, #ffe4ec, #ffb6c1);
    width: 70px;
    height: 70px;
    font-size: 36px;
    padding: 14px;
}

.cart-hero-shape-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
    background: linear-gradient(145deg, #fff8e1, #ffe066);
    width: 70px;
    height: 70px;
    font-size: 36px;
    padding: 14px;
}

@keyframes cart-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

.cart-hero-shape-2,
.cart-hero-shape-3 {
    animation-name: cart-float-small;
}

@keyframes cart-float-small {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ==================== SECTION STYLES ==================== */
.cart-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-section-icon {
    font-size: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(145deg, #fff, #f5f0ff);
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    width: 100px;
    height: 100px;
}

.cart-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #5a3d7a;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.cart-section-subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #7a6b8a;
    font-family: 'Outfit', sans-serif;
}

/* ==================== CART ITEMS SECTION ==================== */
.cart-items-section {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #f5f0ff, #ebe0ff);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

/* ==================== CART TABLE ==================== */
.cart-table-container {
    background: linear-gradient(145deg, #fff, #faf5ff);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cart-table-header {
    background: linear-gradient(145deg, #e6d4ff, #d4c4f0);
}

.cart-th {
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #5a3d7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cart-table-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(90, 61, 122, 0.1);
}

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

.cart-table-row:hover {
    background: linear-gradient(145deg, #f5f0ff, #ebe0ff);
}

.cart-td {
    padding: 24px;
    vertical-align: middle;
}

.cart-product-cell {
    min-width: 250px;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-image {
    font-size: 40px;
    padding: 12px;
    background: linear-gradient(145deg, #fff0f5, #ffe4ec);
    border-radius: 16px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.cart-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #5a3d7a;
}

.cart-price {
    font-size: 16px;
    color: #7a6b8a;
    font-weight: 500;
    white-space: nowrap;
}

.cart-quantity-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(145deg, #fff, #f5f0ff);
    border-radius: 12px;
    box-shadow:
        inset 3px 3px 6px rgba(0, 0, 0, 0.05),
        inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.cart-quantity-value {
    font-size: 16px;
    font-weight: 600;
    color: #5a3d7a;
}

.cart-item-total {
    font-size: 18px;
    font-weight: 700;
    color: #6bcb77;
    white-space: nowrap;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(145deg, #fff, #fff0f0);
    border-radius: 16px;
    text-decoration: none;
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.cart-remove-btn:hover {
    background: linear-gradient(145deg, #ffe0e0, #ffcccc);
    transform: translateY(-2px);
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.95);
}

.cart-remove-icon {
    font-size: 16px;
}

/* ==================== MOBILE CARD VIEW ==================== */
.cart-mobile-items {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.cart-mobile-card {
    background: linear-gradient(145deg, #fff, #faf5ff);
    border-radius: 24px;
    padding: 24px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.cart-mobile-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.cart-mobile-image {
    font-size: 40px;
    padding: 14px;
    background: linear-gradient(145deg, #fff0f5, #ffe4ec);
    border-radius: 20px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.cart-mobile-details {
    flex: 1;
    min-width: 0;
}

.cart-mobile-name {
    font-size: 18px;
    font-weight: 600;
    color: #5a3d7a;
    margin-bottom: 4px;
    word-break: break-word;
}

.cart-mobile-price {
    font-size: 14px;
    color: #7a6b8a;
}

.cart-mobile-meta {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(145deg, #f5f0ff, #ebe0ff);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow:
        inset 3px 3px 6px rgba(0, 0, 0, 0.04),
        inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    gap: 16px;
}

.cart-mobile-quantity,
.cart-mobile-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.cart-mobile-label {
    font-size: 12px;
    color: #7a6b8a;
    text-transform: uppercase;
}

.cart-mobile-value {
    font-size: 18px;
    font-weight: 700;
    color: #5a3d7a;
}

.cart-mobile-total .cart-mobile-value {
    color: #6bcb77;
}

.cart-mobile-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(145deg, #fff, #fff0f0);
    border-radius: 16px;
    text-decoration: none;
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.cart-mobile-remove:hover {
    background: linear-gradient(145deg, #ffe0e0, #ffcccc);
}

/* ==================== CART SUMMARY ==================== */
.cart-summary {
    background: linear-gradient(145deg, #fff, #faf5ff);
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-left: auto;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(90, 61, 122, 0.1);
    gap: 16px;
}

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

.cart-summary-label {
    font-size: 16px;
    color: #7a6b8a;
}

.cart-summary-value {
    font-size: 18px;
    font-weight: 600;
    color: #5a3d7a;
    text-align: right;
}

.cart-summary-free {
    color: #6bcb77;
    padding: 4px 12px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
}

.cart-summary-total {
    padding-top: 20px;
    margin-top: 8px;
}

.cart-summary-total .cart-summary-label {
    font-size: 18px;
    font-weight: 600;
    color: #5a3d7a;
}

.cart-summary-total .cart-summary-value {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #6bcb77;
}

/* ==================== EMPTY CART SECTION ==================== */
.cart-empty-section {
    padding: 80px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.cart-empty-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cart-empty-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}

.cart-empty-icon {
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 50%;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}

.cart-empty-decoration {
    position: absolute;
    font-size: 24px;
    padding: 10px;
    background: linear-gradient(145deg, #fff, #f5f5f5);
    border-radius: 50%;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.08),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    animation: cart-float-small 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.cart-empty-decoration-1 {
    top: 0;
    right: 20%;
    animation-delay: 0s;
}

.cart-empty-decoration-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.cart-empty-decoration-3 {
    top: 30%;
    left: 0;
    animation-delay: 1s;
}

.cart-empty-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #5a5a5a;
    margin-bottom: 16px;
}

.cart-empty-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #7a7a7a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cart-empty-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart-empty-btn-primary {
    background: linear-gradient(145deg, #6bcb77, #4caf50);
    color: white;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.12),
        -6px -6px 12px rgba(255, 255, 255, 0.5),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.cart-empty-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.15),
        -10px -10px 20px rgba(255, 255, 255, 0.6);
}

.cart-empty-btn-secondary {
    background: linear-gradient(145deg, #fff, #f0f0f0);
    color: #5a5a5a;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.cart-empty-btn-secondary:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
}

.cart-empty-suggestions {
    padding: 32px;
    background: linear-gradient(145deg, #fff, #f8f8f8);
    border-radius: 28px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.06),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.cart-suggestions-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #5a5a5a;
    margin-bottom: 24px;
}

.cart-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cart-suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: linear-gradient(145deg, #fff, #f5f5f5);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.05),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.cart-suggestion-item:hover {
    transform: translateY(-6px);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.cart-suggestion-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.cart-suggestion-item:hover .cart-suggestion-icon {
    transform: scale(1.2);
}

.cart-suggestion-name {
    font-size: 14px;
    font-weight: 600;
    color: #5a5a5a;
    text-align: center;
}

/* ==================== TRUST SECTION ==================== */
.cart-trust {
    padding: 48px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 32px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.06),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
}

.cart-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(145deg, #fff, #f5fff5);
    border-radius: 20px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.05),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cart-trust-item:hover {
    transform: translateY(-4px);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.07),
        -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.cart-trust-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cart-trust-text {
    font-size: 15px;
    font-weight: 600;
    color: #2d5a3d;
    white-space: nowrap;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .cart-hero {
        padding: 45px 60px;
    }

    .cart-items-section {
        padding: 50px 32px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .cart-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
        gap: 32px;
    }

    .cart-hero-content {
        max-width: 100%;
    }

    .cart-hero-visual {
        width: 200px;
        height: 200px;
    }

    .cart-hero-shape-1 {
        width: 100px;
        height: 100px;
        font-size: 56px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 60px;
        height: 60px;
        font-size: 30px;
        padding: 12px;
    }

    .cart-items-section {
        padding: 40px 24px;
    }

    .cart-summary {
        max-width: 100%;
    }
}

/* Tablet Portrait - Switch to Mobile Cards */
@media (max-width: 900px) {
    .cart-table-container {
        display: none;
    }

    .cart-mobile-items {
        display: flex;
    }

    .cart-section-icon {
        width: 80px;
        height: 80px;
        font-size: 44px;
        padding: 16px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .cart-hero {
        padding: 32px 24px;
        margin: 12px;
        border-radius: 28px;
    }

    .cart-hero-visual {
        width: 180px;
        height: 180px;
    }

    .cart-hero-shape-1 {
        width: 90px;
        height: 90px;
        font-size: 48px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 52px;
        height: 52px;
        font-size: 26px;
        padding: 10px;
    }

    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        padding: 36px 20px;
        margin: 12px;
        border-radius: 28px;
    }

    .cart-mobile-card {
        padding: 20px;
        border-radius: 20px;
    }

    .cart-mobile-image {
        width: 60px;
        height: 60px;
        font-size: 32px;
        padding: 12px;
    }

    .cart-mobile-name {
        font-size: 16px;
    }

    .cart-summary {
        padding: 24px 20px;
    }

    .cart-empty-visual {
        width: 160px;
        height: 160px;
    }

    .cart-empty-icon {
        width: 120px;
        height: 120px;
        font-size: 64px;
        padding: 16px;
    }

    .cart-empty-decoration {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 8px;
    }

    .cart-empty-actions {
        flex-direction: column;
        align-items: center;
    }

    .cart-empty-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cart-suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cart-suggestion-item {
        padding: 16px 12px;
    }

    .cart-trust-grid {
        gap: 16px;
    }

    .cart-trust-item {
        padding: 14px 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cart-hero {
        padding: 28px 16px;
        margin: 8px;
        border-radius: 24px;
    }

    .cart-hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .cart-hero-visual {
        width: 160px;
        height: 160px;
    }

    .cart-hero-shape-1 {
        width: 80px;
        height: 80px;
        font-size: 42px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 46px;
        height: 46px;
        font-size: 22px;
        padding: 8px;
    }

    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        padding: 28px 16px;
        margin: 8px;
        border-radius: 24px;
    }

    .cart-section-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        padding: 14px;
    }

    .cart-section-header {
        margin-bottom: 28px;
    }

    .cart-mobile-items {
        gap: 16px;
    }

    .cart-mobile-card {
        padding: 18px;
    }

    .cart-mobile-product {
        gap: 12px;
        margin-bottom: 16px;
    }

    .cart-mobile-image {
        width: 56px;
        height: 56px;
        font-size: 28px;
        padding: 10px;
        border-radius: 16px;
    }

    .cart-mobile-meta {
        padding: 14px 12px;
        gap: 12px;
    }

    .cart-mobile-value {
        font-size: 16px;
    }

    .cart-mobile-remove {
        padding: 12px;
    }

    .cart-summary {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .cart-summary-row {
        padding: 10px 0;
    }

    .cart-summary-label {
        font-size: 14px;
    }

    .cart-summary-value {
        font-size: 16px;
    }

    .cart-empty-visual {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }

    .cart-empty-icon {
        width: 100px;
        height: 100px;
        font-size: 52px;
    }

    .cart-empty-decoration {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .cart-empty-suggestions {
        padding: 24px 16px;
    }

    .cart-suggestion-icon {
        font-size: 28px;
    }

    .cart-suggestion-name {
        font-size: 12px;
    }

    .cart-trust-grid {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cart-trust-item {
        justify-content: center;
        padding: 14px 20px;
    }

    .cart-trust-icon {
        font-size: 22px;
    }

    .cart-trust-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .cart-hero {
        padding: 24px 12px;
        margin: 6px;
    }

    .cart-hero-visual {
        width: 140px;
        height: 140px;
    }

    .cart-hero-shape-1 {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 6px;
    }

    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        padding: 24px 12px;
        margin: 6px;
    }

    .cart-section-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
        padding: 12px;
    }

    .cart-mobile-card {
        padding: 16px;
    }

    .cart-mobile-image {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 8px;
        border-radius: 14px;
    }

    .cart-mobile-name {
        font-size: 15px;
    }

    .cart-mobile-price {
        font-size: 13px;
    }

    .cart-mobile-meta {
        padding: 12px 10px;
    }

    .cart-mobile-label {
        font-size: 11px;
    }

    .cart-mobile-value {
        font-size: 15px;
    }

    .cart-summary {
        padding: 18px 14px;
    }

    .cart-empty-visual {
        width: 120px;
        height: 120px;
    }

    .cart-empty-icon {
        width: 90px;
        height: 90px;
        font-size: 44px;
    }

    .cart-empty-decoration {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .cart-empty-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cart-suggestions-grid {
        gap: 10px;
    }

    .cart-suggestion-item {
        padding: 14px 10px;
        border-radius: 16px;
    }

    .cart-suggestion-icon {
        font-size: 24px;
    }

    .cart-suggestion-name {
        font-size: 11px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .cart-hero {
        padding: 20px 10px;
        margin: 4px;
        border-radius: 20px;
    }

    .cart-hero-visual {
        width: 120px;
        height: 120px;
    }

    .cart-hero-shape-1 {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        padding: 20px 10px;
        margin: 4px;
        border-radius: 20px;
    }

    .cart-section-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .cart-mobile-card {
        padding: 14px;
    }

    .cart-mobile-image {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .cart-summary {
        padding: 16px 12px;
    }

    .cart-empty-visual {
        width: 100px;
        height: 100px;
    }

    .cart-empty-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .cart-empty-decoration {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .cart-trust-item {
        padding: 12px 16px;
    }

    .cart-trust-icon {
        font-size: 20px;
    }

    .cart-trust-text {
        font-size: 13px;
    }
}

/* ==================== TOUCH DEVICE ADJUSTMENTS ==================== */
@media (hover: none) {
    .cart-table-row:hover,
    .cart-trust-item:hover,
    .cart-suggestion-item:hover {
        transform: none;
    }

    .cart-remove-btn:hover,
    .cart-mobile-remove:hover {
        transform: none;
    }

    .cart-remove-btn:active,
    .cart-mobile-remove:active,
    .cart-suggestion-item:active {
        transform: scale(0.98);
    }

    .cart-empty-btn-primary:hover,
    .cart-empty-btn-secondary:hover {
        transform: none;
    }

    .cart-empty-btn-primary:active,
    .cart-empty-btn-secondary:active {
        transform: scale(0.97);
    }

    .cart-suggestion-item:hover .cart-suggestion-icon {
        transform: none;
    }
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media (max-width: 768px) and (orientation: landscape) {
    .cart-hero {
        flex-direction: row;
        text-align: left;
        padding: 28px 32px;
    }

    .cart-hero-visual {
        width: 150px;
        height: 150px;
    }

    .cart-hero-shape-1 {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }

    .cart-hero-shape-2,
    .cart-hero-shape-3 {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        padding: 28px 24px;
    }

    .cart-empty-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cart-empty-btn {
        width: auto;
        max-width: none;
    }

    .cart-suggestions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cart-trust-grid {
        flex-direction: row;
    }
}

/* ==================== ACCESSIBILITY ==================== */
.cart-remove-btn:focus,
.cart-mobile-remove:focus,
.cart-empty-btn:focus,
.cart-suggestion-item:focus {
    outline: 3px solid #5a3d7a;
    outline-offset: 2px;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    .cart-hero-badge,
    .cart-hero-shape,
    .cart-empty-decoration {
        animation: none;
    }

    .cart-table-row,
    .cart-remove-btn,
    .cart-mobile-remove,
    .cart-empty-btn,
    .cart-suggestion-item,
    .cart-trust-item {
        transition: none;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .cart-hero,
    .cart-items-section,
    .cart-empty-section,
    .cart-trust {
        box-shadow: none;
        border: 1px solid #ccc;
        margin: 10px 0;
    }

    .cart-hero-visual,
    .cart-empty-decoration {
        display: none;
    }

    .cart-mobile-items {
        display: flex;
    }

    .cart-table-container {
        display: none;
    }
}