/* 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: #17a2b8;
    text-decoration: none;
}

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

.site-logo {
    height: 38px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

/* Site header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.site-header-inner {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.site-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 4px 14px;
    min-height: 46px;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
    flex-shrink: 0;
}

.site-header-logo:hover {
    border-color: #17a2b8;
    text-decoration: none;
}

.site-header-logo:focus-visible {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.15);
}

.site-search {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.site-search form {
    display: flex;
    width: 100%;
    align-items: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 4px 4px 4px 6px;
    min-height: 46px;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.site-search form:focus-within {
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.15);
}

.site-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 10px;
    font-size: 14px;
    min-width: 0;
    height: auto;
}

.site-search input:focus {
    outline: none;
    box-shadow: none;
}

.site-search button {
    border-radius: 6px;
    padding: 8px 22px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.site-header-actions .btn {
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
}

a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active {
    text-decoration: none !important;
}

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

.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;
}

/* Site footer */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    border-top: 3px solid #17a2b8;
}

.site-footer-main {
    padding: 28px 0 10px;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
    gap: 28px;
    align-items: start;
}

.site-footer-brand {
    max-width: 320px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
}

.site-footer-logo img {
    height: 40px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
}

.site-footer-logo-text {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.site-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.site-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    transition: border-color .2s ease, background .2s ease;
}

.site-footer-phone svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #5bc0de;
}

.site-footer-phone:hover {
    border-color: #17a2b8;
    background: rgba(23,162,184,.12);
    color: #fff !important;
    text-decoration: none !important;
}

.site-footer-book {
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
}

.site-footer-book:hover {
    text-decoration: none !important;
}

.site-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-footer-heading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 6px;
}

.site-footer-links a {
    color: #d1d5db;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    transition: color .2s ease;
}

.site-footer-links a:hover {
    color: #5bc0de;
    text-decoration: none !important;
}

.site-footer-note {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.site-footer-social {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff !important;
    text-decoration: none !important;
    transition: background .2s ease, border-color .2s ease;
}

.site-footer-social-item:hover {
    background: rgba(23,162,184,.14);
    border-color: rgba(23,162,184,.45);
    color: #fff !important;
    text-decoration: none !important;
}

.site-footer-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #17a2b8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer-social-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.site-footer-social-label {
    font-size: 13px;
    font-weight: 600;
    color: #f3f4f6;
}

.site-footer-copy-wrap {
    margin-top: 20px;
    padding-bottom: 16px;
    text-align: center;
}

.site-footer-copy {
    margin: 14px 0 0;
    font-size: 12px;
    color: #9ca3af;
}

.site-footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
}

@media (max-width: 1100px) {
    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .site-footer-brand {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .site-footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .site-footer-col--social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer-main { padding: 22px 0 8px; }
    .site-footer-nav { grid-template-columns: 1fr; }
    .site-footer-cta { flex-direction: column; align-items: stretch; }
    .site-footer-book { text-align: center; }
    .site-footer-logo img { height: 36px; max-width: 150px; }
    .site-footer-copy-wrap { margin-top: 16px; padding-bottom: 14px; }
    .site-footer-copy { margin-top: 12px; }
}

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 {
    color: #5bc0de;
    text-decoration: none;
}

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 */
}

.about-us-1 {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 16px 40px;
    width: 100%;
}

/* 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,
    .site-search {
        display: block;
        width: 100%;
        max-width: none;
        order: 3;
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo actions"
            "search search";
    }

    .site-header-logo {
        grid-area: logo;
        min-height: 42px;
        padding: 4px 10px;
    }
    .site-header-actions { grid-area: actions; justify-self: end; }
    .site-search { grid-area: search; }

    .site-logo {
        height: 32px;
        max-width: 120px;
    }

    .site-search form {
        flex-direction: row;
        min-height: 42px;
    }

    .site-search input {
        margin-bottom: 0;
    }

    .buttons_custom,
    .site-header-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .product-detail:not(.cat-layout) {
        flex-direction: column;
        align-items: center;
    }

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

    .main-media:not(.cat-gallery-col) {
        width: 100%;
        max-width: 100%;
    }

    .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:not(.cat-gallery-col) img {
        width: 100%;
        max-width: 100%;
        max-height: 700px;
        object-fit: contain;
        border-radius: 10px;
    }

    .right-column:not(.cat-sidebar) {
        width: 100%;
    }

    .right-column:not(.cat-sidebar) p {
        padding-right: 0;
    }

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



}

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

.left-column:not(.cat-gallery-col) {
    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:not(.cat-gallery-col) {
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-media:not(.cat-gallery-col) img,
.main-media:not(.cat-gallery-col) 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:not(.cat-sidebar) {
    width: 450px;
    padding-left: 25px;
}

.right-column:not(.cat-sidebar) p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.right-column:not(.cat-sidebar) h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.right-column:not(.cat-sidebar) h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.right-column:not(.cat-sidebar) 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ş */
    }
}


