/* Genel ayarlar */
body {
    font-family: 'Manrope', sans-serif;
    height: 100%;
    margin: 0;
}

.buy-button {
    color: black;
    padding: 10px 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.buy-button:hover {
    color: green;
    text-decoration: none;
}

.flex-grow-1 {
    flex-grow: 2;
}

.site-logo {
    height: 100px;
}

.search-bar {
    width: 100%;
    padding: 10px;
}

.emergency-call {
    color: #333;
    font-weight: bold;
    padding: 10px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
}

.category {
    width: 50%;
    /* Mobil cihazlarda iki sütun */
    padding: 5px;
}

.category img {
    width: 90%;
    height: auto;
}

.review-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review-item {
    margin: 10px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    width: 150px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.review-item:hover {
    transform: scale(1.05);
}

.review-logo {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

footer h5 {
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .social-media ul {
    display: flex;
    gap: 10px;
}

footer .social-media ul li a {
    color: white;
}

footer form {
    display: flex;
    gap: 10px;
}

footer .text-center p {
    margin: 0;
}

.contact-article {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.container-v {
    max-width: 1450px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.container-pro {
    max-width: 1450px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.container-bg {
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.card-title {
    text-align: center;
}

.card {
    border : none !important;
}

.contact-form {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form p {
    margin-bottom: 15px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    font-size: 18px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.content-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}

.blog-article header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.blog-article header p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.blog-content img.blog-image {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-description {
    font-size: 1rem;
    color: #444;
    white-space: pre-line; /* Satır sonlarını korumak için */
}

.buttons_custom {
    display: flex;
    flex-direction: row;
    gap: 5px;

}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .submit-button {
        padding: 12px 15px;
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 8px;
    }

    .search-bar {
        display: none;
    }

    .buttons_custom {
        display: flex;
        flex-direction: column;
        gap: 10px;

    }

    .product-detail {
        flex-direction: column;
        align-items: center;
    }

    .left-column {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        margin-bottom: 20px;
        gap: 10px;
        justify-content: center;
    }

    .main-media {
        width: 70%;
    }

    .thumbnail {
        display: none;
    }


    .container-bg .blogs {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;

    }



    .alert {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        margin-bottom: 20px;
    }


    .category {
        flex: 1 1 calc(50% - 10px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .main-media img {
        width: 100%;
        max-width: 100%;
        max-height: 700px;
        object-fit: contain;
        border-radius: 10px;
    }

    .right-column {
        width: 100%;
    }

    .right-column p {
        padding-right: 40px;

    }

    .buy-button {
        padding: 10px 20px;
        width: 95%;
    }



}

.product-detail {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    /* Sütunlar arasında boşluk bırakır */
}

.left-column {
    display: flex;
    flex-direction: column;
    width: 100px;
    gap: 10px;
    /* Küçük resimler ve videolar arasında boşluk bırakır */
}

.thumbnail {
    cursor: pointer;
}

/* Küçük resimler için stiller */
.thumbnail img,
.thumbnail video {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    border-radius: 10px;
}

/* Hover efektleri */
.thumbnail img:hover,
.thumbnail video:hover {
    border-color: #007bff;
}

.main-media {
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-media img,
.main-media video {
    width: 100%;
    max-width: 900px;
    max-height: 900px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.right-column {
    width: 450px;
    padding-left: 25px;
}

.right-column p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.right-column h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.right-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.right-column p {
    font-size: 16px;
    line-height: 1.6;
}

.blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Grid kolonlarını ayarla */
    gap: 20px; /* Grid elemanları arasındaki boşluk */
    padding: 20px; /* Dış boşluk */
}

.blog {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center; /* Ortala */
}

.blog:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hover sırasında gölge efekti */
}

.blog h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.blog p {
    font-size: 14px;
    color: #666;
}

.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background-color: #fff;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card-img-top {
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.blog-card-body {
    padding: 15px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-card-title:hover {
    color: #007bff;
    text-decoration: none;
}

.blog-card-text {
    font-size: 14px;
    color: #666;
}.custom-container {
    max-width: 95%; /* Konteyner genişliğini artır */
    padding-left: 20px; /* Ekstra boşluk */
    padding-right: 20px; /* Ekstra boşluk */
}



@media (min-width: 1200px) {
    .custom-container {
        max-width: 90%; /* Büyük ekranlarda daha geniş */
    }
}


