    @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

    body {
        font-family: Rubik, sans-serif;
        background-color:#fafafc;
        margin: 0;
        padding: 0;
    }

    input,
    button,
    select {
        font-family: Rubik, sans-serif;
    }

    input,
    select {
        font-size: 14px !important;
        padding: 15px 10px !important;
    }



    @keyframes scale_buy_btn_lead {
        0% {
            transform: translate(-50%, -50%) scale(0.87);
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
        }
    }

    #fade_buy_btn_lead {
        animation-name: scale_buy_btn_lead;
        animation-duration: 500ms;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        top: 94%;
        z-index: 999;
        position: fixed;
        transform: translate(-50%, -50%) scale(0.996852);
        padding: 15px 10px !important;
        font-size: 21px;

    }

    section {
        margin: 0;
        margin-bottom: 20px;
        background-color: transparent;
    }

    .inner-container {
        margin: 0;
        margin-bottom: 35px;
    }

    .fr-view {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .title-section-content {
        margin: 0;
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-section-content a {
        border: solid;
        border-radius: 40px;
        padding: 10px 20px;
        font-weight: 820;
        text-decoration: none;
        font-size: 1.2rem;
        color: #71BBDE;
    }

    .overlay-button {
        width: 100%;
        position: absolute;
        top: 7.3%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #f0932b;
        color: #fff;
        padding: 10px 0 !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        border: none;
        border-radius: 5px;
        font-size: 23px;
        font-weight: bold;
    }

    .container {
        max-width: 480px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        text-align: right;
    }

    .part-1,
    .part-2 {
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .part-1 img,
    .part-2 img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .form-input {
        margin-bottom: 15px;
    }


    .form-input input,
    .form-input select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 16px;
        text-align: right;
    }

    .form-input input::placeholder {
        color: #999;
    }

    .image-option {
        cursor: pointer;
        display: block;
        margin-bottom: 5px;
        border: 3px solid #e0e0e0;
        border-radius: 5px;
    }

    .image-option img {
        width: 100%;
        height: auto;
        vertical-align: top;
        border-radius: 5px;
    }

    .selected {
        border-color: #71BBDE;
    }

    #color-options {
        display: none;
    }

    .product-list {
        margin: 20px 0;
    }

    .product-item {
        display: flex;
        align-items: center;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 10px;
        margin-bottom: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-item img {
        width: 60px;
        height: auto;
        margin-left: 10px;
    }

    .product-info {
        flex-grow: 1;
    }

    .product-name {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .price {
        color: #e74c3c;
        font-weight: bold;
        font-size: 16px;
    }

    .original-price {
        color: #999;
        text-decoration: line-through;
        font-size: 14px;
        margin-right: 5px;
    }

    .discount {
        background-color: #e74c3c;
        color: white;
        padding: 2px 5px;
        border-radius: 3px;
        font-size: 12px;
        margin-right: 5px;
    }

    .checkout-btn {
        background-color: #71BBDE;
        color: white;
        padding: 15px;
        border: none;
        border-radius: 4px;
        width: 100%;
        font-size: 18px;
        cursor: pointer;
        text-align: center;
        transition: opacity 0.3s;
        position: relative;
    }

    .checkout-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .loader {
        display: none;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #3498db;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        animation: spin 1s linear infinite;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    @keyframes spin {
        0% {
            transform: translateY(-50%) rotate(0deg);
        }

        100% {
            transform: translateY(-50%) rotate(360deg);
        }
    }

    .checkout-btn.loading .loader {
        display: inline-block;
    }

    .checkout-btn.loading span {
        visibility: hidden;
    }


    .ff-form {
        padding: 0 20px;
    }

    .form-container {
        border-color: #71BBDE;
        border-radius: 20px;
        border-style: dashed;
        padding: 10px;
        margin-bottom: 20px;
        border-width: 4px;
        clear: both;
    }

    footer {
        background-color: #71BBDE;
        color: #fff;
        text-align: center;
        padding: 20px 10px;
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .footer-text {
        opacity: 0.8;
    }
