.hero {
    padding: 60px 60px 20px 60px;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
}

.cart-layout { 
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin: 40px auto 100px auto;
    max-width: 1200px;
}

.cart-items { 
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cart-item { 
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.cart-item:last-child { 
    border-bottom: none;
    margin-bottom: 0;
}

.cart-img { 
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    background: #f5f5f5;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-details h3 { 
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.item-meta { 
    font-size: 0.9rem;
    color: var(--text-gray);
}

.item-meta.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 4px;
}

.delete-btn { 
    color: var(--black);
    cursor: pointer;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 300;
}

.delete-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cart-summary { 
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--black);
}

.summary-row { 
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.total-row { 
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
    border-top: 2px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.cart-summary .btn-primary {
    margin-top: 24px;
    padding: 16px;
    font-size: 1rem;
}

/* Empty Cart */
.cart-items p {
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .cart-layout {
        gap: 24px;
        margin: 40px auto;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 24px 16px;
    }
    
    .cart-items,
    .cart-summary {
        padding: 24px;
    }
    
    .cart-item {
        gap: 16px;
    }
    
    .cart-img {
        width: 80px;
        height: 80px;
    }
    
    .item-details h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-item {
        flex-wrap: wrap;
    }
    
    .delete-btn {
        margin-left: auto;
    }
}
