/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.slide {
    min-width: 100%;
    height: auto;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.slider-button.prev {
    left: 20px;
}

.slider-button.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* Kategori Kartları */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1400px;
    padding: 0 15px;
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    text-align: center;
}

.category-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Müşteri Yorumları */
.product-reviews {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.review-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #000;
    margin: 20px auto;
    max-width: 800px;
    display: none;
    transform: translateX(100%);
    opacity: 0;
    min-height: 280px;
}

.review-card.active {
    display: block;
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f1f1f1, #e1e1e1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.user-avatar i {
    font-size: 20px;
    color: #555;
}

.review-user-info {
    flex-grow: 1;
}

.review-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.4;
}

.reviewer-name {
    font-size: 16px;
    color: #636e72;
    margin: 0;
    font-weight: 500;
}

.review-content {
    font-size: 18px;
    color: #2d3436;
    line-height: 1.8;
    margin-bottom: 60px;
    padding: 0 20px;
    font-style: italic;
    position: relative;
}

.review-content::before,
.review-content::after {
    content: '"';
    font-size: 50px;
    color: #ff4b4b;
    position: absolute;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.review-content::before {
    left: -10px;
    top: -20px;
}

.review-content::after {
    right: -10px;
    bottom: -40px;
}

.marketplace-info {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 25px;
    right: 30px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.marketplace-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.marketplace-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marketplace-name {
    font-size: 16px;
    color: #2d3436;
    font-weight: 600;
}

.review-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.review-nav-button {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-nav-button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.review-nav-button i {
    color: #333;
    font-size: 20px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 10px;
        width: 100%;
        overflow: hidden;
    }

    .category-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 15px;
        padding: 0 15px;
        margin: 15px -15px;
        width: 100vw;
        box-sizing: border-box;
    }

    .category-card {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: center;
        margin-right: 0;
        aspect-ratio: 16/9;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 15px;
    }

    .product-card {
        padding: 15px;
    }

    .product-title {
        font-size: 16px;
        height: auto;
        margin-bottom: 15px;
    }

    .product-price {
        font-size: 20px;
    }

    .min-quantity {
        font-size: 13px;
        padding: 4px 8px;
    }

    .bulk-discount {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Scroll bar'ı gizle ama kaydırmayı aktif tut */
    .category-cards::-webkit-scrollbar {
        display: none;
    }
    
    .category-cards {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .review-card {
        padding: 25px;
        margin: 15px;
        min-height: auto;
    }

    .review-content {
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    .marketplace-info {
        position: absolute;
        bottom: 20px;
        right: 25px;
        padding: 6px 12px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-avatar i {
        font-size: 18px;
    }

    .review-product-title {
        font-size: 16px;
    }

    .marketplace-logo {
        width: 24px;
        height: 24px;
    }

    .marketplace-name {
        font-size: 14px;
    }

    .review-nav-buttons {
        width: 100%;
        left: 0;
    }

    .main-banner {
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .product-card {
        padding: 12px;
    }

    .product-title {
        font-size: 15px;
    }

    .product-price {
        font-size: 18px;
    }

    .min-quantity {
        font-size: 13px;
        padding: 4px 8px;
    }

    .bulk-discount {
        font-size: 12px;
        padding: 8px 12px;
    }

    .category-card-title {
        font-size: 20px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-content {
        height: auto;
        -webkit-line-clamp: 4;
    }
}

/* Seçili Ürünler Bölümü */
.selected-products {
    padding: 40px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #000;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    padding-bottom: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.product-image .secondary-image {
    opacity: 0;
}

.product-card:hover .product-image .primary-image {
    opacity: 0;
}

.product-card:hover .product-image .secondary-image {
    opacity: 1;
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 10px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.min-quantity {
    background-color: #ff4b4b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.product-price {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.bulk-discount {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    background: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    white-space: nowrap;
    justify-content: center;
    font-weight: 500;
}

.bulk-discount i {
    font-size: 14px;
    color: #ff7675;
}

.product-button {
    background: #00b894;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: #00a884;
}

.no-products {
    text-align: center;
    padding: 30px;
    font-size: 16px;
    color: #666;
    grid-column: 1 / -1;
    background: #f8f8f8;
    border-radius: 8px;
}

/* Mevcut Media Queries'e eklenecek */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Ana Banner */
.main-banner {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.main-banner img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-banner {
        margin: 20px 0;
    }
}

/* Tüm Ürünlerimiz Bölümü */
.all-products {
    padding: 40px 0 60px;
    background: #fff;
}

.all-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.view-all-button-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.view-all-button i {
    transition: transform 0.3s ease;
}

.view-all-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .all-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .all-products .products-grid {
        grid-template-columns: 1fr;
    }

    .view-all-button {
        width: calc(100% - 30px);
        margin: 0 15px;
        justify-content: center;
    }
}

/* Güvenli Alışveriş Özellikleri */
.shopping-features {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 40px;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #2d3436;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .feature-item h3 {
        font-size: 16px;
    }
}

/* İletişim Bilgileri */
.contact-info {
    padding: 60px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #000;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-header i {
    font-size: 24px;
    color: #000;
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-header i {
    color: #ff4b4b;
    transform: scale(1.1);
}

.contact-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 18px;
    color: #000;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3436;
}

.contact-item a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #000;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-numbers a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-numbers a:hover {
    color: #ff4b4b;
}

.email-link {
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.email-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .phone-numbers a {
        font-size: 15px;
    }

    .email-link {
        margin-top: 3px;
        padding-top: 8px;
    }
}

.store-info {
    flex: 1;
}

.store-name {
    color: #ff4b4b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .store-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
}

.store-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.store-link:hover {
    color: inherit;
}

.store-link .phone-numbers a {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.store-link .email-link {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
}

.loading-logo {
    width: 80px;
    height: 80px;
    animation: logoAnimation 2s infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoAnimation {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff4b4b;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.visible + .whatsapp-button {
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-button,
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
    }

    .whatsapp-button {
        font-size: 24px;
        left: 20px;
    }

    .scroll-to-top {
        font-size: 16px;
        right: 20px;
    }

    .scroll-to-top.visible + .whatsapp-button {
        transform: translateY(0);
    }
}

/* Container genişliği kontrolü */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .container {
        max-width: 100%;
    }
} 

.marketplaces-container {
    max-width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px 0;
    position: relative;
}

.marketplaces-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.marketplace-slider {
    display: flex;
    gap: 20px;
    animation: scrollLogos 10s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.marketplace-slider:hover {
    animation-play-state: paused;
}

.marketplace-item {
    display: inline-block;
}

.marketplace-item img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.marketplace-item img:hover {
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .marketplace-slider {
        animation-duration: 15s;
    }
    .marketplace-item img {
        width: 90px;
    }
}

