.category-header {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.category-overlay {
    background: radial-gradient(circle at top left, rgba(151, 113, 67, 0.08), transparent 70%),
        linear-gradient(to bottom right, rgba(151, 113, 67, 0.05), rgba(255, 255, 255, 0.7));
}

.cart-header {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.cart-overlay {
    background: radial-gradient(circle at top left, rgba(151, 113, 67, 0.08), transparent 70%),
        linear-gradient(to bottom right, rgba(151, 113, 67, 0.05), rgba(255, 255, 255, 0.7));
}

.text-outline {
    color: #977143;
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.9), -2px -2px 6px rgba(151, 113, 67, 0.15);
}

.divider-glass {
    width: 80px;
    height: 3px;
    background: rgba(151, 113, 67, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 2px;
}

.fade-in-up {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}