.home-banner-section {
    display: grid;
    position: relative;
}
.home-banner-section .banner-image {
    grid-area: 1/1/2/2;
}
.home-banner-section .banner-image img {
    width: 100%;
    height: 710px;
    object-fit: cover;
    object-position: left bottom;
    /* aspect-ratio: 6/2; */
    display: block;
}
.home-banner-section.notHomePage .banner-image img {
    height: auto;
}
@media screen and (max-width: 1680px) {
    .home-banner-section .banner-image img {
        height: 625px;
    }
}
.home-banner-section .banner-overlay {
    grid-area: 1/1/2/2;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-banner-section .banner-overlay .home-banner-content-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1;
}
.home-banner-section .banner-overlay .banner-sub-title {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.2em;
    color: var(--yellow-green);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 190px;
    text-align: center;
    margin: 0;
}
.home-banner-section .banner-overlay .home-banner-title {
    font-family: var(--primary-font);
    font-weight: 800;
    line-height: 1;
    font-size: 72px;
    color: #ffffff;
    margin: 0;
    width: 100%;
    max-width: 670px;
}
.home-banner-section .banner-overlay .home-banner-subtitle {
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.3;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 430px;
}
.home-banner-section .banner-overlay .home-banner-button {
    width: 100%;
    max-width: max-content;
    display: block;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--yellow-green);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 14px;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--white-color);
    transition: background-color 0.3s ease;
}
.home-banner-section .banner-overlay .home-banner-button:hover {
    background-color: var(--yellow-green);
    color: var(--black-color);
}
@media screen and (max-width: 1680px) {
    .home-banner-section .banner-overlay .home-banner-title {
        font-size: 63px;
    }
    .home-banner-section .banner-overlay .home-banner-subtitle {
        font-size: 15px;
    }
}
.top-categories-section {
    padding: 45px 0;
    background-color: #fff;
    margin-bottom: 50px;
}
.top-categories-section .section-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #000;
    margin: 0 0 30px 0;
    text-align: center;
}
@media screen and (max-width: 1680px) {
    .top-categories-section .section-title {
        font-size: 31px;
    }
}
.top-category-item {
    background-color: transparent;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    outline: none;
}
.top-category-item:hover {
    background-color: #bdfa65;
}
.top-category-item .category-icon {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 auto 30px auto;
}
.top-category-item .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.top-category-item .category-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin: 0 0 20px 0;
    text-align: left;
    transition: text-align 1s ease-in-out;
}
@media screen and (max-width: 1680px) {
    .top-category-item .category-title {
        font-size: 15px;
    }
}
.top-category-item:hover .category-title {
    text-align: center;
}
.top-categories-section .owl-nav {
    display: contents !important;
}
.top-categories-section .owl-prev,
.top-categories-section .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}
.top-categories-section .owl-prev span,
.top-categories-section .owl-next span {
    display: block;
    width: 51px;
    height: 51px;
    font-size: 0;
}
.top-categories-section .owl-prev {
    left: -25px;
}
.top-categories-section .owl-prev span {
    background-image: url(../images/slider-arrow.png);
}
.top-categories-section .owl-next {
    right: -25px;
}
.top-categories-section .owl-next span {
    background-image: url(../images/slider-arrow-2.png);
}
.best-seller-products {
    background-color: #fff;
}
.best-seller-products-area {
    background-color: #f9f9f9;
    padding: 100px 70px 80px 70px;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    position: relative;
}
@media screen and (max-width: 1680px) {
    .best-seller-products-area {
        padding: 100px 50px 60px 50px;
    }
}
.best-seller-products-area .section-header {
    --pos: 30px;
    background-color: #1f6487;
    padding: 15px 30px;
    border-radius: 0 0 20px 20px;
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}
.best-seller-products-area .section-header::before {
    content: "";
    width: var(--pos);
    height: var(--pos);
    background: linear-gradient(135deg, #fff 50%, #000 50%);
    position: absolute;
    top: 0;
    left: -30px;
}
.best-seller-products-area .section-header .section-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #cafe80;
    margin: 0 0 10px 0;
}
@media screen and (max-width: 1680px) {
    .best-seller-products-area .section-header .section-title {
        font-size: 32px;
    }
}
.best-seller-products-area .section-header .section-subtitle {
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}
@media screen and (max-width: 1680px) {
    .best-seller-products-area .section-header .section-subtitle {
        font-size: 16px;
    }
}
.home-deals-section {
    background-color: #fff;
    padding: 60px 0;
}
.home-deals {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 50px;
}
.home-deals .deal {
    width: 100%;
    max-width: calc(50% - 25px);
    display: grid;
    grid-template-areas: "stack";
}
.home-deals .deal-image {
    grid-area: stack;
}
.home-deals .deal-content {
    grid-area: stack;
    align-self: flex-end;
    justify-self: start;
    padding: 50px;
}
.home-deals .deal-content .deal-title {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.1;
    color: #fff0ff;
    margin-bottom: 20px;
    display: block;
}
.home-deals .deal-content .deal-title span {
    color: var(--yellow-green);
}
.home-deals .deal-content .deal-link {
    width: 190px;
    padding: 17px 50px;
    border-radius: 30px 30px 0 30px;
    background-color: var(--yellow-green);
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #000;
    display: block;
    text-decoration: none;
}
.home-deals .deal-content .deal-link:hover {
    background-color: var(--white-color);
}
.site-notification-blocks {
    background-color: #fff;
    padding: 0 0 60px;
}
.snb-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.snb-item {
    background: linear-gradient(90deg, #1d5c7c, #0c1a29);
    padding: 45px 40px;
    border-radius: 20px;
}
@media screen and (max-width: 1366px) {
    .snb-item {
        padding: 35px;
    }
}
.snb-item img {
    margin-bottom: 20px;
}
.snb-item h3 {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}
@media screen and (max-width: 1366px) {
    .snb-item h3 {
        font-size: 24px;
    }
}
.snb-item p {
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--yellow-green);
    margin: 0;
}
@media screen and (max-width: 1366px) {
    .snb-item p {
        font-size: 16px;
    }
}
@media screen and (max-width: 1240px) {
    ul.products {
        gap: 10px;
    }
    .product_type_variable, .add_to_cart_button {
        position: relative;
        inset: inherit;
        top: 10px;
        text-align: center;
    }
    ul.products li.product {
        border-radius: 10px;
    }
}

@media screen and (max-width: 1150px) {
    .home-banner-section .banner-overlay .home-banner-title {
        font-size: 55px;
    }
     .home-banner-section .banner-overlay .home-banner-subtitle {
        margin-bottom: 25px;
    }
    .top-categories-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }
    .best-seller-products-area {
        padding: 60px 30px 30px 30px;
        border-radius: 15px;
    }
    .best-seller-products-area .section-header {
        padding: 10px 20px;
    }
    .best-seller-products-area .section-header .section-title {
        font-size: 25px;
    }
    .best-seller-products-area .section-header .section-subtitle {
        font-size: 14px;
    }
    .home-deals .deal-content .deal-title {
        font-size: 27px;
    }
    .home-deals .deal-content {
        padding: 30px;
    }
    .home-deals .deal-content .deal-link {
        width: 160px;
        padding: 15px 30px;
    }
    .snb-lists {
        gap: 10px;
    }
    .snb-item {
        padding: 20px;
    }
    .site-notification-blocks {
        padding-bottom: 40px;
    }
    .home-deals-section {
        padding: 40px 0;
    }
    .announcement-bar {
        padding: 8px 0;
    }
    .announcement-bar .announcement-block {
        gap: 10px;
        flex-direction: column;
    }
    #topbar .logo-search-user-based {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    #topbar {
        padding: 20px 0;
    }
    #topbar .site-search-area {
        max-width: 470px;
    }
    #site-navigation #primary-menu a {
        padding: 15px 20px;
    }
    .home-banner-section .banner-image img {
        height: 420px;
    }
    .home-banner-section .banner-overlay .home-banner-title {
        font-size: 50px;
    }
    .home-banner-section .banner-overlay .home-banner-subtitle {
        margin-bottom: 0;
    }
    .home-banner-section .banner-overlay .home-banner-button {
        padding: 15px 30px;
    }
    .home-banner-section .banner-overlay .banner-sub-title {
        font-size: 12px;
    }
    .top-categories-section .owl-prev span, .top-categories-section .owl-next span {
        width: 35px;
        height: 35px;
        background-size: contain;
    }
    .top-category-item {
        padding: 5px;
    }
    .top-categories-section {
        padding: 30px 0;;
    }
    .top-categories-section .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .snb-lists,
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    ul.products li.product img {
        height: 100%;
        object-fit: contain;
    }
    .product-image-wrapper {
        height: 170px;
    }
    .home-deals {
        gap: 10px;;
    }
    .home-deals .deal-content {
        padding: 20px;
    }
    .home-deals .deal-content .deal-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .home-deals .deal {
        max-width: calc(50% - 5px);
    }
    .home-deals .deal-content .deal-link {
        width: 135px;
        font-size: 15px;
    }
    .home-deals-section {
        padding: 30px 0;
    }
    .site-notification-blocks {
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 768px) {
    .home-banner-section .banner-overlay .home-banner-title {
        font-size: 35px;
    }
    .home-banner-section .banner-image img {
        height: 340px;
    }
    .home-banner-section .banner-overlay .home-banner-button {
        padding: 13px 25px;
    }
    .snb-lists, ul.products.columns-4 {
        grid-template-columns: 1fr;
    }
    .home-deals {
        flex-wrap: wrap;
    }
    .home-deals .deal {
        max-width: 100%;
    }
    .site-notification-blocks {
        padding-bottom: 0;
    }
}