.treatmedy-selector {
            font-family: inherit;
        }

        .treatmedy-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .treatmedy-option {
            position: relative;
            background: white;
            border: 2px solid rgba(0, 174, 242, 0.3);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .treatmedy-option:hover {
            border-color: #26C2FF;
        }

        .treatmedy-option.selected {
            border-color: #26C2FF;
            background-color: #F2FAFF;
        }

        .badge {
            position: absolute;
            top: -8px; 
            right: 13px; 
            margin: 0 8px;
            padding: 6px 8px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            color: #fff; 
            background-color: #26C2FF; 
            z-index: 2;
        }

        
        .badge::before {
            content: "";
            position: absolute;
            top: 0;
            left: -7px;
            border-left: 8px solid transparent;
            border-bottom: 8px solid #1fa7dc; 
            filter: brightness(0.9); 
        }

       
        .badge::after {
            content: "";
            position: absolute;
            top: 0;
            right: -7px;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #1fa7dc; 
            filter: brightness(0.9);
        }



        .option-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 10px 15px 10px;
        }

        .option-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }

        .product-image {
            width: 75px;
            height: 75px !important;
            border-radius: 8px !important;
            object-fit: contain;
        }

        .product-info {
            flex: 1;
        }

        .product-title {
            margin: 0 0 5px 0;
            font-size: 19px;
            line-height: 25px;
            font-weight: 800;
            color: #000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .each-price {
            font-size: 14px;
            font-weight: 800;
            line-height: 18px;
            color: #000000ff;
            background: #E5F3FF;
            padding: 4px 8px;
            border-radius: 30px;
        }

        .save-text {
            font-size: 17px;
            font-weight: 600;
            line-height: 20px;
            color: #555;
        }

        .free-gift {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #B2E7FB;
            color: black;
            padding: 5px 10px;
            font-size: 12px;
            width: 100%;
        }
        .selected .free-gift {
            background: #26C2FF;
            color: white;
        }

        .socks-image {
            width: 30px;
            height: 30px !important;
            border-radius: 8px !important;
            object-fit: contain;
        }

        .free-text {
            font-size: 14px;
            line-height: 18px;
            font-weight: 800;
        }

        .option-right {
            text-align: right;
        }

        .price-section {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .current-price {
            font-size: 19px;
            line-height: 25px;
            font-weight: bold;
            color: #26C2FF;
        }

        .retail-price {
            font-size: 17px;
            font-weight: 600;
            line-height: 20px;
            color: #555;
            text-decoration: line-through;
        }

        .inventory-status {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            margin: 15px 0;
            font-size: 18px;
            font-weight: 700;
            color: #000000ff;
        }

        .inventory-dot {
            position: relative;
            width: 10px;
            height: 10px;
            background: #00ff00;
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }
        .inventory-dot::before,
        .inventory-dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: rgba(0, 255, 0, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
            animation: ripple 2s infinite ease-out;
        }

        .inventory-dot::after {
            animation-delay: 1s; 
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.4; }
        }

        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.7;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }


        .checkout-btn {
            width: 100%;
            background: #26C2FF !important;
            color: white !important;
            border: none;
            padding: 15px 20px;
            font-size: 20px;
            line-height: 26px;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: none;
            font-family: inherit;
        }

        .checkout-btn:hover,
        .checkout-btn:focus,
        .checkout-btn:active,
        .checkout-btn:visited {
            background: #26C2FF !important;
            color: white !important;
            border: none !important;
            outline: none !important;
        }
        @media (max-width: 768px) {
            
            .option-content, .option-left {
                gap: 5px;
            }
            
            .product-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .price-section {
                align-items: center;
            }
            .product-info{
                flex: unset !important;
            }
        }