#colophon {
    background-color: #fff;
    background-image: url(../images/Footer-bg-image.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.footer-top {
    position: relative;
    padding-top: 30px;
}
.footer-top::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 100%;
    height: 50%;
}
.site-newsletter {
    background-image: linear-gradient(90deg, #337783, #206587);
    padding: 50px 70px;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
@media screen and (max-width: 1366px) {
    .site-newsletter {
        padding: 40px;
    }
}
.newsletter-content {
    width: 100%;
    max-width: 680px;
}
.newsletter-content .newsletter-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    margin-bottom: 15px;
}
.newsletter-content .newsletter-subtitle {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}
.newsletter-form {
    width: 100%;
    max-width: 500px;
    background: none;
    border: 1px solid var(--yellow-green);
    border-radius: 5px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
.newsletter-form input,
.newsletter-form button {
    background: none;
    border: none;
    outline: none;
}
.newsletter-form input {
    width: 100%;
    max-width: calc(100% - 70px);
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    padding: 10px 20px;
}
.newsletter-form input:focus,
.newsletter-form input::placeholder {
    color: #fff;
}
.newsletter-form button {
    width: 70px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0;
    background-image: url(../images/subscription-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
}
.footer-middle {
    padding: 70px 0;
    display: block;
    clear: both;
    width: 100%;
}
.footer-widgets {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}
.footer-widget-area {
    width: 100%;
    max-width: 270px;
    color: #fff;;
}
.footer-widget-area section {
    margin: 0;
}
.footer-widget-area .widget-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--yellow-green);
    margin-bottom: 40px;
}
.footer-widget-area ul {
    margin: 0;
}
.footer-widget-area ul,
.footer-widget-area ul li {
    list-style: none;
}
.footer-widget-area .menu a {
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    position: relative;
    left: 0;
    transition: left 0.3s ease-in-out;
}
.footer-widget-area .menu a:hover {
    left: 10px;
    color: var(--yellow-green);
}
.contact-address li {
    margin-bottom: 10px;
    padding-left: 50px;
    background-position: left top;
    background-repeat: no-repeat;
}
.contact-address a {
    font-family: "Albert sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    text-decoration: none;
}
.contact-address a:hover {
    color: var(--yellow-green);
}
.contact-address .address {
    background-image: url(../images/address-icon.png);
}
.contact-address .phone-number {
    background-image: url(../images/top-phone-icon.png);
}
.contact-address .email-address {
    background-image: url(../images/email-icon.png);
}
.footer-bottom {
    padding: 20px 0;
    display: block;
    clear: both;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.copyright-info-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
    color: #fff;
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.social-links,
.social-links li {
    list-style-type: none;
    margin: 0;
}
.social-links a {
    display: block;
}
.social-links img {
    width: 30px;
    height: 30px;
}
.site-privacy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.site-privacy-links a {
    border-left: 2px solid #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    color: #fff;
    padding: 0 15px;
}
.site-privacy-links a:first-child {
    border: none;
}
.copyright-text {
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    color: #fff;
}
.copyright-text a {
    color: var(--yellow-green);
    text-decoration: none;
}
@media screen and (max-width: 1366px) {
    .social-links {
        gap: 10px;
        font-size: 14px;
    }
    .copyright-text {
        font-size: 14px;
    }
    .site-privacy-links a {
        font-size: 14px;
        padding: 0 10px;
    }
}
@media screen and (max-width: 1024px) {
    .site-newsletter {
        padding: 25px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .newsletter-form,
    .newsletter-content {
        max-width: 500px;
    }
    .footer-widgets {
        gap: 10px;
        flex-wrap: wrap;
    }
    .footer-widget-area {
        max-width: calc(50% - 5px);
    }
    .footer-widget-area .widget-title {
        margin-bottom: 20px;
    }
    .footer-middle {
        padding: 40px 0;
    }
    .copyright-info-block {
        flex-direction: column;
        justify-content: center;
    }
}
@media screen and (max-width: 580px) {
    .footer-widget-area {
        max-width: 100%;
    }
    .top-categories-section .owl-prev {
        left: 0;
    }
    .top-categories-section .owl-next {
        right: 0;
    }
    .best-seller-products-area .section-header {
        position: relative;
    }
    .best-seller-products-area .section-header::before {
        display: none;
    }
    .top-categories-section {
        margin-bottom: 0;
    }
    .best-seller-products-area {
        padding: 20px;
        /* width: calc(100% + 40px);
        padding: 20px;
        top: -20px;
        left: -20px; */
    }
    .best-seller-products-area .section-header {
        position: relative;
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        border-radius: 15px 15px 0 0;
    }
    .site-privacy-links {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    .copyright-text {
        text-align: center;
    }
    .footer-middle {
        padding: 20px 0;
    }
    .site-newsletter {
        padding: 20px;
    }
    .deal-title br {
        display: none;
    }
    .home-deals .deal-content {
        padding: 15px;
    }
    .home-deals .deal-content .deal-link {
        width: 110px;
        padding: 10px 15px;
    }
    .home-banner-section .banner-overlay .home-banner-title {
        font-size: 28px;
    }
    .home-banner-section .banner-overlay .banner-sub-title {
        letter-spacing: 0.05em;
        padding: 7px 10px;
    }
    .home-banner-section .banner-image img {
        height: 290px;
    }
    
}