/* スティッキーフッターの土台 */
#custom-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-sizing: border-box;
}

/* フッター内の価格表示ブロックの調整 */
#custom-sticky-footer #product-details__prices {
    margin-bottom: 0 !important;
    flex: 1;
}

#custom-sticky-footer .form-group {
    margin-bottom: 0 !important;
}

/* ボタンの調整：既存のbtn-block(幅100%)を解除して横並びにする */
#custom-sticky-footer .btn, 
#custom-sticky-footer .button {
    flex: 1;
    margin-top: 0 !important;
    white-space: nowrap;
    max-width: 250px; /* 必要に応じて調整 */
}

/* スマホ表示の際のレイアウト調整（任意） */
@media (max-width: 768px) {
    #custom-sticky-footer {
        padding: 8px;
        gap: 8px;
    }
    #custom-sticky-footer .col, 
    #custom-sticky-footer .col-4 {
        font-size: 12px;
    }
}