
@import url('https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/css/bootstrap.min.css');



body {
    margin-top: 20px;
    background-color: #f5f5f5;
}

/* Header Container Style */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    position: relative;
}

.header-container::after {
    content: "";
    width: 200px;
    position: absolute;
    margin: 0 auto;
    height: 3px;
    border-radius: 1px;
    background: #7ac400;
    left: 0;
    right: 0;
    bottom: -15px;
}

.tag {
    font-size: 32px;
    color: #333;
    font-weight: 600;
}

.heart-icon {
    color: #ff6b6b;
    font-size: 28px;
}

/* Brands Container Style */
.brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Card Style */
.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.brand-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-info h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.brand-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-stats {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 13px;
}

.brand-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-stats i {
    color: #ffd700;
}

/* View All Button Style */
.view-all-container {
    text-align: center;
    margin: 40px 0;

}

.view-all-btn {
    background: #7ac400;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    transition: background 0.3s ease;
    margin: 0 auto;

}

.view-all-btn:hover {
    background: #68a800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 20px;
    }

    .tag {
        font-size: 28px;
    }

    .header-container::after {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .brands-container {
        grid-template-columns: 1fr;
    }

    .tag {
        font-size: 24px;
    }

    .header-container::after {
        width: 120px;
    }

    .brand-card {
        padding: 15px;
    }

    .brand-info h3 {
        font-size: 16px;
    }

    .brand-stats {
        font-size: 12px;
    }
}
