    .other-products-wrapper {
        position: relative;
        margin-top: 2rem;
        padding-bottom: 2rem;
        background-color: #f8f9fa;
        border-radius: 12px;
        padding: 1.5rem;
    }

    .other-products-scroll {
        display: flex;
        gap: 1.25rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 1rem 0;
    }

    .other-products-scroll::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        min-width: 180px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

   

    .image-wrapper {
        height: 200px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.3s ease;
    }

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

    .product-info {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .product-name {
        font-weight: 600;
        font-size: 0.95rem;
        color: #121212;
        margin-bottom: 0.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price {
        font-weight: 700;
        font-size: 1rem;
        color: #198754;
        margin-bottom: 0.75rem;
    }

    .btn-add-to-cart,
    .btn-out-of-stock {
        border: none;
        border-radius: 6px;
        padding: 0.4rem 0;
        font-weight: 600;
        width: 100%;
    }

    .btn-add-to-cart {
        background-color: #121212;
        color: #fff;
        transition: background-color 0.3s ease;
    }

    .btn-add-to-cart:hover {
        background-color: #333;
    }

    .btn-out-of-stock {
        background-color: #dc3545;
        color: #fff;
        cursor: not-allowed;
    }

    .scroll-btn {
        height: 100px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        background-color: rgba(18, 18, 18, 0.3);
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .scroll-btn-left {
        left: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .scroll-btn-right {
        right: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .scroll-btn:hover {
        background-color: rgba(18, 18, 18, 0.6);
    }

    @media (max-width: 768px) {
       
    .other-products-wrapper {
        margin-top: 0.15rem !important; /* 🔧 Navbar'dan sonra başlasın */
        padding: 1rem !important;
    }

    .other-products-scroll {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .product-card {
        min-width: 160px !important;
        max-width: 160px !important;
        flex: 0 0 auto;
    }

    .image-wrapper {
        height: 160px !important;
    }

    .product-name {
        font-size: 0.8rem !important;
    }

    .product-price {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem;
    }

    .btn-add-to-cart {
        font-size: 0.75rem !important;
        padding: 0.3rem 0 !important;
    }

    .btn-out-of-stock {
        font-size: 0.75rem !important;
        padding: 0.3rem 0 !important;
    }
    }
