:root {
    --blue-1-color: #1f1f47;
    --blue-2-color: #3b3b8a;
    --green-1-color: #1ed91e;
    --green-2-color: rgba(1, 226, 129, 1);

    --carousel-button-active-bgcolor: #9c9797;
    --carousel-button-active-color: black;
    --carousel-button-deactive-bgcolor: #d5d0d0;
    --carousel-button-deactive-color: gray;
    --carousel-button-active-hover-bgcolor: #1f1f47;
    --carousel-button-active-hover-color: white;

    --left-button-hover-bgcolor: var(--carousel-button-active-hover-bgcolor);
    --left-button-hover-color: var(--carousel-button-active-hover-color);
    --right-button-hover-bgcolor: var(--carousel-button-deactive-bgcolor);
    --right-button-hover-color: var(--carousel-button-deactive-color);

    --footer-paragraph-color: #c5c3c3 ;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    background: url(../images/bg-hero.jpg);
    height: 660px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

nav {
    position: relative;
    background: var(--blue-1-color);
    height: 129px;
}

.nav-fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 2;
}

nav .row1 {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.row1 .logo {
    margin-top: -9px;
}

.logo img {
    height: 85px;
}

.search-wrapper {
    background: #5b5b99;
    border-radius: 35px;
    overflow: hidden;
    padding: 5px;
    padding-left: 23px;
    white-space: nowrap;
}

.search-wrapper input {
    background: #5b5b99;
    border: none;
    font-size: 17px;
    outline: none;
    caret-color: white;
}

.search-wrapper input::placeholder {
    color: rgb(226, 226, 226);
}

.search-icon {
    background: var(--blue-1-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
}

.call-icon {
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.call-service:hover .call-icon {
    color: var(--green-1-color);
    border: solid 1px var(--green-1-color);
}

.call-service {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.call-service h2 {
    color: #adabab;
    font-size: 16px;
    white-space: nowrap;
}

.call-service h3 {
    color: white;
    font-weight: 700;
    font-size: 21px;
    white-space: nowrap;
}  

nav a {
    text-decoration: none;
}

.basket-icon {
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.basket-icon-2 {
    display: none;
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.menu-icon {
    display: none !important;
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.mobile-icons {
    display: flex;
    gap: 10px;
}

.heart-icon {
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.user-icon {
    color: white;
    border: solid 1px gray;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
}

.close-icon {
    display: none !important;
    transition: 0.5s ease;
}

.close-icon:hover {
    transform: rotate(90deg);
}

.account-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icons-separator {
    background: gray;
    width: 1px;
    height: 34px;
}

.basket-wrapper {
    position: relative;
    margin-right: 10px;
}

.basket-wrapper .basket-count {
    width: 18px;
    height: 18px;
    background: var(--green-1-color);
    position: absolute;
    top: 50%;
    right: -9px;
    border-radius: 14px;
    transform: translateY(-50%);
    padding-left: 5px;
    padding-top: 1px;
}

.basket-wrapper .basket-count span {

}

.basket-panel {
    position: absolute;
    background: white;
    width: 300px;
    height: 200px;
    z-index: 2;
    top: 70px;
    border-radius: 10px;
    padding: 20px;
    display: none;
    right: 132px;
}

.basket-panel.basket-panel-open {
    display: block;
}


.basket-panel-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: solid 1px #d6d0d0;
    border-radius: 10px;
}

.basket-panel-cart svg {
    height: 68px;
    margin-bottom: 10px;
    color: #d6d0d0;
}

.menu-container {
    background: var(--blue-2-color);
    height: 61px;
    width: calc(100% - 40px);
    margin: 20px;
    position: absolute;
    bottom: -43px;
    border-radius: 34px;
    padding: 21px;
    /*display: flex;*/
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    padding-left: 22px;
}  

.menu-container .menu-link {
    color: white;
    position: relative;
    float: left;
    margin-right: 21px;
}

.menu-container .menu-link a {
    text-decoration: none;
    color: white;
}

.menu-container .menu-link:hover a {
    color: var(--green-2-color);
}

.menu-container .menu-link:hover i {
    color: var(--green-2-color);
}

.menu-container .menu-link .link-plus {
    position: absolute;
    left: 0px;
    bottom: -2px;
    font-size: 9px;
    color: white;
    background: #ff5607;
    padding: 3px;
    border-radius: 7px;
    margin-right: 0px;
}

.menu-container .menu-link-selected {
    color: var(--green-2-color) !important;
}

.menu-container .menu-link-selected a {
    color: var(--green-2-color);
}

.link-plus-wrapper {
    display: inline-block;
    position: relative;
}

.menu-container .sub-menu-1 {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background: var(--blue-1-color);
    padding: 10px;
    top: 29px;
    gap: 10px;
    border-radius: 10px;
    z-index: 2;
    width: 100%;
}

.desktop-sub-menu-1-open {
    display: flex !important;
}

.desktop-sub-menu-2-open {
    display: flex !important;
}

.menu-container button {
    float: right;
    border: none;
    padding: 14px;
    border-radius: 22px;
    background: var(--green-1-color);
    margin-top: -12px;
    margin-right: -9px;
    cursor: pointer;
}

.menu-container button:hover  {
    color: var(--green-1-color);
    background: var(--blue-1-color);
}

.percentage-icon {
    font-size: 12px;
}

.angle-down {
    display: block;
}

.angle-up {
    display: none !important;
}

.product-class {
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;   
    border: solid 1px #635f5f;
}

.product-class:hover {
    border: solid 1px var(--green-2-color);
}

.product-class:hover img {
    transform: rotateY(360deg);
}

.product-class img {
    height: 58px;
    margin-bottom: 13px;
    transition: 0.5s ease;
}

.product-class h2 {
    font-size: 14px;
    color: var(--green-2-color);
    margin-top: 16px;
}

.product-class h1 {

}

.menu-row2 {
    position: relative;
}

.sub-menu-2 {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 29px;
    left: 226px;
    background: var(--blue-1-color);
    padding: 10px;
    color: white;
    border-radius: 10px;
    gap: 20px;
    z-index: 2;
}

.sub-menu-2 .categories {

}

.sub-menu-2 .sub-menu-separator {
    width: 1px;
    height: 141px;
    background: gray;
    margin-top: -2px;
}

.sub-menu-2 .top-tags {
    
}

.sub-menu-2 .quick-access {

}

.mobile-angle-down {
    display: none !important;
}

.sub-menu-2 a {
    text-decoration: none;
    color: white;
}

.sub-menu-2 a:hover {
    color: var(--green-2-color);
}

.sub-menu-2 i {
    color: gray;
}

.sub-menu-2 h1 {
    color: var(--green-2-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.hero {
    position: absolute;
    bottom: 180px;
    left: 34px;
    width: 400px;
}

.hero h2 {
    font-size: 29px;
    color: var(--green-2-color);
    margin-bottom: 10px;
    position: relative;
}

.hero span {
    position: relative;
    z-index: 1;
}

.hero span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 34%;
    background: green;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 10px;
}

.hero .button-1 {
    border-radius: 31px;
    border: none;
    background: var(--blue-1-color);
    color: white;
    padding: 13px;
    font-size: 18px;
    font-weight: bold;
    border: solid 1px var(--blue-1-color);
    margin-right: 10px;
    cursor: pointer;
}

.hero .button-2 {
    border-radius: 31px;
    border: none;
    background: #e7e5e5;
    color: var(--blue-2-color);
    padding: 13px;
    font-size: 18px;
    font-weight: bold;
    border: solid 1px var(--blue-2-color);
    cursor: pointer;
}

.hero .button-1:hover {
    background: var(--green-2-color);
    border: solid 1px var(--green-2-color);
    color: var(--blue-2-color);
}

.hero .button-2:hover {
    background: var(--green-2-color);
    border: solid 1px var(--green-2-color);
}

.woman-shopping-image {
    height: 500px;
    position: absolute;
    right: 62px;
    bottom: 0px;
}

.sales-services {
    background: white;
    padding: 10px;
    margin: 20px;
    position: absolute;
    bottom: -59px;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
    width: calc(100% - 40px);
    border-radius: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.sales-services .service {
    display: flex;
    gap: 10px;
}

.sales-services .service h1 {
    font-size: 24px;
}

#best-sales {
    width: 95px;
}

.menu-link-selector {
    position: absolute;
    width: 8px;
    height: 44px;
    background: #11c311;
    top: 0px;
    left: 0px;
    margin-top: -9px;
    display: none;
}

.menu-container .social-icons {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.menu-container .social-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-1-color);
    border-radius: 59px;
    padding: 11px;
    font-size: 24px;
    padding-left: 13px;
}

.menu-container .social-icon:hover {
    background: var(--green-2-color);
}

#buy-xtra-theme {
    display: none;
}

.copyright {
    display: none;
}

.products-section {
    margin-bottom: 48px;
    margin-top: 107px;
}

.products-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    margin: auto;
    gap: 20px;
    height: 438px;
}

.products-column-1 {
    display: flex;
    align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.products-column-1-row-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.products-column-1-row-1 .product {
    padding: 10px;
    border-radius: 20px;
    position: relative;
    width: 256px;
    height: 174px;
    overflow: hidden;
}

.products-column-1-row-2 {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--blue-1-color);
    border-radius: 20px;
    margin-top: 20px;
}

.products-column-2 {
    background: var(--green-2-color);
    width: 100%;
    min-height: 100%;
    position: relative;
    border-radius: 20px;
    flex: auto;
    overflow: hidden;
}

.product-1-image {
    height: 153px;
    position: absolute;
    right: 0px;
    bottom: 0;
    z-index: 1;
}

.product-2-image {
    height: 161px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.product-3-image {
    height: 253px;
    position: absolute;
    right: 0px;
    bottom: -12px;
}

.product-4-image {
    right: 0px;
    height: 214px;
    position: absolute;
    bottom: 0px;
}

.product-1-container {
    background: #d32c2c;
}

.product-2-container {
    background: #e9e6e6;
}

.product-2-container {
}

.product-2-description {
    position: absolute !important;
    top: 30px;
    right: 27px;
}

.product-2-description h1 {
    font-size: 33px;
    color: white;
    color: var(--blue-1-color);
}

.product-2-description h2 {
    color: var(--green-2-color);
}

.product-1-description {
    position: absolute !important;
    top: 30px;
    left: 27px;
}

.product-1-description h1 {
    font-size: 33px;
    color: white;
}

.product-1-description h2 {
    color: white;
}

.product-4-description {
    position: absolute !important;
    top: 30px;
    left: 27px;
}

.product-4-description h1 {
    font-size: 33px;
    color: white;
    margin-top: 10px;
}

.product-4-description h2 {
    color: white;
}

.product-3-description {
    position: absolute !important;
    top: 30px;
    left: 27px;
}

.product-3-description h1 {
    font-size: 33px;
    color: white;
    margin-top: 0px;
}

.product-3-description h2 {
    color: white;
    margin-top: 10px;
}

.product-3-description h3 {
    color: white;
}

.shop-button-1 {
    background: var(--blue-2-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 21px;
    margin-top: 10px;
    cursor: pointer;
}

.shop-button-1:hover {
    background: var(--green-2-color);
    color: var(--blue-1-color);
}

.shop-button-2 {
    background: var(--blue-1-color);
    color: var(--green-2-color);
    padding: 15px;
    border: none;
    border-radius: 21px;
    margin-top: 10px;
    cursor: pointer;
}

.shop-button-2:hover {
    background: white;
    color: var(--blue-1-color);
}

.categories-section {
    margin-bottom: 40px;
}

.categories-section h1 {
    text-align: center;
    font-size: 34px;
}

.categories-section span {
    color: var(--green-2-color);
    position: relative;
    z-index: 1;
}

.categories-section span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 34%;
    background: green;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

.categories-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.category-class {
    border: solid 1px #635f5f;
    width: 100%;    
    border-radius: 15px;
    text-align: center;
    padding: 10px;
}

.category-class:hover {
    border: solid 1px var(--green-2-color);
    margin-top: -10px;
    box-shadow: 0px 8px 21px rgba(0, 0, 0, 0.5);
}
    
.category-class:hover img {
    transform: rotateY(360deg);
}

.category-class:hover h1 {
    color: var(--green-2-color);
}

.category-class img {
    height: 58px;
    margin-bottom: 13px;
    transition: 0.5s ease;
}

.categories-section .category-class h1 {
    font-size: 22px;
}

.best-seller-section {
    margin-bottom: 40px;
}

.best-seller-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 890px;
    width: 100%;
    margin: auto;
}

.best-seller-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}   

.best-seller-title span {
    color: var(--green-2-color);
    position: relative;
    z-index: 1;
}

.best-seller-title span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 34%;
    background: green;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

.view-all-products-button {
    padding: 10px;
    border: none;
    border-radius: 37px;
    background: var(--green-2-color);
    color: var(--blue-1-color);
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
}

.view-all-products-button:hover {
    background: var(--blue-1-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.view-wishlist-button {
    padding: 10px;
    border: none;
    border-radius: 37px;
    background: var(--green-2-color);
    color: var(--blue-1-color);
    font-weight: 900;
    text-decoration: none;
    display: none;
}

.view-wishlist-button:hover {
    background: var(--blue-1-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.best-seller-container {
    flex-direction: column;
}


.best-seller-products {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    min-width: 200px;
    max-width: 200px;
    text-align: left;
    box-shadow: 1px 1px 42px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.product-card img {
    height: 157px;
}

.product-card h1 {
    text-align: left;
    margin-top: 10px;
    font-size: 23px;
}

.product-card p {
    text-align: left;
}

.vote {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 17px;
}

.filled-star {
    color: #dfdf3e;
}

.empty-star {
    color: #dfdf3e;
}

.new-price {

}

.old-price {
    text-decoration: line-through;
}

.heart-disabled-icon {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 6px;
    border: solid 1px #cfbfbf;
    position: absolute;
    top: 11px;
    right: 7px;
    cursor: pointer;
    display: none !important;
}
.heart-disabled-displayed {
    display: block !important;
}

.heart-disabled-icon:hover {
    border: solid 1px var(--green-2-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.heart-disabled-icon:hover ~ .heart-disabled-action {
    display: block;
}

.heart-enabled-icon {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 6px;
    border: solid 1px #cfbfbf;
    position: absolute;
    top: 11px;
    right: 7px;
    cursor: pointer;
    display: none !important;
}
.heart-enabled-displayed {
    display: block !important;
}

.heart-enabled-icon:hover {
    border: solid 1px var(--green-2-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.heart-enabled-icon:hover ~ .heart-enabled-action {
    display: block;
}

.compare-icon {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 6px;
    border: solid 1px #cfbfbf;
    position: absolute;
    top: 47px;
    right: 7px;
    cursor: pointer;
}

.compare-icon:hover {
    border: solid 1px var(--green-2-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.compare-icon:hover ~ .add-to-compare-action {
    display: block;
}

.quick-view-icon {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 6px;
    border: solid 1px #cfbfbf;
    position: absolute;
    top: 83px;
    right: 7px;
    cursor: pointer;
}

.quick-view-icon:hover {
    border: solid 1px var(--green-2-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.quick-view-icon:hover ~ .quick-view-action {
    display: block;
}

.add-to-cart-button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 37px;
    background: var(--green-2-color);
    color: var(--blue-1-color);
    font-weight: 900;
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    bottom: -21px;
    display: none;
}

.add-to-cart-button:hover {
    background: var(--blue-1-color);
    color: var(--green-2-color);
    cursor: pointer;
}

.product-card:hover .add-to-cart-button {
    display: block;
}

.product-card:hover h1 {
    color: var(--green-2-color);
}

.product-card:hover p {
    color: var(--green-2-color);
}

.heart-disabled-action {
    position: absolute;
    top: 13px;
    right: 41px;
    background: var(--green-2-color);
    padding: 5px;
    border-radius: 18px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    display: none;
}

.heart-enabled-action {
    position: absolute;
    top: 13px;
    right: 41px;
    background: var(--green-2-color);
    padding: 5px;
    border-radius: 18px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    display: none;
}

.add-to-compare-action {
    position: absolute;
    top: 49px;
    right: 41px;
    background: var(--green-2-color);
    padding: 5px;
    border-radius: 18px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    display: none;
}

.quick-view-action {
    position: absolute;
    top: 86px;
    right: 41px;
    background: var(--green-2-color);
    padding: 5px;
    border-radius: 18px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    display: none;
}

.mobile-app-section {
    padding: 20px;
}

.mobile-app-container {
    background: url('../images/mobile-app-bg.jpg');
    background-size: cover;
    height: 421px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;    
    border-radius: 28px;
    max-width: 1000px;
    margin: auto;
}

.mobile-app-image-container {
    flex: 1;
    text-align: center;
    padding: 20px;
}   

.mobile-app-image-container img {
    height: 400px;
}

.mobile-app-description {
    flex: 1;
    padding: 20px;
    padding-left: 49px;
    padding-top: 97px;
}

.mobile-app-description h2 {
    color: white;
}

.mobile-app-description h1 {
    color: white;
    font-size: 51px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-app-description p {
    color: white;
    margin-bottom: 20px;
}

.mobile-app-buttons {

}

.mobile-app-buttons .img1 {
    height: 40px;
    cursor: pointer;
}

.mobile-app-buttons .img2 {
    height: 40px;
    cursor: pointer;
}

.blog-section {
    margin-top: 20px;
    margin-bottom: 60px;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    flex-direction: column;
}

.blog-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-title span {
    color: var(--green-2-color);
    position: relative;
    z-index: 1;
}

.blog-title span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 34%;
    background: green;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.navigation-buttons .left-button {
    width: 50px;
    height: 50px;
    background: var(--carousel-button-active-bgcolor);
    color: var(--carousel-button-active-color);
    border-radius: 0px 17px;
    font-size: 26px;
    padding: 11px;
    padding-left: 13px;
    cursor: pointer;
}
.navigation-buttons .left-button:hover {
    background: var(--left-button-hover-bgcolor) !important;
    color: var(--left-button-hover-color) !important;
}

.navigation-buttons .right-button {
    width: 50px;
    height: 50px;
    background: var(--carousel-button-deactive-bgcolor);
    color: var(--carousel-button-deactive-color);
    border-radius: 17px 0px;
    font-size: 26px;
    padding: 11px;
    padding-left: 13px;
    cursor: pointer;
}
.navigation-buttons .right-button:hover {
    background: var(--right-button-hover-bgcolor) !important;
    color: var(--right-button-hover-color) !important;
}

.blog-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    max-width: 830px;
    padding-top: 20px;
}

.blog-carousel {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.blog-carousel.sliding-transition {
    transition: 1s ease;
}

.carousel-card {
    min-width: 200px;
    min-height: 200px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.carousel-card img {
    width: 200px;
    border-radius: 13px;
}

.carousel-card h2 {
    color: var(--green-2-color);
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.carousel-card h1 {
    font-size: 22px;
}

.card-image-wrapper {
    position: relative;
}

.card-overlay {
    background: rgb(15 204 30 / 50%);
    position: absolute;
    left: 50%;
    width: 90%;
    height: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

.carousel-card:hover .card-overlay {
    display: flex;
}

.card-overlay .link-icon {
    color: white;
    font-size: 27px;
}

.blog-type {
    position: absolute;
    top: -19px;
    background: var(--blue-1-color);
    padding: 5px;
    border-radius: 29px;
    border: solid 5px white;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.back-to-top-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--green-2-color);
    color: var(--blue-1-color);
    border: solid 1px var(--green-2-color);
    border-radius: 35px;
    padding: 13px;
    font-size: 22px;
    padding-left: 15px;
    cursor: pointer;
}

.backtotop-icon {
    
}

.back-to-top-button:hover {
    background: var(--blue-1-color);
    color: var(--green-2-color);
    border: solid 1px rgb(78, 73, 73);
}

.back-to-top-button:hover .backtotop-icon {
    animation: showUp 0.5s ease;
}

@keyframes showUp {
    0% {opacity: 50%; transform: translateY(15px);}    
    50% {opacity: 50%; transform: translateY(-15px);}
    100% {opacity: 100%; transform: translateY(0px);}
}

footer {

}

.footer-container {
    padding: 20px;
    background: var(--blue-1-color);
    border-radius: 40px 40px 0px 0px;
    position: relative;
    padding-bottom: 0px;
}

.subscribe-newsletter {
    background: url(../images/bg-subscribe.jpg);
    padding: 30px;
    border-radius: 40px;
    position: absolute;
    margin: 40px;
    width: calc(100% - 80px);
    left: 0px;
    top: -102px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe-newsletter h1 {
    color: white;
    font-size: 44px;
    white-space: nowrap;
}

.subscribe-newsletter span {
    color: var(--green-2-color);
}

.subscribe-input-wrapper {
    background: white;
    border-radius: 57px;
    padding: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.subscribe-input-wrapper input {
    font-size: 26px;
    outline: none;
    border: none;
    padding: 10px;
}

.subscribe-input-wrapper button {
    padding: 10px;
    border: none;
    background: var(--green-2-color);
    border-radius: 31px;
    color: var(--blue-1-color);
    font-weight: bolder;
    font-size: 24px;
    cursor: pointer;
    white-space: nowrap;
}

.footer-about {
    text-align: left;
    border: solid 1px gray;
    border-radius: 37px;
    padding: 20px;
    flex: 1;
    height: -webkit-fill-available;
}

.footer-about img {
    height: 47px;
    margin-bottom: 10px;
}

.footer-about p {
    color: var(--footer-paragraph-color);
}

.footer-about .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.footer-about .social-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-2-color);
    border-radius: 59px;
    padding: 11px;
    font-size: 24px;
    padding-left: 13px;
    color: white;
    cursor: pointer;
}

.footer-about .social-icon:hover {
    background: var(--green-2-color);
}

.footer-row1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
}

.footer-row1 div {

}

.footer-link-icon {
    width: 20px;
    height: 20px;
    background: var(--blue-2-color);
    color: var(--green-2-color);
    border-radius: 13px;
    font-size: 10px;
    padding: 4px;
    padding-top: 5px;
    margin-right: 6px;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border: solid 1px gray;
    border-radius: 37px;
    padding: 20px;
    flex: 1;
    height: -webkit-fill-available;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: flex;
    margin-top: 5px;
}

.footer-links a:hover  {
    color: var(--green-2-color);
    padding-left: 10px;
}

.footer-links a:hover .footer-link-icon {
    background: var(--green-2-color);
    color: var(--blue-2-color);
}

.footer-links h1 {
    color: white;
    font-size: 26px;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.footer-links h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 32px;
    left: 0px;
    background: gray;
}

.footer-money {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: solid 1px gray;
    border-radius: 37px;
    padding: 20px;
    flex: 1;
    height: -webkit-fill-available;
}

.footer-money h1 {
    text-align: center;
    font-size: 23px;
    margin-bottom: 15px;
    color: white;
}

.footer-money span {
    color: var(--green-2-color);
}

.footer-money p {
    color: var(--footer-paragraph-color);
    margin-bottom: 15px;
    text-align: center;
}

.footer-money button {
    background: var(--green-2-color);
    color: var(--blue-1-color);
    border: none;
    border-radius: 26px;
    font-weight: bolder;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}

.footer-money button:hover {
    background: white;
}

.footer-row2 {
    border: solid 1px gray;
    border-radius: 27px 27px 0px 0px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-bottom: 0px;
}

.footer-row2 p {
    color: var(--footer-paragraph-color);
}

.footer-copyright {

}

.payment img {
    height: 29px;
}

/* Mobile styles */

@media (max-width: 600px) {
    nav .row1 {
        flex-wrap: wrap;
    }

    .body-menu-open {
        overflow: hidden;
    }

    .account-icons {
        /*display: none;*/
        gap: 0px;
    }

    .search-wrapper {
        display: none;
    }

    .call-service {
        display: none;
    }

    .menu-container {
        position: fixed;
        width: 286px;
        height: 100vh;
        top: 0;
        right: 0;
        margin: 0px;
        border-radius: 0px;
        z-index: 2;
        display: none;
        padding: 0px;
    }

    .menu-container-open {
        display: block;
    }

    .menu-wrapper {
        position: relative;
        height: 100%;
    }

    .menu-scroll {
        padding: 0px;
        overflow-y: scroll;
        height: 100%;
    }

    .menu-container button {
        display: none;
    }

    .menu-container .menu-link {
        margin-top: 10px;
        font-size: 22px;
        width: 100%;
        margin-right: 0px;
        padding-bottom: 10px;
        border-bottom: solid 1px gray;
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu-container .menu-link:hover a {
        color: var(--green-2-color);
    }

    .menu-container .menu-link .link-plus {
        bottom: -2px;
        left: 0px;
    }

    .menu-container .menu-link:hover .menu-link-selector {
        display: block;
    } 

    .menu-container .menu-link:hover {
        color: var(--green-2-color);
        padding-left: 30px;
    }

    .menu-container .menu-link:hover .link-plus {
        /*left: 128px;*/
    }

    .menu-container .menu-link-selected {
        padding-left: 30px !important;
        color: var(--green-2-color) !important;
    }

    .menu-container .menu-link-selected a {
        color: var(--green-2-color);
    }

    .menu-container .menu-link-selected .menu-link-selector {
        display: block;
    }

    #best-sales {
        width: 100%;
    }

    .menu-row1 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0px;
    }

    .menu-row2 {
        display: block;
    }

    .menu-container .sub-menu-1 {
        width: auto;
    }

    .mobile-sub-menu-1-open {
        display: flex !important;
        flex-direction: column;
        /*width: 100%;*/
        position: relative !important;
        top: 0px !important;
        margin: 10px;
    }

    .mobile-sub-menu-2-open {
        display: flex !important;
        flex-direction: column;
        /*width: 100%;*/
        position: relative !important;
        top: 0px !important;
        margin-bottom: 10px;
        left: 0px;
        margin: 10px;
        background: transparent;
    }

    .sub-menu-separator {
        display: none;
    }

    nav {
        height: 88px;
    }

    .row1 .logo {
        margin-top: -5px;
    }

    .row1 .logo img {
        height: 66px;
    }

    .basket-icon {
        display: block;
        font-size: 31px;
        width: 50px;
        height: 50px;
        border-radius: 52px;
        padding: 8px;
        padding-left: 7px;
    }

    .basket-wrapper {
        margin-right: 0px;
    }

    .basket-count {
        display: block;
    }

    .icons-separator {
        display: none;
    }

    .heart-icon {
        display: none !important;
    }

    .user-icon {
        display: none !important;
    }

    .menu-icon {
        display: block !important;
        font-size: 31px;
        width: 50px;
        height: 50px;
        border-radius: 52px;
        padding: 8px;
        padding-left: 11px;
    }

    .close-icon {
        color: white;
        font-size: 33px;
        display: block !important;
        position: absolute;
        left: -33px;
        top: 8px;
    }

    .mobile-icons {
        display: flex;
    }

    .sales-services {
        bottom: -296px;
        border-radius: 34px;
    }

    .sales-services .service div {
        padding-right: 10px;
    }

    .woman-shopping-image {
        height: 269px;
        position: relative;
        right: -28px;
    }

    .hero {
        position: relative;
        bottom: 0px;
        left: 24px;
        width: 85%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 35px;
    }

    .hero button {
        font-size: 15px !important;
    }

    header {
        height: 644px;
    }

    .product-class {
        border: solid 1px #635f5f;
        width: 100%;
    }

    .mobile-angle-down {
        float: right;
        display: block !important;
    }

    .sub-menu-2 div {
        width: 100%;
    }

    #categories-menu {
        display: none;
    }

    .categories-menu-open {
        display: block !important;
    }

    #top-tags-menu {
        display: none;
    }

    .top-tags-menu-open {
        display: block !important;
    }

    #quick-access-menu {
        display: none;
    }

    .quick-access-menu-open {
        display: block !important;
    }

    #mobile-sub-menu1-container {
        width: 100%;
        padding: 0px;
    }

    #mobile-sub-menu2-container {
        width: 100%;
        padding: 0px;
    }

    .sub-menu-2 h1 {
        color: white;
    }

    .sub-menu-2 a {
        color: rgb(218 218 218);
    }

    .menu-container .social-icons {
        display: flex;
    }

    .copyright {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 11px;
        margin-top: 10px;
    }

    .products-section {
        margin-top: 308px;
        margin-bottom: 7px;
    }

    .products-container {
        flex-wrap: wrap;
        height: auto;
        margin-top: 308px;
        padding: 20px;
    }

    .products-column-1-row-1 {
        flex-wrap: wrap;
    }

    .products-column-1-row-2 {
        min-height: 215px;
        max-height: 215px;
    }

    .products-column-1-row-1 .product {
        width: 100%;
        min-height: 158px;
        max-height: 158px;
    }

    .products-column-2 {
        min-height: 187px;
        max-height: 187px;
    }

    .products-column-1 {
        height: auto;
    }

    .product-3-image {
        height: 134px;
    }

    .product-4-image {
        height: 107px;
    }

    .categories-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .best-seller-title {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-app-container {
        flex-wrap: wrap;
        height: auto;
    }

    .mobile-app-image-container img {
        height: 258px;
    }

    .mobile-app-description {
        padding-left: 31px;
        padding-top: 33px;
    }

    .mobile-app-description h1 {
        font-size: 34px;
    }

    .subscribe-newsletter {
        flex-wrap: wrap;
        top: -114px;
        justify-content: center;
    }

    .footer-row1 {
        flex-wrap: wrap;
    }

    .footer-row2 {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .subscribe-newsletter h1{
        font-size: 23px;
    }

    .subscribe-input-wrapper {
        padding-left: 10px;
        margin-top: 10px;
    }

    .subscribe-input-wrapper input {
        font-size: 10px;
        width: 127px;
    }

    .subscribe-input-wrapper button {
        font-size: 11px;
    }

    footer {
        margin-top: 76px;
    }

    .footer-copyright {
        margin-bottom: 10px;
    }

    .blog-title h1 {
        font-size: 22px;
    }

    .product-card {
        max-width: 271px;
    }
    
    .product-4-description h1 {
        font-size: 29px;
    }

    .basket-panel {
        top: 78px;
        right: 80px;
    }

    .view-wishlist-button {
        display: inline-block;
    }

    .best-seller-products {
        justify-content: center;
    }

}

