.hidden {
    display: none !important;
}
#fake-captcha {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    width: 280px;
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
    transition: background-color 0.2s;
    margin: 30px auto 0;
    justify-content: space-between;
}

#fake-captcha.clicked {
    animation: captcha-blink 0.4s ease-out;
}

@keyframes captcha-blink {
    0% { box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.5); }
    100% { box-shadow: 0 0 0 10px rgba(66, 133, 244, 0); }
}

#fake-captcha .checkbox-container {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    margin-right: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

#fake-captcha.checked .checkbox-container {
    background-color: #0f9d58; /* Correct Google Green */
    border-color: #0f9d58;     /* Make border same color to appear solid */
    animation: pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#fake-captcha.checked .checkmark {
    display: block;
}

.checkmark {
    display: none;
    width: 16px;
    height: 16px;
}

@keyframes pop-in {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#fake-captcha .captcha-label {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

#fake-captcha .recaptcha-logo {
    margin-left: auto;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.recaptcha-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}
.recaptcha-text a {
    font-size: 8px;
    color: #555;
    text-decoration: none;
}

.recaptcha-text a:hover {
    text-decoration: underline;
}
.spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 26px;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: -14px;
    animation: rotate 2s linear infinite;
}

#fake-captcha.loading .spinner {
    display: block;
}
#fake-captcha.loading .checkbox-container {
    border-color: transparent;
    background-color: transparent;
}

.spinner .path {
    stroke: #4285F4;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0%   { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50%  { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}
#progress-modal {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 99999999999;
}
.modal-content {
    background: white; 
    padding: 20px 40px; 
    border-radius: 30px;
    text-align: center; 
    width: 700px; 
    height: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    line-height: 1;
}
.progress-circle {
    position: relative; 
    width: 200px; 
    height: 200px; 
    margin: 20px auto;
}
.progress-circle svg { 
    transform: rotate(-90deg); 
}
.progress-background {
    fill: none; 
    stroke: #F6F4FE; 
    stroke-width: 15;
}
.progress-bar {
    fill: none; 
    stroke: url(#progressGradient); 
    stroke-width: 15;
    stroke-linecap: round; stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48; transition: stroke-dashoffset 1s ease-out;
}
.progress-text {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); font-size: 48px;
    font-weight: bold; 
    color: #333;
}
.progress-message {
     color: #767381;
    font-size: 20px;
    font-family: 'Archivo', sans-serif;
    display: flex;
    justify-content: center;
}
#final-content { 
    text-align: center; 
}
.celebration-img {
    width: 20%;
    margin: 0  auto 20px;
}
#final-content p {
    font-size: 18px;
    color: #767381;
    font-family: 'Archivo', sans-serif;
    width: 60%;
    margin: 0 auto;
    border-bottom: 1px solid #E3E1E1;
    padding: 20px 0;
}
#final-content h3 {
    font-size: 30px;
    color: #212630;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    width: 50%;
    margin: 50px auto 20px;
}
.check-prices-btn {
    background-color: #DB2F60; 
    color: #fff; 
    border: none;
    padding: 12px 24px; 
    border-radius: 4px; 
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer; 
    margin-top: 10px; 
    transition: background-color 0.3s;
}
.email-verification-text {
    font-size: 20px;
    color: #767381;
    font-family: 'Archivo', sans-serif;
}
.check-prices-btn:hover { 
    background-color: #DB2F60; 
    color: #fff;
}
.captcha-bottom {
    text-align: center;
}
body.modal-open .flash-sale-banner-main.winter_sale_flash_banner,
body.modal-open .updated-sticky-header,
body.modal-open .growth-floating-button {
    z-index: -1 !important;
}
.email-verfity-commonstyle img {
    width: 80px;
}
.email-verfity-commonstyle h3 {
    font-size: 35px;
    color: #000;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    line-height: 1;
}
.email-verfity-commonstyle p {
    font-size: 18px;
    font-family: 'Archivo', sans-serif;
    color: #767381;
}
button.email-verification-btn-design {
    background: #DB2F60;
    color: #fff;
    border: none;
    min-width: 300px;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0 0;
}
button.email-verification-btn-design-prevent {
    background: #DB2F60;
    color: #fff;
    border: none;
    min-width: 300px;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0 0;
}
.code-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}
.code-inputs input {
    width: 40px;
    border: 1px solid #C1C1C1;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    color: #6F797F;
    font-family: 'Archivo', sans-serif;
    padding: 0;
    height: 40px;
    text-align: center;
}
.code-inputs input[type="number"]::-webkit-outer-spin-button,
.code-inputs input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.enter-code-block span {
    display: block;
    color: #000;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
}
.email-resend-code {
    color: #DB2F60;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin: 0 0 20px;
    display: block;
}
.verify-error-block {
    display: flex;
    align-items: center;
    color: #D74B00;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 10px;
    display: none;
}
.verify-error-block p {
    color: #D74B00;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 10px;
}
body.modal-open {
    overflow: hidden;
}
.followers-modal h3{
    color: #000;
    font-size: 35px;
    font-weight: 700;
}
.followers-modal h3, .followers-modal p{
  font-family: 'Archivo', sans-serif;  
}
.followers-modal p{
    font-size: 18px;
    margin: 0 auto 20px;
    max-width: 80%;
}
@media screen and (max-width:  767px){
    .modal-content{
        width: 95%;
        border-radius: 20px;
        height: auto;
        padding: 30px;
    }
    #final-content p{
        width: 100%;
    }
    #final-content h3{
        width: 100%;
        font-size: 25px;
        margin: 20px auto 20px;
    }
}