/* =========================================================
DRCLEAR - Package Buttons Style (SAFE VERSION)
Single Product Package Table
Fix: Prevent horizontal scroll on mobile
Keep: Original design
========================================================= */


/* ================================
Base Package Button
================================ */
.single-product .drclear-pack-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* IMPORTANT FIX */
    max-width: 100%;
    box-sizing: border-box;

    min-width: 120px;
    min-height: 40px;
    padding: 9px 16px;
    margin-top: 10px;

    background: #ffffff;
    color: #111111;
    border: 1px solid #111111;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;

    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    transition: all 0.2s ease;
}


/* ================================
Hover State
================================ */
.single-product .drclear-pack-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}


/* ================================
Active (Selected Package)
================================ */
.single-product .drclear-pack-btn.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.10);
}


/* ================================
Tablet
================================ */
@media (max-width: 1024px) {
    .single-product .drclear-pack-btn {
        min-width: 110px;
        min-height: 38px;
        padding: 8px 14px;
        font-size: 13px;
    }
}


/* ================================
Mobile (CRITICAL FIX)
================================ */
@media (max-width: 767px) {
    .single-product .drclear-pack-btn {

        /* ===== FIX FOR SCROLL ===== */
        width: auto;
        min-width: 0;
        max-width: 100%;

        /* Keep design */
        min-height: 42px;
        padding: 10px 14px;
        font-size: 13px;
        margin-top: 8px;
    }
}