.color-catalog-card {
    background-color: red;
    margin-inline: 2rem;
    padding-block: .5rem;
}

.catalog-container {
    max-width: 1000px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(45%, 12rem), 1fr));
}

.catalog-card {
    background-color: #ffffff !important;
    border-width: 0;
    border-color:#000000 !important;
    border-radius: 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
    height: fit-content;
}

.catalog-card:hover,
.catalog-card:focus {
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.25);
}

.image-container {
    display: flex;
    align-items: center;
}

.catalog-image {
    width: 100% !important;
    padding: .65rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: auto;
}

.catalog-title {
    color: #515151;
    padding: 0 .65rem 0 .65rem;
    font-family: var(--bs-body-font-family);
    font-weight: 600;
    font-size: 1.25rem;
}

.title-row {
    max-width: 100%;
}

.catalog-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: auto;
    height: 1.5rem;
}

.color-secondary {
    color: #FCAE56;
}

.button-primary {
    background-color: #FF6D1F !important;
    color: #ffffff !important;
}

.button-primary:disabled {
    opacity: .65 !important;
}

.icon-primary {
    background-color: #FF6D1F !important;
    color: #ffffff !important;
}

.background-secondary {
    background-color: #FCAE56;
}


