@import "./helpers.css";

.catalog-cards {
    justify-content: start;
}

.catalog-search-form {
    width: auto;
}

.catalog-search-input-wrapper {
    width: 310px;
}

.catalog-search-input {
    height: 45px;
    border: none;
    box-shadow: none;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

    .catalog-search-input:focus {
        border: none;
        box-shadow: none;
    }

.catalog-card {
    margin-left: 19px;
    margin-right: 19px;
    width: 18.2rem;
    border-color: transparent;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.031372549);
    border-radius: 15px;
    background: #ffffff 0% 0% no-repeat padding-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .catalog-card .card-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .catalog-card .card-text {
        font-size: 14px;
    }

    .catalog-card .card-body {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
    }

.catalog-card-header {
    height: 250px;
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
    background: #f6f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.catalog-initial {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #202124;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: Tajawal-Bold, sans-serif;
    text-transform: uppercase;
}

.catalog-code-row {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f6f5f8;
    color: #202124;
    font-size: 13px;
}

.catalog-code-label {
    font-family: Tajawal-Bold, sans-serif;
    margin-inline-end: 4px;
}

.catalog-code-value {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-description {
    width: 100%;
    max-width: 100%;
    display: block;
    line-height: 1.6;
    word-break: break-word;
    margin-top: 4px;
    margin-bottom: 0;
}

.catalog-card-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
}

    .catalog-card-actions .btn-main {
        flex-shrink: 0;
    }

@media screen and (max-width: 1399px) {
    .catalog-card {
        margin-left: 44px;
        margin-right: 44px;
    }
}

@media (max-width: 1199px) {
    .catalog-card {
        margin-left: 14px;
        margin-right: 14px;
    }
}

@media (max-width: 957px) {
    .catalog-card {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 782px) {
    .catalog-card {
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media (max-width: 681px) {
    .catalog-card {
        margin-left: 1px;
        margin-right: 1px;
    }

    .catalog-cards {
        justify-content: center;
    }

    .catalog-search-form,
    .catalog-search-input-wrapper,
    .catalog-search-form .btn-main {
        width: 100%;
    }

        .catalog-search-form .btn-main {
            margin-left: 0 !important;
        }
}
