.jewelry-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.jewelry-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: auto;
    min-height: 40px;
    padding: 0.4rem 1.8rem;
    background: rgba(139, 31, 46, 0.1);
    border: 1.5px solid rgba(139, 31, 46, 0.4);
    color: var(--color-burgundy-dark);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 220px;
    flex: 0 1 auto;
    box-sizing: border-box;
    line-height: 1;
    text-decoration: none;
}

.jewelry-category-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 31, 46, 0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}

.jewelry-category-btn:hover::before { opacity: 1; }

.jewelry-category-btn:hover {
    background: rgba(139, 31, 46, 0.18);
    border-color: var(--color-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-burgundy-hover);
    color: var(--color-burgundy);
}

.jewelry-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.jewelry-btn-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0;
}

.jewelry-category-btn:hover .jewelry-btn-img { transform: scale(1.1); }

.jewelry-btn-text {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 1024px) {
    .jewelry-buttons-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.75rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .jewelry-category-btn {
        width: 100%;
        min-width: unset;
        justify-content: center;
        padding: 0.5rem 1.5rem;
        gap: 10px;
    }

    .jewelry-btn-icon {
        width: 24px;
        height: 24px;
    }

    .jewelry-btn-text {
        font-size: 0.85rem;
        white-space: normal;
        flex: 1;
        line-height: 1.2;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .jewelry-buttons-container { gap: 0.6rem; margin-top: 0.6rem; }
    .jewelry-category-btn { min-height: 40px; gap: 10px; padding: 0.4rem 1.2rem; }
    .jewelry-btn-icon { width: 22px; height: 22px; }
    .jewelry-btn-text { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .jewelry-buttons-container { gap: 0.5rem; margin-top: 0.5rem; }
    .jewelry-category-btn { min-height: 36px; gap: 8px; padding: 0.3rem 1rem; }
    .jewelry-btn-icon { width: 20px; height: 20px; }
    .jewelry-btn-text { font-size: 0.75rem; letter-spacing: 1.5px; }
}

@media (max-width: 360px) {
    .jewelry-buttons-container { gap: 0.4rem; margin-top: 0.4rem; }
    .jewelry-category-btn { min-height: 34px; gap: 6px; padding: 0.25rem 0.8rem; }
    .jewelry-btn-icon { width: 18px; height: 18px; }
    .jewelry-btn-text { font-size: 0.7rem; letter-spacing: 1px; }
}