
/* Fix buttons in home page premium grid */
#homeProductList .kombiListesi .butonlar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
}
#homeProductList .kombiListesi .butonlar .btn {
    flex: 1;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-fast);
}
#homeProductList .kombiListesi .butonlar .btn-primaryx {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}
#homeProductList .kombiListesi .butonlar .btn-success {
    background: var(--brand-gradient);
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}
#homeProductList .kombiListesi .butonlar .btn-info {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

/* Tablo styling in home page */
#homeProductList .kombiListesi .tablo {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    justify-content: space-around;
}
#homeProductList .kombiListesi .tablo span {
    font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase;
    display: block;
}
#homeProductList .kombiListesi .tablo p {
    font-size: 0.95rem; font-weight: 800; color: var(--text-main); margin-top: 4px;
}
#homeProductList .col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
#homeProductList .kombialan {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
}
#homeProductList .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
