    .slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-box {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.slider-box::-webkit-scrollbar {
    display: none;
}

.white-box {
    background: white;
    color: #333;
    border-radius: 10px;
    padding: 15px;
    width: 220px;
    flex: 0 0 auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.white-box:hover {
    transform: translateY(-5px);
}

.white-box .image {
    position: relative;
    width: 100%;
    display: flex;
    height: 150px;
    left: 0;
    right: 0;
    margin-bottom: 0px;
    align-items: flex-end;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.white-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.white-box .img-1 {
    opacity: 1;
    z-index: 1;
}

.white-box .img-2 {
    opacity: 0;
    z-index: 2;
}

.white-box:hover .img-1 {
    opacity: 0;
}

.white-box:hover .img-2 {
    opacity: 1;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: white;
}

.nav-btn.left {
    left: -10px;
}

.nav-btn.right {
    right: -10px;
}


.home-products-wrapper {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
}

.home-products-wrapper > * {
    width: calc(50% - 15px);
}

    .product-showcase {
width: 45%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    }

        .product-showcase.blue {
            background: linear-gradient(to right, #007bff, #003366);
        }

        .product-showcase.orange {
            background: linear-gradient(to right, #ff7f00, #ffcc00);
            color: #222;
        }

.product-showcase.purple {
    background: linear-gradient(135deg, #6a11cb, #8e2de2);
    color: #fff;
}


.product-showcase.green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
}

    .section-title {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
    }

    .image-box {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .product-card {
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        width: 180px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #333;
    }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 6px;
            background: #f9f9f9;
            margin-bottom: 10px;
        }

    .product-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .product-price {
        font-size: 15px;
        color: #ff4500;
        font-weight: bold;
        margin-bottom: 6px;
    }

    .stars {
        font-size: 16px;
        color: gold;
    }


@media (max-width: 991px){
    .home-products-wrapper {
        flex-wrap: wrap;
		padding: 0px;
    }
	.product-showcase
	{
		width: 100%;
		padding: 6px;
	}
	
	.white-box {
    width: 130px;
	padding: 0px;
	}
	.slider-box {
    gap: 9px;
    padding: 1px 0;
}
	
  .mobile-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;        /* ikonları yan yana dizer */
    gap: 8px;             /* ikonlar arası boşluk */
  }

  /* Sosyal bağlantılar */
  .mobile-social a {
    display: inline-flex;           /* hem <i> hem <svg> için iyi hizalama */
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;            /* gri zemin */
    border-radius: 50%;             /* tam daire */
    transition: background 0.3s;
  }

  .mobile-social a:hover {
    background: #e0e0e0;            /* hover’da biraz koyu gri */
  }

  /* İkonlar (<i>, <svg> veya <img>) */
  .mobile-social a i,
  .mobile-social a svg {
    font-size: 22px;
    color: #333;
    line-height: 1;
  }

  /* Eğer ikon <img> ise isteğe bağlı ufak ayar */
  .mobile-social a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
	
   .product-name {
        font-size: 13px;
    }
	
    .product-card {
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        width: 110px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #333;
    }
	
}

    .featured-title {
        position: absolute;
        top: -20px;
        left: 50%; /* ortanın tam hizasına al */
        transform: translateX(-50%); /* tam ortala */
        background: linear-gradient(135deg, #ff5722, #ff784e);
        color: white;
        font-size: 20px;
        font-weight: bold;
        padding: 8px 20px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        z-index: 10;
        letter-spacing: 0.5px;
        text-align: center;
        white-space: nowrap; /* taşma olursa alt satıra inmesin */
    }

    /* Ana Slider */
    .product-image-wrapper {
        position: relative;
        width: 100%;
    }

        .product-image-wrapper img {
            width: 100%;
            display: block;
            border-radius: 8px;
            transition: opacity 0.3s ease;
        }

        .product-image-wrapper .img-2 {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            pointer-events: none;
        }

    .product-thumb:hover .img-1 {
        opacity: 0;
    }

    .product-thumb:hover .img-2 {
        opacity: 1;
    }


    .main-slider {
        display: flex;
        transition: transform 0.6s ease-in-out;
        width: 100%;
        box-sizing: border-box;
    }

    /* Ana Slider için düzenleme */
    .main-slider-wrapper {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden; /* ✅ taşmayı engeller */
    }



    .main-slider .slide {
        flex: 0 0 100%; /* ✅ her slide tam genişlikte olsun */
        max-width: 100%;
		display: flex;
    }

    .main-slider img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover; /* ✅ resimlerin taşmasını önler */
    }


    .main-slider .slide {
        min-width: 100%;
    }

    .main-slider img {
        width: 100%;
        display: block;
        border-radius: 12px;
    }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        padding: 12px;
        color: white;
        font-size: 28px;
        background: rgba(0,0,0,0.5);
        border: none;
        transform: translateY(-50%);
        border-radius: 50%;
        transition: background 0.3s;
    }

        .prev:hover, .next:hover {
            background: rgba(0,0,0,0.7);
        }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .dots {
        text-align: center;
        margin-top: 10px;
    }

        .dots span {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background 0.3s;
        }

        .dots .active {
            background: #333;
        }

    /* Ürün Slider */
    .product-slider-wrapper {
        position: relative;
        margin: 40px auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.product-slider {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    overflow-x: auto; /* kaydırma açıldı */
    scroll-behavior: smooth;
    flex: 1;

    /* Dokunmatik cihazlarda pürüzsüz kaydırma */
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar'ı gizlemek istersen */
.product-slider::-webkit-scrollbar {
    display: none;
}


    .product-thumb {
        flex: 0 0 auto;
        width: 239px;
        height: 331px;
        text-align: center;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        padding: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

@media (max-width: 992px) {
.product-thumb {
    width: 164px;
    height: 285px;
}
}


        .product-thumb:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }

        .product-thumb img {
            width: 100%;
            border-radius: 8px;
        }

        .product-thumb h4 {
            font-size: 16px;
            margin: 8px 0 5px;
        }

        .product-thumb .price {
            color: #ff5722;
            font-weight: bold;
        }

    .product-prev, .product-next {
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 22px;
        cursor: pointer;
        border-radius: 50%;
        padding: 10px;
        transition: background 0.3s;
    }

        .product-prev:hover, .product-next:hover {
            background: rgba(0,0,0,0.7);
        }
