:root {
    --primary-color: #ef8214;
    --primary-color-rgb: 239, 130, 20;
    --secondary-color: #000000;
    --border-color: #808080;
    --text-color: #000000;
    --hover-color: #ef8214;

    --font-size: 14px;
    --border-radius: 5px;
    --padding: 12px;
}

.qty-option {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    font-weight: 500;
    width: 100%;
    gap: 0.5rem;
    font-size: var(--font-size);
    color: var(--text-color);
}

.qty-option:hover {
    border-color: var(--hover-color);
}

.qty-option.selected {
    border: 2px solid var(--primary-color);
}

.qty-option .qty-amount {
    flex: 1;
    color: var(--text-color);
    font-size: 1rem;
    text-align: left;
}

.qty-option .qty-price {
    flex: 1;
    color: #28a745;
    font-size: 1rem;
    text-align: right;
}

.qty-option input[type="radio"] {
    display: none;
}

.qty-selector-wrapper {
    min-width: 95%;
}

.custom-pricing-content-box {
    position: sticky;
    bottom: 40.69px;
    z-index: 15;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 0.3s ease;
    border-radius: 0 !important;
}

@media only screen and (min-width:768px){
    #product-info #get-started {
        bottom: 10px;
        z-index: 15;
    }
}

@media only screen and (max-width:767px){
    .custom-pricing-content-box {
        bottom: 0;   
    }
}

#product-info #get-started {
    z-index: 15 !important;
    bottom: 0;
    border-radius: 0;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-weight: bold;
    font-size: 16px !important;
}

.custom-show-more-btn .background-icon {
    font-size: 4rem;
    opacity: 0.1;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(0.5px);
    color: #fff;
}

.custom-show-more-btn .plus-count {
    font-size: 2rem;
    font-weight: 700;
    z-index: 9;
    position: absolute;
    background: rgba(0,0,0,.7);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-show-more-btn .small {
    font-size: 0.85rem;
    color: #ccc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 2;
}

.show-less-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

@-moz-document url-prefix() {  
    html, body {
      overflow-anchor: none !important;
      scroll-behavior: none !important;
    }
}  