.category-link {
    display: block;
    padding: 8px 16px;
    margin: 4px 0;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
}
.category-link span {
    color: #666;
    font-size: 0.9em;
}
.promo-banner {
    background: linear-gradient(45deg, #ff44005a, #ff8c006b),url("../images/background/promo.png");
    background-size: cover;
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.promo-text {
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.quantity-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
}

/* photo gallery */

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-img:hover {
    transform: scale(1.02);
}
.business-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}
.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.business-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.share-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.rating-badge {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 2px 8px;
    font-size: 0.9em;
}

/* importer section c */

.review-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.review-card:hover {
    transform: scale(1.05);
}
.badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}
.review-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.review-card .card-body {
    position: relative;
}
.share-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5f5f5;
    border-radius: 50%;
    padding: 8px;
}