.header-section {
    background-size: cover;
    background-position: center;
    padding: 8rem 4rem;
    text-align: center;
    color: #333;
    position: relative;
}

.header-section h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(227, 227, 227); /* yazının iç rengi */
    -webkit-text-stroke: 2px #000; /* dış çizgi (kalınlık + renk) */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-product-card-urun img {
    width: auto;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 1rem auto;
}

.custom-products-grid2 {
    display: flex;
    justify-content: center; /* kartları yatayda ortalar */
    align-items: flex-start; /* dikey hizayı düzgün tutar */
    flex-wrap: wrap; /* satır dolarsa alta geçsin */
    gap: 20px; /* kartlar arası boşluk */
}

.custom-product-card-urun {
    width: 17rem; /* sabit kart genişliği */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.custom-category-title2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #a2781b;
    text-transform: capitalize;
    position: relative;
}

.custom-products-wrapper2 {
    text-align: center; /* başlığı ortalar */
    margin: 3rem auto; /* bölümü sayfa ortasına alır */
    max-width: 1200px; /* fazla genişlemeyi önler */
}

.product-title {
    margin: 0;
    padding: 0.5rem;
}

.custom-product-card-urun:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.custom-button {
    display: inline-block;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #a2781b;
    color: white;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #8b6615;
}

@media (max-width: 768px) {
    .custom-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
