.business-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    direction: rtl;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    padding: 20px;
}

.card-image-placeholder {
    display: block;
    width: 100%;
    height: 160px;
    background-color: #e6e6e6;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    text-align: right;
    background: #f3ebee00;
    color: black;
}

.card-title {
    font-size: 19px;
    margin: 0 0 15px 0;
    color: #000;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: #a21c55;
}

.card-description {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.card-footer {
    padding: 10px 15px 20px 15px;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    margin-top: auto;
}

.more-link {
    color: #d81b60;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex;
    text-align: right;
     flex-direction: column-reverse;
    align-items: flex-start;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
    flex-direction: row-reverse;
    text-align: right;
}

.info-row i {
    color: #d81b60;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.info-text {
    white-space: nowrap;
}

.sub-cat-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.sub-cat-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d81b60;
    margin-top: 5px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.card-footer {
    align-items: flex-end;
    margin-top: auto;
    background: #ffffff;
    border-top: none;
    align-content: space-between;
}

.card-footer a {
    color: #e53897;
    font-weight: bold;
}

.card-body h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #e53897;
    margin-top: 5px;
}

.card-body h3 {
    font-weight: bold;
      font-size: 20px;
}

.category-page .business-card:hover {
    transform: translateY(-5px);
}

.category-page .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #ffffff;
    border-top: none;
    margin-top: auto;
}

.category-page .more-link {
    color: #d81b60 ;
    text-decoration: none;

}
.category-page .more-link::after {
    content: "←";
    font-size: 16px;
}