.no-scroll{
    overflow: hidden;
}
.custom-footer{
    background-color: #000000;
    padding-top: 80px;
}
.custom-footer .container{
    max-width: 95%;
    margin: auto;
    padding: 10px 30px;
}
.subscribe-btn button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 0.6px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 0;
    background-color: transparent;
    margin: auto;
}
.subscribe-btn button:hover svg{
    rotate: 90deg;
}
.subscribe-btn button svg{
    transition: rotate 0.8s 
    cubic-bezier(0.5, 0, 0, 1);
}
.top h2{
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.6px;
    margin-bottom: 30px !important;
}
.top p{
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    max-width: 750px;
    margin: auto;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin-bottom: 30px;
}
.footer-logo{
    width: 40px;
    height: auto;
    border-radius: 8px;
    background-color: #FFFFFF;
    padding: 10px;
    margin-bottom: 12px;
}
.copyright-text{
    text-align: left;
    font-size: 0.75rem;
    list-style: 14px;
    color: #FFFFFF;
}
.col h4 {
    font-size: 0.75rem;
    line-height: 20px;
    text-transform: uppercase;
    color: #d9d9d9;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    opacity: 0.5;
}
.footer-menu{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.col ul {
    margin: 0;
}
.col ul li {
    list-style: none;
    margin-bottom: 15px;
}
.col ul li a {
    font-size: 0.80rem;
    line-height: 18px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: underline;
    letter-spacing: 0.6px;
}

.subscribe-form{
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}
.subscribe-form.open{
    display: block;
    right: 0;
}
.subscribe-form .form-popup{
    background-color: #ffffff;
    position: absolute;
    right: 0;
    max-width: 46%;
    width: 100%;
    height: 100%;
    padding: 5rem;
    overflow-y: auto;
    transition: all 0.5s ease;
}
.subscribe-form .tnp-submit{
    background-color: #000000 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    line-height: 14px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    padding: 16px 55px !important;
    border: none !important;
    margin-top: 30px !important;
    transition: all 0.5s ease;
}
.subscribe-form .tnp-submit:hover,
.close-sidebar:hover{
    background-color: #e01a2b !important;
}
.close-sidebar{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.5s ease;
}
.form-popup h2{
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
}
.form-popup p{
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
}
.tnp-field-email label{
    display: none !important;
}
input#tnp-1{
    background: transparent;
    border-bottom: 1px solid;
    padding-left: 0;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 400;
}
input#tnp-1::placeholder {
    font-size: 1rem;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 300;
}
.tnp-privacy-field label a {
    font-size: 0.75rem;
    font-weight: 400;
    color: #000000;
    text-decoration: underline;
}
.tnp-privacy-field label {
    display: flex;
    align-items: center;
}



/* ========== 1200px and below ========== */
@media (max-width: 1200px) {
    .subscribe-form .form-popup {
        max-width: 60%;
        padding: 3rem;
    }

    .top p {
        font-size: 24px;
        line-height: 34px;
        max-width: 600px;
    }
}

/* ========== 992px and below ========== */
@media (max-width: 992px) {

    .footer-menu {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
    }

    .custom-footer .container {
        padding: 10px 20px;
    }

    .subscribe-form .form-popup {
        max-width: 70%;
        padding: 2.5rem;
    }

    .form-popup h2 {
        font-size: 1.4rem;
    }

    .form-popup p {
        font-size: 0.95rem;
    }
}

/* ========== 768px (Tablet + Large Mobiles) ========== */
@media (max-width: 768px) {

    .top p {
        font-size: 20px;
        line-height: 28px;
        max-width: 90%;
    }

    .top h2 {
        font-size: 14px;
        margin-bottom: 20px !important;
    }

    .footer-menu {
        gap: 30px;
        margin-top: 40px;
    }

    .col h4 {
        font-size: 0.80rem;
    }

    .col ul li a {
        font-size: 0.75rem;
    }

    .subscribe-form .form-popup {
        max-width: 100%;
        width: 100%;
        padding: 2rem;
        left: 0;
    }

    .close-sidebar {
        width: 40px;
        height: 40px;
        right: 15px;
        top: 15px;
    }

    .subscribe-form .tnp-submit {
        width: 100%;
        padding: 14px !important;
    }
}

/* ========== 480px (Small Phones) ========== */
@media (max-width: 480px) {

    .custom-footer {
        padding-top: 50px;
    }

    .footer-logo {
        width: 32px;
        margin-bottom: 8px;
    }

    .top p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .footer-menu {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .subscribe-form .form-popup {
        padding: 1.8rem 1.2rem;
    }

    .form-popup h2 {
        font-size: 1.2rem;
    }

    .form-popup p {
        font-size: 0.9rem;
    }

    input#tnp-1 {
        font-size: 0.9rem;
    }
}


.wc-accordion-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.wc-accordion-title.active{
    border: none;
}

.tab-description {
    font-size: 0.9rem;
}

.woocommerce-Tabs-panel {
    display: none;
    padding: 15px;
}





















