/* ===============================
   Main Modal
   =============================== */
#cta-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

#cta-modal-content {
    background-color: #fff;
    max-width: 700px;
    width: 90%;
    margin: 2rem auto;
    padding: 30px 40px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.3s ease-out;
}

#cta-modal-close {
    position: absolute;
    top: 0;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: #B4B4B4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    user-select: none;
    z-index: 10000;
}

#cta-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

body.modal-open {
    overflow: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #cta-modal-content { padding: 20px; }
}

/* CTA Button */
#cta-button-container {
    margin-top: 0;
    text-align: center;
    padding: 10px 10px 20px;
    background-color: #F2F2F2;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cta-summary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-summary-button:hover {
    background-color: #26A454 !important;
    color: #ffffff !important;
}

.cta-summary-button i { font-size: 1.8em; }

/* Mini Modal */
#mini-cta-modal {
    display: none;
    position: fixed;
    z-index: 11000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

#mini-cta-modal-content {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.25s ease-out;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

#mini-cta-modal-close {
    position: absolute;
    top: 0;
    right: 17px;
    font-size: 24px;
    cursor: pointer;
    color: #444;
}

#mini-cta-modal-close:hover { color: #000; }

.mini-modal-title {
    font-size: 18px;
    color: #27939b;
    font-weight: 600;
}

.mini-modal-qr { width: 200px; max-width: 100%; border-radius: 6px; }

.mini-modal-number {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}



/* ===============================
   WooCommerce Custom Box
   =============================== */
.my-custom-box {    
    margin: 0 auto 20px auto;
    width: 60%; 
    display: flex;
    align-items: center;	
    gap: 10px;
    padding: 5px;
    background-color: #90EE90;
    border-radius: 6px;
    margin-bottom: 30px;
    cursor: pointer;
}

@media (max-width: 768px) { .my-custom-box { width: 100%; } }

.my-custom-text {       
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    font-size: 13px;
}

@media (max-width: 768px) { .my-custom-text { width: 73%; } }

.upload-logo-two {
    margin-left: auto;
    padding: 5px 5px;
    background-color: #006400;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) { .upload-logo-two { width: 27%; } }

.upload-logo-two:hover { background-color: #004d00; }
