body {
    color: #1e293b;
}

.category-header {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-left: 12px;
}

.product-card-list {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    overflow: hidden;
    background-color: #ffffff;
}

.product-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--default) !important;
}

.product-img-container {
    background-color: #f8fafc;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.brand-tag {
    font-size: 0.725rem;
    font-weight: 700;
    color: #94a3b8;
}

.obsolete-tag {
    position: absolute;
    top: 12px;
    left: 0;
    font-weight: 700;
    font-size: 0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.advantage-text {
    font-style: italic;
}

.border-default {
    border-color: var(--default) !important;
}

.border-orange-light {
    border-color: color-mix(in srgb, var(--default) 30%, transparent) !important;
}

