.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.brand-header {
    margin-bottom: 1.5rem;
}

.brand-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-title h2 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: #f5f5f5;
    color: #000;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}

.product-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.buy-now-btn {
    background-color: #2ee6d6;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.buy-now-btn:hover {
    background-color: #21c6b8;
}