.recommend-container {
        width: 720px;
        max-width: 100%;
        margin: 20px auto;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", sans-serif;
        box-sizing: border-box;
    }
    
    .recommend-title {
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 600;
        text-align: left;
    }
    
    .recommend-slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    
    .recommend-slider {
        display: flex;
        transition: transform 0.4s ease;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .recommend-item {
        min-width: 137px;
        flex: 0 0 137px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 7px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        background-color: #fff;
        box-sizing: border-box;
    }
    
    .recommend-image {
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 8px;
        border-radius: 3px;
    }
    
    .recommend-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    
    .recommend-product-name {
        font-size: 13px;
        font-weight: 600;
        margin: 0 0 6px 0;
        line-height: 1.3;
        height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: left;
    }
    
    .recommend-price {
        font-size: 13px;
        font-weight: 700;
        color: #e74c3c;
        margin: 6px 0;
        text-align: left;
    }
    
    .recommend-description {
        font-size: 11px;
        color: #666;
        line-height: 1.3;
       
    }
    
    .recommend-description p {
        margin: 3px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }
    
    .recommend-label {
        font-weight: 600;
    }
    
    .recommend-nav {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: #2c3e50;
        color: #fff;
        border: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        z-index: 2;
        transition: all 0.3s ease;
        opacity: 0; /* 初期状態は非表示 */
    }
    
    .recommend-prev {
        left: 2px;
    }
    
    .recommend-next {
        right: 2px;
    }
    
    .recommend-container:hover .recommend-nav {
        opacity: 1; /* ホバー時に表示 */
    }
    
    .recommend-nav:hover {
        background-color: #34495e;
    }
    
    .recommend-nav.disabled {
        background-color: #ccc;
        cursor: not-allowed;
        opacity: 0 !important; /* 無効時は常に非表示 */
    }
    
    /* ページネーションスタイル */
    .recommend-pagination {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 5px;
    }
    
    .recommend-page-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .recommend-page-dot.active {
        background-color: #2c3e50;
    }
    
    @media (max-width: 768px) {
    .recommend-nav, 
    .recommend-pagination {
        display: none;
    }
    
    .recommend-slider-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 5px;
    }
    
    .recommend-slider {
        transform: none !important;
        transition: none;
    }
    
    .recommend-item {
        scroll-snap-align: start;
        min-width: 150px;
        flex: 0 0 150px;
    }
}