    .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%;
    height: 150px;
    margin-bottom: 0px;
}

.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;
        justify-content: space-between;
        gap: 30px;
        padding: 30px;
    }

    .product-showcase {
        width: 50%;
        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;
        }

    .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%;
	}
	.white-box {
		    padding: 0px;
    width: 130px;
	}
	
  .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: 18px;
    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;
    }
	
}