/* def */
.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}
.mt-3{
    margin-top: 3rem;
}
.mt-4{
    margin-top: 4rem;
}
.mt-5{
    margin-top: 5rem;
}

      /* Genel Stiller */
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', Times, serif;

        }

        body {
            padding-top: 70px; /* Navbar yüksekliği kadar boşluk */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navbar Stilleri */
        .navbar {
            width: 100%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .logo-pic {
            width: 200px;
            height: auto;
        }

        .logo-part .logo {
            text-decoration: none;
        }

        .menu-part ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .menu-part ul li a {
            color: #333;
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            transition: color 0.3s;
            font-weight: bold;
        }

        .menu-part ul li a:hover {
            color: #666;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #fff;
            border-bottom: 1px solid #d3d3d3;
            color: #666;
            font-weight: 700;
        }

        .close-btn {
            cursor: pointer;
            font-size: 24px;
            background: none;
            border: none;
            font-weight: bold;
        }

        /* Slider Stilleri */
        .slider {
            position: relative;
            overflow: hidden;

            margin-bottom: 40px;
        }

        .slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .slider img.active {
            display: block;
        }

        .text-on-top-of-div {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: clamp(1rem, 2vw, 1.8rem);
            text-align: center;
            padding: clamp(1rem, 2vw, 2rem);
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            width: 80%;
            max-width: 800px;
            line-height: 1.5;
        }

/* Ürünler Bölümü */
.urunler {
    text-align: center;
    margin: 30px 0;
    font-size: 2rem;
}

/* Wrapper */
.products-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0 20px 50px;
}

/* Kart */
.product-card {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    color: #fff;
}

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

/* Slider / Görsel alan kartın tamamı */
.product-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Slider içi resimler */
.product-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-slide.is-active {
    opacity: 1;
}

/* Slider butonları */
.product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 26px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

.product-prev {
    left: 10px;
}

.product-next {
    right: 10px;
}

/* Yazılar (resmin ÜSTÜNDE) */
.product-text {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 12px 14px;
    box-sizing: border-box;
    text-align: center;
}

/* Ürün adı – gradient bant */
.product-card-name {
    bottom: 42px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0)
    );
    font-size: 1.1rem;
    font-weight: bold;
}

/* Fiyat – düz siyah bant */
.product-card-price {
    bottom: 0;
    background: rgba(0,0,0,0.85);
    font-size: 1.05rem;
    font-weight: bold;
    color: #fff; /* eski kırmızı yerine okunaklı */
}

/* Mobil */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }

    .product-card-name {
        font-size: 1rem;
    }

    .product-card-price {
        font-size: 0.95rem;
    }

    .product-slider-btn {
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
}


        /* Footer Stilleri */
        .footer {
            background-color: #f7f7f7;
            color: #333;
            margin-top: auto;
            width: 100%;
        }

        .main-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .main-wrapper > div {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }

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

        .list ul a {
            display: block;
            text-decoration: none;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .list ul a:hover {
            color: #666;
        }

        .content-iletisim > div {
            margin: 10px 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .social-icons a {
            margin: 0 15px;
            color: #333;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #007bff;
        }

        .icon-img {
            width: 25px;
            height: 25px;
        }

        .altFooter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-top: 1px solid #ddd;
            flex-wrap: wrap;
        }

        .sak {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 20px;
        }

        .footer-text {
            margin: 5px 0;
        }

        .icon-img3 {
            width: 150px;
            height: auto;
        }

        .icon-img4 {
            width: 250px;
            height: auto;
        }

        .iyizco-pic {
            width: 150px;
            height: auto;
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .slider {
                height: 40vh;
            }

            .text-on-top-of-div {
                width: 90%;
                padding: 15px;
            }

            .hamburger {
                display: flex;
            }

            .menu-part ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #fff;
                flex-direction: column;
                padding-top: 70px;
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
                z-index: 999;
            }

            .menu-part ul.show {
                display: flex;
                transform: translateX(0);
            }

            .menu-part ul li {
                margin: 10px 0;
            }

            .menu-header {
                display: flex;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1001;
            }

            .extra-links {
                display: none;
            }

            .extra-links.show {
                display: flex;
                flex-direction: column;
            }

            .main-wrapper {
                flex-direction: column;
                text-align: center;
            }

            .altFooter {
                flex-direction: column;
                text-align: center;
            }

            .sak {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .logo-pic {
                width: 150px;
            }

            .slider {
                height: 30vh;
            }

            .products-wrapper {
                margin: 0 10px 30px;
            }

            .product-card {
                width: 100%;
                max-width: 280px;
            }
        }
        /* Hakkımızda Bölümü */
        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            margin-top: 40px;
        }

        .about-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .about-title {
            font-size: 2.5rem;
            color: #000000;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #000000);
            border-radius: 2px;
        }

        .about-text {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 25px;
            text-align: justify;
        }

        .highlight {
            background-color: #e8f4fc;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            margin: 25px 0;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            flex: 1;
            min-width: 250px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 15px;
        }

        .feature-title {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 10px;
        }

        .feature-desc {
            color: #666;
            font-size: 0.95rem;
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .about-container {
                padding: 30px 20px;
            }

            .about-title {
                font-size: 2rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .features {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .about-wrapper {
                padding: 20px 15px;
            }

            .about-container {
                padding: 25px 15px;
            }

            .about-title {
                font-size: 1.8rem;
            }
        }
        /* Galeri Konteyneri */
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            margin-top: 40px;
        }

        .gallery-title {
            text-align: center;
            font-size: 2.5rem;
            color: #000000;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #000000);
            border-radius: 2px;
        }

        /* Galeri Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            aspect-ratio: 1 / 1;
            background-color: #fff;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info {
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }

        .gallery-caption {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #3498db;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .lightbox-prev, .lightbox-next {
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.3s;
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Filtre Butonları */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 20px;
            background: white;
            border: 2px solid #3498db;
            color: #3498db;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: #3498db;
            color: white;
        }

        /* Responsive Tasarım */
        @media (max-width: 992px) {
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .gallery-container {
                padding: 30px 15px;
            }

            .gallery-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }

            .gallery-filters {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .gallery {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .gallery-title {
                font-size: 1.8rem;
            }

            .lightbox-nav {
                padding: 0 10px;
            }

            .lightbox-prev, .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 2rem;
            }

            .lightbox-close {
                top: 10px;
                right: 15px;
                font-size: 2rem;
            }
        }


    /* Ürünler Sayfası Stilleri */
    .products-page {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .products-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 2.8rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-subtitle {
        font-size: 1.2rem;
        color: #000000;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .products-container {
        margin-top: 30px;
    }

    /* Masaüstü - 4'lü Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        align-items: stretch;
    }

    .product-card-page {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .product-card-page:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .product-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-image-container {
        position: relative;
        overflow: hidden;
        height: 220px;
        flex-shrink: 0;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .product-card-page:hover .product-image {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: white;
        z-index: 2;
    }

    .product-badge.premium {
        background: #f39c12;
    }

    .product-badge.standart {
        background: #3498db;
    }

    .product-badge.ekonomik {
        background: #27ae60;
    }

    .product-info {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .product-name {
        font-size: 1.2rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 600;
        line-height: 1.3;
    }

    .product-description {
        color: #000000;
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
        flex-grow: 1;
    }

    .product-price {
        margin-bottom: 15px;
    }

    .current-price {
        font-size: 1.4rem;
        color: #e74c3c;
        font-weight: 700;
    }

    .product-features {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .feature {
        font-size: 0.8rem;
        color: #000000;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .feature i {
        color: #3498db;
        width: 14px;
        font-size: 0.9rem;
    }

    /* Tablet - 2'li Grid */
    @media (max-width: 1024px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .products-page {
            padding: 30px 20px;
        }

        .product-image-container {
            height: 200px;
        }
    }

    /* Mobil - Tekli Grid */
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 400px;
            margin: 0 auto;
        }

        .products-page {
            padding: 20px 15px;
        }

        .page-title {
            font-size: 2.2rem;
        }

        .page-subtitle {
            font-size: 1.1rem;
        }

        .product-image-container {
            height: 220px;
        }
    }

    /* Küçük Mobil */
    @media (max-width: 480px) {
        .products-page {
            padding: 20px 10px;
        }

        .page-title {
            font-size: 1.8rem;
        }

        .page-subtitle {
            font-size: 1rem;
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-size: 1.1rem;
        }

        .current-price {
            font-size: 1.3rem;
        }
    }
    .product-form {
        width: 100%;
        max-width: 400px;
        padding: 10px 15px;
        border: 2px solid #3498db;
        border-radius: 30px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s;
    }
    /* Yorumlar Sayfası Stilleri */
    .comments-page {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .comments-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 2.5rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #000000;
        line-height: 1.6;
    }

    /* İstatistikler */
    .comments-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .stat-item {
        text-align: center;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
    }

    .stat-stars {
        color: #f39c12;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        color: #000000;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Yorum Listesi */
    .comments-list {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .comment-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #3498db;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .comment-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }

    .comment-header {
        margin-bottom: 15px;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .user-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3498db, #2980b9);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .user-details {
        flex: 1;
    }

    .user-name {
        font-size: 1.1rem;
        color: #000000;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .comment-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .comment-date {
        color: #000000;
        font-size: 0.9rem;
    }

    .rating-stars {
        color: #f39c12;
        font-size: 0.9rem;
    }

    .comment-body {
        margin-bottom: 15px;
    }

    .comment-text {
        color: #000;
        line-height: 1.6;
        font-size: 1rem;
    }

    .comment-footer {
        border-top: 1px solid #ecf0f1;
        padding-top: 15px;
    }

    .product-info {
        color: #3498db;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Sayfalama */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 40px 0;
    }

    .page-btn {
        width: 40px;
        height: 40px;
        border: 2px solid #e0e0e0;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
    }

    .page-btn.active {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }

    .page-btn:hover:not(.active) {
        border-color: #3498db;
        color: #3498db;
    }

    .page-dots {
        color: #000000;
        padding: 0 10px;
    }

    /* Yorum Formu */
    .add-comment-section {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .form-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .form-title {
        font-size: 1.8rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .form-subtitle {
        color: #000000;
        font-size: 1rem;
    }

    .comment-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #000000;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s;
        background: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

    .rating-input {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 5px;
    }

    .rating-input input {
        display: none;
    }

    .rating-input label {
        font-size: 1.5rem;
        color: #ddd;
        cursor: pointer;
        transition: color 0.3s;
        margin-bottom: 0;
    }

    .rating-input input:checked ~ label,
    .rating-input label:hover,
    .rating-input label:hover ~ label {
        color: #f39c12;
    }

    .char-count {
        text-align: right;
        font-size: 0.8rem;
        color: #000000;
        margin-top: 5px;
    }

    .form-actions {
        text-align: center;
        margin-top: 30px;
    }

    .submit-btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }

    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .comments-page {
            padding: 20px 15px;
        }

        .page-title {
            font-size: 2rem;
        }

        .comments-stats {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 20px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .add-comment-section {
            padding: 25px;
        }

        .comment-card {
            padding: 20px;
        }

        .user-info {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .comment-meta {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .comments-page {
            padding: 15px 10px;
        }

        .page-title {
            font-size: 1.8rem;
        }

        .add-comment-section {
            padding: 20px 15px;
        }

        .form-title {
            font-size: 1.5rem;
        }

        .submit-btn {
            width: 100%;
            justify-content: center;
        }
    }
    .faq-page {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 2.5rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #000000;
        line-height: 1.6;
    }

    .faq-categories {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .category-btn {
        padding: 12px 24px;
        border: 2px solid #3498db;
        background: white;
        color: #3498db;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }

    .category-btn.active,
    .category-btn:hover {
        background: #3498db;
        color: white;
    }

    .faq-list {
        margin-bottom: 50px;
    }

    .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border-left: 4px solid #3498db;
    }

    .faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question h3 {
        margin: 0;
        font-size: 1.1rem;
        color: #000000;
        font-weight: 600;
        flex: 1;
    }

    .faq-icon {
        font-size: 1.5rem;
        color: #3498db;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .faq-item.active .faq-answer {
        padding: 20px 25px;
        max-height: 500px;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer p {
        margin: 0;
        color: #000;
        line-height: 1.6;
    }

    .additional-help {
        background: linear-gradient(135deg, #3498db, #2980b9);
        border-radius: 15px;
        padding: 40px;
        text-align: center;
        color: white;
    }

    .help-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
    }

    .help-content p {
        margin-bottom: 25px;
        opacity: 0.9;
        color: #fff;
    }

    .contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: #3498db;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        .faq-page {
            padding: 20px 15px;
        }

        .page-title {
            font-size: 2rem;
        }

        .faq-categories {
            gap: 8px;
        }

        .category-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .faq-question {
            padding: 15px 20px;
        }

        .faq-question h3 {
            font-size: 1rem;
        }

        .additional-help {
            padding: 30px 20px;
        }
    }

    @media (max-width: 480px) {
        .faq-page {
            padding: 15px 10px;
        }

        .page-title {
            font-size: 1.8rem;
        }

        .category-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        .faq-question {
            padding: 15px;
        }

        .faq-answer {
            padding: 0 15px;
        }

        .faq-item.active .faq-answer {
            padding: 15px;
        }
    }
    .contact-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 2.5rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #000000;
        line-height: 1.6;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .contact-form-section {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .form-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .form-header h2 {
        font-size: 1.8rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .form-header p {
        color: #000000;
        font-size: 1rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #000000;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s;
        background: white;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }

    .contact-info-section {
        height: 100%;
    }

    .info-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

    .info-card h3 {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
    }

    .contact-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    .contact-icon i {
        color: #fff;
    }

    .contact-details h4 {
        font-size: 1.1rem;
        color: #000000;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .contact-details p {
        color: #000000;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 768px) {
        .contact-page {
            padding: 20px 15px;
        }

        .page-title {
            font-size: 2rem;
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .contact-form-section,
        .info-card {
            padding: 30px 25px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .contact-icon {
            align-self: center;
        }

        .contact-details {
            text-align: center;
            margin: auto;
        }
    }

    @media (max-width: 480px) {
        .contact-page {
            padding: 15px 10px;
        }

        .page-title {
            font-size: 1.8rem;
        }

        .contact-form-section,
        .info-card {
            padding: 25px 20px;
        }

        .form-header h2 {
            font-size: 1.5rem;
        }

        .submit-btn {
            padding: 12px;
            font-size: 1rem;
        }

        .contact-details {
            text-align: center;
            margin: auto;
        }
    }
   .custom-pagination {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin: 40px 0;
            padding: 20px 0;
        }

        .pagination-info {
            color: #000000;
            font-size: 0.9rem;
            text-align: center;
        }

        .pagination-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            text-decoration: none;
            color: #000;
            font-weight: 600;
            transition: all 0.3s ease;
            background: white;
        }

        .page-link:hover:not(.disabled):not(.active) {
            border-color: #3498db;
            color: #3498db;
            transform: translateY(-2px);
        }

        .page-link.active {
            background: #3498db;
            border-color: #3498db;
            color: white;
        }

        .page-link.disabled {
            background: #f8f9fa;
            border-color: #e0e0e0;
            color: #bdc3c7;
            cursor: not-allowed;
        }

        .page-link i {
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pagination-links {
                gap: 5px;
            }

            .page-link {
                min-width: 35px;
                height: 35px;
                padding: 0 8px;
                font-size: 0.9rem;
            }

            .pagination-info {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .pagination-links {
                gap: 3px;
            }

            .page-link {
                min-width: 32px;
                height: 32px;
                padding: 0 6px;
                font-size: 0.85rem;
            }
        }
        .prd-inf-wrapper {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        .prd-inf-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            margin-bottom: 20px;
        }
        .main-pic {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .right-main-picture {
            width: 100%;
            max-width: 600px; /* Maksimum genişlik */
            height: auto; /* Yükseklik otomatik */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .right-main-picture img {
            width: 100%;
            height: auto; /* Yüksekliği otomatik ayarla */
            object-fit: cover;
        }
        .right-side-for-prod-info {
            text-align: center;
        }
        .prd-info {
            margin-bottom: 20px;
        }
        .prd-info h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        .prd-info h2 {
            font-size: 20px;
            color: #FF5733;
            margin-bottom: 20px;
        }
        .buy-item {
            background-color: #333;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: block;
            margin: 0 auto;
        }
        .buy-item:hover {
            background-color: #000;
        }

        /* Mobil cihazlar için stil ayarları */
        @media (max-width: 600px) {
            .right-main-picture {
                width: calc(100% - 20px); /* Sağdan ve soldan 10px boşluk bırakır */
                margin: 0 auto; /* Ortalar */
            }
            .prd-info h1 {
                font-size: 20px;
            }
            .prd-info h2 {
                font-size: 18px;
            }
            .prd-info h3 {
                font-size: 14px;
            }
            .buy-item {
                font-size: 14px;
                padding: 10px 20px;
            }
            .buy-item:disabled {
                background-color: #aaa;
                cursor: not-allowed;
            }
        }
        .buy-item:disabled {
            background-color: #aaa;
            cursor: not-allowed;
        }

        /* Ürün Detayları için stil ayarları */
        #product-details {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .details-text {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .details-inside-text {
            padding: 20px;
            font-size: 16px;
            line-height: 1.6;
            font-weight: bold;
        }
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.whatsapp-text {
    white-space: nowrap;
}

/* MOBİL */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        padding: 12px 16px;
    }
}
