* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'poppins', sans-serif;
    line-height: 1.6;
    color: #FFF;
    margin: 0 auto;
    background-color: #404042;
    font-weight: 400;
}

/* header */ /*-------------------------------------------------------------------------*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: fit-content;
    max-width: 217px;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.user-area {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.user-logo {
    color: #FFF;
    width: 16px;
    height: fit-content;
}

.material-symbols-outlined.menu-icon {
    display: none;
}

/* body */ /*-------------------------------------------------------------------------*/

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-img {
    width: 100%;
    height: fit-content;
    margin-top: -111px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -100px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 600;
}

.hero-text p {
    font-size: 20px;
    font-weight: 400;
}

.services {
    display: flex;
    justify-content: space-around;
    max-width: 1440px;
    width: 100%;
    margin: -135px auto 0;
    z-index: 1;
    position: relative;
}

.service-card {
    background-color: #f9f9f9;
    padding: 39px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.service-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #404042;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #404042;
}

.service-card a {
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    background: #404042;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    max-width: 135px;
    margin: 0 auto;
    justify-content: space-around;
}

/* Footer */ /*-------------------------------------------------------------------------*/

footer {
    background-color: #404042;
    color: #fff;
    padding: 40px 20px;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px auto 0;
}

footer .footer-logo {
    width: fit-content;
    text-decoration: none;
}

footer .footer-logo img {
    max-width: 217px;
    width: 100%;
}

footer .footer-columns {
    display: flex;
    justify-content: space-around;
    text-align: left;
    margin-bottom: 20px;
    gap: 70px;
}

footer .footer-column h4 {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #A9B0B4;
    font-weight: 300;
    text-transform: uppercase;
}

footer .footer-column h4.empty {
    margin-bottom: 3.3rem;
}

footer .footer-column p span {
    font-weight: 300;
    margin-bottom: 10px;
}

footer .footer-column p {
    font-weight: 400;
    color: #fff;
    text-align: start;
    margin-bottom: 20px;
}

footer .footer-column a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 400;
}

footer .footer-column a:hover {
    color: #fff;
}

footer .footer-bottom {
    text-align: center;
    margin-top: 60px;
    position: relative;
}

footer .footer-bottom a {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-bottom a:hover {
    color: #fff;
}

footer p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
    color: #A9B0B4;
}

.footer-subheading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 9px;
}

.logo-footer {
    margin-bottom: 30px;
}

.legal-links {
    margin-top: 80px;
    margin-bottom: 30px;
}

.legal-links a {
    margin-left: 8px;
    margin-right: 8px;
    font-size: 14px;
    color: #FFF;
    text-decoration: none;
}

.copywrite-text p {
    margin: 0;
    font-size: 14px;
}

/*-------------------------------------------------------------------------*/

/* Top Bar */

.top-bar {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #404042;
}

.top-bar a, .top-bar-mobile {
    color: #DDDFDE;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
}

.top-bar .top-bar-mobile {
    display: none;
}

.top-bar-links {
    align-items: center;
    display: flex;
    margin-left: 15px;
    gap: 20px;
}

.top-bar-links a {
    color: #DDDFDE;
    text-decoration: none;
    transition: all ease-in-out 300ms;
    text-align: center;
    font-size: 14px;
}

.top-bar-links a:hover {
    text-decoration: underline;
    transition: all ease-in-out 300ms;
}

.top-bar-links .link-pedido-rapido {
    background-color: #DDDFDE;
    color: #404042;
    padding: 10px 11px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-pedido-rapido span {
    background: none;
}

/* .header-1 */

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header-1 {
    width: 100%;
    max-width: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-1 .logo img {
    height: fit-content;
    max-width: 217px;
    width: 100%;
}

.header-1 .user-area {
    font-size: 14px;
    background-color: #fff;
}

.header-1 .user-area a {
    color: #404042;
    text-decoration: none;
    margin-left: 15px;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
}

.header-1 .user-area a:hover {
    text-decoration: underline;
}

.header-1 a span {
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.header-1-text {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    width: 100%;
    max-width: unset;
}

.dropdown-menu-items {
    width: 100%;
}

.dropdown-menu-items li {
    padding: 5px;
}

.dropdown-menu-items li:hover {
    background-color: #404042;
    a {
        text-decoration: none !important;
        color: #fff;
    }
}

.search-bar {
    max-width: 396px;
    width: 100%;
}

.search-bar input {
    border: none;
    background: #EEEFEE;
    width: 100%;
    border-radius: 10px;
    padding: 17px 14px;
    font-family: 'poppins', sans-serif;
}

.search-bar input[type="text"] {
    padding: 12px 10px 12px 42px;
    font-size: 16px;
    background-image: url("../images/picto-menu-negatiu-lupa@2x-Voz-FhL.svg");
    background-repeat: no-repeat;
    background-position: left 15px center;
}

.search-bar input[type="text"]::placeholder {
    font-size: 16px;
    opacity: 1;
    color: #7C8189;
}

/* Breadcrumb */

.breadcrumb-container {
    width: 100%;
    background: #EEEFEE;
}

.breadcrumb {
    font-size: 14px;
    background: #EEEFEE;
    align-items: center;
    display: flex;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 14px;
}

.home-crumb {
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb .current-crumb {
    color: #7C8189;
}

.breadcrumb a {
    color: #404042;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #404042;
    margin: 0 15px;
}

/* Banner */

.banner-container {
    width: 100%;
    background: #FFF;
}

.banner {
    position: relative;
    text-align: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner-text h1 {
    margin-bottom: 20px;
    color: #404042;
    font-size: 30px;
    font-weight: 600;
}

.banner-text a {
    padding: 10px 20px;
    background-color: #7C8189;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    max-width: 173px;
    width: 100%;
    font-size: 14px;
}

.banner-text a:hover {
    background-color: #555;
}

/* Categories */

.categories-container {
    width: 100%;
    background: #FFF;
}

.categories {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    overflow-x: hidden;
}

.categorie-heading {
    display: flex;
    align-items: center;
    max-width: 1440px;

}

.categorie-heading.swipe {
    margin: auto 20px;
    position: relative;
}

.categories h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404042;
    width: fit-content;
}

.categories h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404042;
    width: fit-content;
}

.categories a {
    text-decoration: none;
}

.categories-link {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 14px;
    color: #404042;
    transition: all ease-in-out 300ms;
}

.categories-link:hover {
    opacity: 0.8;
    scale: 1.05;
}

.categories-link span {
    margin-left: 5px;
    width: 14px;
    height: fit-content;
    font-size: 18px;
}

.category-list {
    display: flex;
    /*justify-content: space-between;*/
    /*flex-wrap: wrap;*/
    gap: 15px;
}

.category {
    /*flex: 1 1 150px;*/
    background-color: #EEEFEE;
    padding: 25px 25px 35px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
    max-width: 175px;
    height: auto;
}

.category img {
    max-width: 59px;
    width: 100%;
    height: fit-content;
    margin-bottom: 10px;
}

.category p {
    font-size: 12px;
    color: #7C8189;
    line-height: 1;
}

.category .category-subheading {
    font-size: 18px;
    color: #404042;
    margin-top: 10px;
    line-height: 1.15;
    font-weight: 600;
}

.category:hover {
    transform: scale(1.05);
}

/* Best Sellers and New Products */

.best-sellers h2, .new-products h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404042;
    width: fit-content;
}

.best-sellers h3, .new-products h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404042;
    width: fit-content;
}

.best-sellers a, .new-products a {
    text-decoration: none;
}

.best-sellers-container {
    background: #FFF;
    width: 100%;
}

.best-sellers {
    max-width: 1480px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.product-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-list.swiper {
    padding: 20px;
}

.product-list.favorite-products {
    justify-content: space-around;
}

.product-card {
    max-width: 240px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    position: relative;
    margin-bottom: 30px;
    display: block;
}

.product-card img {
    max-width: 128px;
    height: fit-content;
    margin: 50px 0 10px 40px;
}

.product-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #404042;
    height: 60px;
}

.product-card p {
    color: #777;
    font-size: 14px;
}

.product-card strong {
    color: #404042;
    font-size: 16px;
}

.product-card button {
    color: #7C8189;
    background: #FFF;
    cursor: pointer;
    font-size: 14px;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.product-card p {
    font-size: 14px;
    color: #A9B0B4;
}

.product-card p span {
    text-decoration: line-through;
    font-size: 12px;
    margin-right: 5px;
}

.product-card p span.vat-note {
    font-size: 12px;
}

.product-card p span.price {
    text-decoration: none;
    font-size: 18px;
    margin-right: 5px;
}

.product-card p strong {
    font-size: 18px;
    margin-right: 3px;
}

.product-card input {
    color: #404042;
}

.product-accent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 10px;
    gap: 10px;
    padding-left: 10px;
}

.discount-label, .new-label {
    background-color: #EEEFEE;
    color: #404042;
    padding: 5px;
    font-size: 12px;
}

.product-data {
    display: flex;
    color: #7C8189;
    align-items: center;
    font-size: 14px;
    gap: 7px;
    line-height: 1;
    margin-bottom: 8px;
}

.stock-status {
    padding: 5px;
    background: #6CD23B;
    color: #FFF;
    font-size: 12px;
    border-radius: 5px;
}

.ref-logo {
    background-color: #EEEFEE;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
}

.new-products-container {
    width: 100%;
    background: #FFF;
    padding-top: 50px;
}

.new-products {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mid-page Banner */

.mid-banner-container {
    width: 100%;
    background: #FFF;
}

.mid-banner {
    padding: 80px 20px;
    text-align: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.mid-banner-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    max-width: 400px;
    text-align: start;
}

.mid-banner h2 {
    font-size: 22px;
    margin-bottom: 0;
    color: #404042;
    font-weight: 600;
}

.mid-banner p {
    font-size: 22px;
    color: #404042;
    margin-bottom: 30px;
}

.mid-banner a {
    padding: 12px 20px;
    background-color: #FFF;
    color: #404042;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    max-width: 210px;
    width: 100%;
    display: block;
    text-align: center;
    transition: all ease-in-out 200ms;
}

.mid-banner a:hover {
    background-color: #404042;
    color: #FFF;
}

.mid-banner img {
    max-width: 1440px;
    width: 100%;
    border-radius: 10px;
}

/*------------------------------------------------*/

/* .header-1 */
.header-1 {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-area a {
    margin-left: 15px;
}

/* Category Filters */
.category-filters {
    padding: 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.filter-tabs button {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.filter-tabs button.active {
    background-color: #404042;
    color: #fff;
}

.filter-tabs button:hover {
    background-color: #555;
    color: #fff;
}

/* Product Filters */

.product-filter {
    max-width: 203px;
    width: 100%;
}

.product-filters {
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options select {
    margin-left: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Product Grid */

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: space-around;
}

.quantity-selector {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-input {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
    max-width: 45px;
    width: 100%;
    min-height: 40px;
    padding: 5px;
    text-align: center;
    border: 1px solid #9CA7AD;
    border-radius: 5px 0 0 5px;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector-buttons {
    display: flex;
    flex-direction: column;
}

.button-decrement,
.button-increment {
    width: 22px;
    height: 20px;
    text-align: center;
    border: 1px solid #9CA7AD;
    cursor: pointer;
    background-color: #fff;
    font-size: 16px;
    border-left: none;
    color: black;
}

.button-increment {
    border-bottom: none;
    border-radius: 0 5px 0 0;
}

.button-decrement {
    border-radius: 0 0 5px 0;
}

.product-card .add-to-cart, .pdp-price-contents .add-to-cart {
    padding: 5px 10px;
    background-color: #7C8189;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all ease-in-out 300ms;
    font-size: 14px;
    line-height: 10px;
    width: unset;
    height: unset;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
}

.product-card .add-to-cart:hover, .pdp-price-contents .add-to-cart:hover {
    scale: 1.05;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 20px 0;
}

.pagination a {
    padding: 10px 20px;
    background-color: #ddd;
    border-radius: 4px;
    margin: 5px;
    display: inline-block;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #404042;
    color: #fff;
}

/*----------------------------------------------------------------------*/

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* .header-1 */
.main-.header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
}

.user-area a {
    margin-left: 10px;
}

/* Product Details */
.product-details {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
}

.product-gallery {
    flex: 1;
}

.product-gallery img {
    width: 100%;
    max-width: 500px;
}

.product-info {
    flex: 1;
    padding-left: 20px;
}

.product-info h1 {
    font-size: 24px;
}

.product-info .price {
    font-size: 28px;
    color: #404042;
}

.product-info .tax-info {
    font-size: 14px;
    color: #777;
}

/* Tabs */
.product-tabs {
    background-color: #f7f7f7;
    padding: 20px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
}

.tab.active {
    background-color: #53b28d;
    color: #fff;
}

/* Related Products */
.related-products {
    padding: 20px;
    background-color: #fff;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

/* footer 2 */

.footer-2 {
    margin-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-logo p {
    background: #5D5D61;
    max-width: 300px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    color: #FFF;
    border-top: 1px solid #909496;
}

.footer-2 .footer-bottom-links a, .footer-bottom p {
    color: #FFF;
    font-size: 14px;
}

.footer-logo div {
    display: flex;
    background: #5D5D61;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    margin-top: 30px;
}

.footer-logo div p {
    text-align: start;
    margin-left: 20px;
    color: #FFF;
    font-size: 14px;
}

.footer-logo div span {
    font-size: 22px;
    margin-top: 3px;
    color: #FFF;
}

/* filter bar*/

.filter-bar-container {
    width: 100%;
    background: #FFF;
    margin: 0;
}

.toggle-bar {
    display: flex;
    align-items: center;
    background-color: #fff;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-bar {
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    background: #EEEFEE;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.filter-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.filter-bar span {
    color: #404042;
    font-size: 14px;
    padding-left: 10px;
}

.filter-bar-heading {
    color: #404042;
    font-size: 30px;
}

.filter-bar-header p {
    color: #404042;
    font-size: 14px;
}

.filter-bar select {
    margin-right: 20px;
    padding: 5px 60px 5px 8px;
    border: none;
    border-radius: 5px;
    font-family: 'poppins', sans-serif;
    font-size: 14px;
}

.filter-bar .filter-label {
    margin-right: 10px;
    font-weight: bold;
}

.filter-bar .sort-label {
    margin-left: auto;
    margin-right: 10px;
    font-weight: bold;
}

.best-sellers.specific-seller {
    max-width: 1440px;
}

/* PDP */

.pdp-product-page-container {
    width: 100%;
    background: #FFF;
}

.pdp-product-page {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.pdp-categories a {
    color: #404042;
    font-weight: 400;
}

.pdp-product-header {
    display: flex;
    gap: 20px;
    padding: 20px 60px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}

.pdp-image-section {
    flex: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdp-product-image {
    max-width: 100%;
}

.pdp-product-info {
    flex: 3;
}

.pdp-categories {
    color: #A9B0B4;
    font-size: 14px;
    font-weight: 600;
}

.pdp-product-name {
    font-size: 30px;
    color: #404042;
    text-align: start;
    margin: 20px 0 10px;
}

.pdp-product-status {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.pdp-in-stock {
    color: #28a745;
    font-weight: bold;
}

.pdp-ref {
    color: #777;
}

.pdp-price-section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.pdp-price-section-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdp-current-price {
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

.pdp-old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 20px;
}

.pdp-tax-note {
    font-size: 14px;
    color: #888;
}

.pdp-discount {
    background: #fff;
    color: #7C8189;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 14px;
}

.pdp-price-contents {
    background: #EEEFEE;
}

.pdp-quantity-section {
    display: flex;
    gap: 5px;
    margin: 15px 0;
}

.pdp-price-contents .add-to-cart {
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    gap: 10px;
}

.pdp-price-contents .quantity-input {
    padding: 9.5px;
    max-width: 55px;
}

.pdp-price-contents .add-to-cart span {
    font-size: 18px;
}

.pdp-price-contents .button-decrement, .pdp-price-contents .button-increment {
    height: 24px;
    width: 28px;
}

.pdp-favorites {
    background: none;
    border: none;
    color: #404042;
    cursor: pointer;
    margin: 30px 0 35px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-favorites span {
    font-size: 18px;
}

.pdp-favorites .material-symbols-outlined {
    color: gray; /* default color */
    transition: color 0.3s ease;
}

.pdp-favorites.active .material-symbols-outlined {
    color: red; /* filled heart color */
}


.pdp-description {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
}

.pdp-tabs-container {
    width: 100%;
    background: #EEEFEE;
}

.pdp-tabs-content {
    width: 100%;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.pdp-tabs {
    display: flex;
    background: #DDDFDE;
}

.pdp-tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    color: #404042;
    background: #DDDFDE;
    max-width: 400px;
    font-weight: bold;
}

.pdp-tab-active {
    background: #EEEFEE;
}

.pdp-tab-content {
    padding: 50px 25px 80px;
    color: #404042;
    line-height: 1.5;
    background: #EEEFEE;
    font-size: 16px;
    display: block;
}

.pdp-price-contents {
    padding: 20px;
}

.pdp-product-page .quantity-input, .pdp-product-page .button-decrement, .pdp-product-page .button-increment {
    background: #EEEFEE;
}

.hidden-tab {
    display: none;
}

/* dropdown menu */

.dropdown-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.dropdown-toggle {
    background-color: #F5F5F5;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 23%;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 964px;
}

div.dropdown-user-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 78%;
    width: 15%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 964px;
    padding: 10px;
}

.dropdown-left,
.dropdown-right {
    padding: 20px 40px 30px;
}

.dropdown-left {
    background-color: #f9f9f9;
    width: 32%;
}

.dropdown-right {
    background-color: #EEE;
    width: 68%;
}

.dropdown-heading {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 400;
}

a.dropdown-user-menu {
    background-color: unset;
    text-decoration: none !important;
}

#brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-item {
    padding: 8px;
    cursor: pointer;
    color: #404042;
    font-size: 18px;
    font-weight: bold;
}

.brand-item.active,
.brand-item:hover {
    background-color: #EEEFEE;
}

.brand-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.brand-product-item {
    font-size: 16px;
    color: #404042;
    text-decoration: none;
}

.brand-product-item:hover {
    text-decoration: underline;
}

/* sign in */

#login-page, #forgot-password {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #A0A0A1;
    height: 100vh;
    justify-content: center;
}

#login-page .login-container, #login-page .register-container, #forgot-password .login-container, .bottom-container {
    width: 100%;
    max-width: 476px;
    padding: 80px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#login-page .login-container, #forgot-password .login-container {
    border-radius: 10px 10px 0 0;
    padding-bottom: 40px;
    padding-top: 60px;
}

#login-page .register-container, .bottom-container {
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #DDDFDE;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bottom-container a {
    text-align: center;
}

#login-page .login-container h2,
#login-page .register-container h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #404042;
}

#login-page label {
    font-size: 16px;
    color: #7C8189;
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

#login-page input[type="text"],
#login-page input[type="password"] {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #EEEFEE;
}

#login-page .checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#login-page .checkbox-container label {
    font-size: 12px;
    color: #333;
    margin-left: 5px;
    margin-bottom: 0;
}

#login-page button {
    width: 100%;
    padding: 10px;
    background-color: #7C8189;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
}

#login-page .register-container a {
    width: 100%;
    padding: 10px;
    background-color: #7C8189;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

#login-page a {
    font-size: 14px;
    color: #7C8189;
    display: block;
    margin-top: 15px;
    text-decoration: underline;
}

#login-page .sign-in-footer {
    font-size: 12px;
    color: #7C8189;
    margin-top: 30px;
    text-align: center;
}

#login-page input[type="text"]::placeholder,
#login-page input[type="password"]::placeholder {
    color: #404042;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
}

#login-page .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#login-page .checkbox-container input[type="checkbox"] {
    display: none;
}

#login-page .checkbox-container label {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    color: #7C8189;
    cursor: pointer;
}

#login-page .checkbox-container label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #eee;
    border: none;
    border-radius: 2px;
}

#login-page .checkbox-container input[type="checkbox"]:checked + label::before {
    background-color: #6CD23B;
}

/* Checkmark */
#login-page .checkbox-container input[type="checkbox"]:checked + label::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 14px;
    color: #FFF;
}

/* tab zone */

.tab-zone-container {
    width: 100%;
    background: #EEEFEE;
}

.tab-zone {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    padding: 40px;
}

.tab-zone-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-zone-sidebar li a {
    padding: 10px 45px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 16px;
    line-height: 16px;
    border-radius: 5px;
}

.tab-zone-sidebar li a:hover {
    background: #FFFFFF;
}

.nav-link-tab-zone {
    color: #404042;
}

.nav-link-tab-zone.active-zone {
    background: #FFFFFF;
}

.tab-zone-content {
    display: flex;
    width: 100%;
    margin: 0 20px;
    border-radius: 5px;
}

.tab-zone-content-container {
    width: 100%;
    padding: 0 20px;
}

.tab-zone-bills {
    background: #FFFFFF;
    width: 100%;
    border-radius: 5px;
    padding: 30px 40px;
}

.tab-zone-data {
    background: #FFFFFF;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 30px 40px;
}

.tab-zone-data-heading {
    color: #404042;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab-zone-data-button {
    text-decoration: none;
    color: #404042;
    border: solid 1px #727276;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 11px 24px;
    transition: all 300ms ease-in-out;
}

.tab-zone-data-button:hover {
    color: #fff;
    background: #404042;
}

.tab-zone-data-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
}

.tab-zone-bills-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
}

.tab-zone-cards {
    display: flex;
    gap: 20px;
}

.tab-zone-card {
    background: #EEEFEE;
    border-radius: 5px;
    color: #404042;
    padding: 20px;
    width: 48%;
}

.tab-zone-data-subtitle {
    color: #404042;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.tab-zone-card-title {
    display: flex;
    justify-content: space-between;
}

.tab-zone-card-heading {
    display: flex;
    flex-direction: column;
    gap: 59px;
}

.tab-zone-card-links {
    display: flex;
    justify-content: space-between;
}

.tab-zone-card-links a {
    color: #404042;
}

.tab-zone-bill {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #DDDFDE;
    padding: 16px 5px;
}

.tab-zone-number {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #404042;

}

.tab-zone-date {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #A9B0B4;

}

.tab-zone-price {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #404042;

}

.tab-zone-link {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #404042;

}

.tab-zone-notification {
    background: #FFF;
    padding: 30px;
    width: 26%;
    border-radius: 5px;
}

.tab-zone-notification-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: #404042;
}

/* tab zone 2*/

.tab-zone-content-container-2 {
    width: 100%;
}

.tab-zone-data-button-2 {
    text-decoration: none;
    color: #fff;
    border: solid 1px #727276;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    transition: all 300ms ease-in-out;
    background: #7C8189;
}

.tab-zone-data-button-2:hover {
    color: #7C8189;
    background: #fff;
}

.product-accent-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 10px;
    gap: 10px;
    padding: 0 10px;
    width: 100%;
}

.heart-new-label {
    background-color: #EEEFEE;
    color: #404042;
    padding: 6px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.heart-new-label:hover {
    transform: scale(1.2);
}

.heart-new-label span {
    font-size: 18px;
}

.heart-new-label .heart-filled, button.pdp-favorites .heart-filled {
    font-variation-settings: 'FILL' 1;
    color: inherit;
}

.heart-new-label.no-background {
    background-color: unset;
}

.product-accent-container {
    display: flex;
    gap: 5px;
}

/* tab zone 3*/

.tab-zone-dual {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    justify-content: space-between;
}

.tab-zone-dual-left {
    background-color: #EEEFEE;
    border-radius: 5px;
    padding: 20px 30px;
    width: 48%;
    color: #404042;
}

.tab-zone-dual-right {
    background-color: #EEEFEE;
    border-radius: 5px;
    padding: 20px 30px;
    width: 48%;
    color: #404042;
}

.tab-zone-single {
    width: 100%;
    background-color: #EEEFEE;
    border-radius: 5px;
    margin-bottom: 40px;
    padding: 20px 30px;
    color: #404042;
}

.tab-zone .tab-zone-data-button {
    padding: 11px 10px;
}

.tab-zone-data-button-red {
    text-decoration: none;
    color: #E1141D;
    border: solid 1px #E1141D;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 11px 10px;
    transition: all 300ms ease-in-out;
    width: fit-content;
}

.tab-zone-data-button-red span {
    color: #E1141D;
    font-size: 20px;
    margin-right: 5px;

}

.tab-zone-data-button-red:hover {
    color: #FFF;
    background: #E1141D;
}

.tab-zone-data-button-red:hover span {
    color: #FFF;
}

.tab-zone-3-name-heading {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.tab-zone-3-name-label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.tab-zone-3-name-input {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #7C8189;
    margin-bottom: 20px;
    margin-right: 30px;
}

.tab3-name-box {
    display: flex;
}

.tab-zone-data .tab-zone-data-button {
    width: fit-content;
}

.tabzone3-edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #DDDFDE;
}

.tabzone3-edit:last-child {
    border-bottom: 1px solid #DDDFDE;
}

.tabzone3-edit-container {
    display: flex;
    width: 100%;
}

.tabzone3-edit-box {
    width: 48%;
    padding: 20px 20px 20px 0;
}

.tabzone3-edit-box.long-input {
    padding-left: 20px;
}

.tabzone3-edit-button {
    border: none;
    text-transform: uppercase;
    font-family: 'poppins', sans-serif;
    color: #7C8189;
    display: flex;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.tabzone3-edit-button:hover {
    text-decoration: underline;
}

.tabzone3-edit-button svg {
    color: #7C8189;
    margin-left: 5px;
}

.tabzone3-edit-box .tab-zone-3-name-input {
    margin: 0;
    padding: 10px 0;
    color: #7C8189;
}

.tab-zone-dual-long {
    background-color: #EEEFEE;
    border-radius: 5px;
    padding: 20px 30px;
    width: 100%;
    color: #404042;
    margin-bottom: 30px;
}

.tab-zone-content-container-3 {
    width: 100%;
}

.tab-zone-content-container-3 .tabzone3-edit-box {
    background: #FFF;
}

.tab-zone-content-container-3 .tabzone3-edit-box {
    width: 100%;
}

/*-----------*/

.tabzone-4-container {
    margin: 10px 0 20px;
    color: #404042;
}

.tabzone-4-table {
    width: 100%;
    border-collapse: collapse;
}

.tabzone-4-th, .tabzone-4-td {
    border: 1px solid #DDDFDE;
    padding: 15px 0;
}

.tabzone-4-th {
    cursor: pointer;
    border-left: none;
    border-right: none;
    text-align: start;
    color: #7C8189;
    font-size: 14px;
    font-weight: 400;
    border-top: none;
}

.tabzone-4-td {
    border-left: none;
    border-right: none;
    color: #404042;
}

table td:nth-child(2), table td:nth-child(3), table td:nth-child(4) {
    color: #A9B0B4;
    width: fit-content;
}

table td:nth-child(1), table td:nth-child(5), table td:nth-child(6) {
    width: fit-content;
}

table td:nth-child(1) {
    width: 41%;
}

.tabzone-4-th:hover {
    background-color: #ddd;
}

table td:nth-child(6) {
    text-align: center;
}

.tabzone-4-button {
    padding: 5px 10px;
    border: 1px solid #EEEFEE;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    font-family: 'poppins', sans-serif;
    background-color: #fff;
    color: #404042;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.tabzone-4-button:hover {
    background-color: #404042;
    color: #FFF;
}

.tabzone-4-button svg {
    font-size: 16px;
    font-weight: 400;
}

.tabzone3-bundle-wrapper {
    display: flex;
    justify-content: space-between;
}

.tabzone3-edit.tze4 {
    margin-top: 20px;
}

.tabzone3-edit.tze4 .tab-zone-3-name-input {
    margin: 0;
    padding: 10px 0;
    align-items: center;
    display: flex;
}

.tabzone3-edit.tze4 .tab-zone-3-name-input span {
    margin-right: 10px;
    font-size: 30px;
}

.tz4-table-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.tz4-table-heading {
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    color: #404042;
}

.tz4-table-header select {
    padding: 6px 10px;
    max-width: 185px;
    width: 100%;
    background: #EEEFEE;
    font-family: 'poppins', sans-serif;
    border: none;
    border-radius: 5px;
}

/* tab zone 5 */

.tz5-preferences {
    width: 100%;
    color: #404042;
}

.tz5-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #7C8189;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
}

.tz5-preferences {
    width: 100%;
    color: #404042;
    margin-bottom: 100px;
}

.tz5-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #EEEFEE;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

.tz5-checkbox:checked {
    background-color: #7C8189;
}

.tz5-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #404042;
    cursor: pointer;
}

h1 {
    text-align: center;
}

.tz5-communication-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.tz5-communication-type {
    width: 45%;
}

.tz5-communication-type h2 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* contact form */

.contact-form-banner {
    background-image: url("../images/Page-header-BG-y3Hc5vt.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-direction: column;
}

.contact-form-banner h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-banner h3 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #7C8189;
    text-align: center;
}

.contact-form-banner p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    max-width: 650px;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #FFF;
    color: #404042;
}

.contact-form-container {
    display: flex;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 80px;
    justify-content: space-between;
}

/* Form Styles */

.contact-form-form {
    width: 54%;
}

.contact-form-form h3 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
}

.contact-form-input {
    width: 100%;
    padding: 16px 25px;
    margin-bottom: 20px;
    border: none;
    background: #EEEFEE;
    border-radius: 5px;
}

textarea.contact-form-input {
    min-height: 150px;
}

.contact-form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-form-checkbox label {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin-left: 7px;
    margin-bottom: 0;
}

.contact-form-checkbox label a {
    color: #404042;
}

.contact-form-submit {
    width: fit-content;
    padding: 16px 42px;
    background-color: #404042;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
}

.contact-form-submit:hover {
    background-color: #555;
}

/* Information Section */

.contact-form-info {
    width: 40%;
    padding: 20px 30px;
    border-radius: 5px;
    position: relative;
}

.contact-form-info h3 {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 16px;
    color: #7C8189;
}

.contact-form-info p {
    font-size: 16px;
    line-height: 19px;
    color: #404042;
}

.contact-form-info-text {
    display: flex;
    flex-direction: column;
    background: #EEEFEE;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 80px;
    padding: 30px 40px;
    max-width: 480px;
    width: 100%;
    height: fit-content;
}

.contact-form-info-img {
    max-width: 480px;
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    position: absolute;
    top: -160px;
    right: 0;
}

.contact-form-input::placeholder {
    color: #A9B0B4;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: 'poppins', sans-serif;
}

.oval-form {
    background-color: #FFFFFF;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: block;
}

.contact-form-info-text-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-check {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #EEEFEE;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

.contact-form-check:checked {
    background-color: #7C8189;
}

.contact-form-check:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* about us */

.about-us-container {
    width: 100%;
    background: #FFF;
    color: #404042;
}

.about-us-banner {
    background-image: url("../images/Empresa-header-img-kTJGymD.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    min-height: 700px;
    flex-direction: column;
    position: relative;
}

.about-us-banner h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.about-us-banner h3 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #7C8189;
    text-align: center;
}

.about-us-banner p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.about-us-banner-text {
    position: absolute;
    width: 100%;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* text-image */

.text-image-container {
    width: 100%;
    background: #FFF;
}

.text-image {
    display: flex;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    color: #404042;
    min-height: 400px;
    padding: 70px 20px 20px;
    justify-content: space-between;
}

.text-image.reverse {
    flex-direction: row-reverse;
}

.text-image-box {
    position: relative;
    max-width: 473px;
    width: 100%;
}

.text-image-image {
    position: absolute;
    top: -150px;
    border-radius: 10px;
}

.text-image.reverse .text-image-image {
    top: -60px;
}

.text-image-text {
    width: 47%;
}

.text-image.reverse .text-image-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-image-heading {
    line-height: 26px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-image-info {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
}

.text-image-container.reverse-container {
    padding-bottom: 90px;
}

/* faq */

.faq-banner {
    background-image: url(https://placehold.co/2880x800);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-direction: column;
}

.faq-banner h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #404042;
}

.faq-banner h3 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #7C8189;
    text-align: center;
}

.faq-banner p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    max-width: 650px;
    text-align: center;
    color: #404042;
}

.contact-form-container.faq {
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

.faq-container {
    background: #FFF;
    border-radius: 15px;
    overflow: hidden;
    min-height: 750px;
}

.faq-accordion {
    background-color: #fff;
    color: #404042;
    cursor: pointer;
    padding: 20px 30px;
    font-size: 18px;
    line-height: 33px;
    width: 100%;
    border: none;
    display: flex;
    text-align: left;
    outline: none;
    transition: all .3s ease-in-out;
    font-family: inherit;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.faq-accordion:first-of-type {
    border: none;
}

.faq-accordion:hover, .faq-accordion.active {
    color: #DC9E26;
}

.panel {
    padding: 0 30px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.panel p {
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 26px;
    font-size: 18px;
    color: #949494;
}

.panel.open {
    display: block;
}

.faq-item .faq-accordion svg {
    transition: all 0.3s ease-in-out;
}

.faq-item .faq-accordion svg.rotate {
    transform: rotate(180deg);
}

.contact-form-container.faq .contact-form-info-text {
    position: relative;
    right: unset;
    bottom: unset;
    height: max-content;
    max-width: 380px;
    width: 100%;
}

.contact-form-container.faq .contact-form-info-img {
    max-width: 380px;
}

.contact-form-container.faq .contact-form-info {
    justify-content: end;
    display: flex;
    max-width: 380px;
    width: 46%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 260px;
}

.mid-banner.faq h2, .mid-banner.faq p {
    color: #FFF;
}

.mid-banner.faq a {
    background: #7C8189;
    color: #FFF;
}

/* references */

.toggle-bar-container {
    width: 100%;
    background: #FFF;
}

.references-container {
    background-color: #FFF;
    color: #404042;
}

.references-box {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
    width: 100%;
}

.references-filter {
    width: 25%;
    padding: 20px;
}

.references-filter h2, .references-filter h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.references-filter h3 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

.references-filter h2 {
    border-bottom: 1px solid #DDDFDE;
    padding-bottom: 30px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
}

.references-filter-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #DDDFDE;
    padding-bottom: 20px;
}

.references-filter label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    padding: 5px 0;
}

.references-filter-more {
    font-size: 14px;
    line-height: 16px;
    color: #404042;
}

.references-list {
    width: 75%;
}

.references-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.references-item-details {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    width: 66%;
}

.references-item-details h3 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.references-item-details p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.references-item-details div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 17px 0;
}

.references-item-img {
    width: 100%;
    max-width: 100px;
    height: fit-content;
    background-color: #ddd;
    border-radius: 4px;
}

.references-item-download {
    text-align: center;
    max-width: 235px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    align-items: center;
    margin: auto 0;
}

.references-item-download button {
    background-color: #7C8189;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    height: fit-content;
}

.references-item-download p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #7C8189;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-right: 10px;
}

.references-item-download p span {
    font-size: 18px;
}

/* swiper */

.best-sellers .swipe .button-prev-1, .best-sellers .swipe .button-prev-2, .swiper .button-prev-3 {
    left: unset;
    right: 100px;
    width: max-content;
    height: max-content;
}

.best-sellers .swipe .button-next-1, .best-sellers .swipe .button-next-2, .swiper .button-next-3 {
    width: max-content;
    height: max-content;
}

.best-sellers .swipe .button-next-1:after, .best-sellers .swipe .button-prev-1:after, .best-sellers .swipe .button-next-2:after, .best-sellers .swipe .button-prev-2:after, .swiper .button-prev-3:after, .swiper .button-next-3:after {
    font-size: 27px;
    background: #EEEFEE;
    border-radius: 50%;
    color: #404042;
    width: 37px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper .button-next-3:after, .swiper .button-prev-3:after {
    background: #fff;
}

.best-sellers .swipe .button-next-1:after, .best-sellers .swipe .button-next-2:after, .swiper .button-next-3:after {
    padding-left: 3px;
}

.best-sellers .swipe .button-prev-1:after, .best-sellers .swipe .button-prev-2:after, .swiper .button-prev-3:after {
    padding-right: 3px;
}

.swiper .button-prev-3 {
    left: 60px;
}

.swiper .button-next-3 {
    right: 60px;
}

.best-sellers .product-list .swiper-pagination .swiper-pagination-bullet, .swiper-pagination-3 .swiper-pagination-bullet {
    background: #DDDFDE;
    height: 10px;
    width: 10px;
    margin: 0 10px;
    opacity: 1;
}

.swiper-pagination-3 .swiper-pagination-bullet {
    background: #FFF;
}

.best-sellers .product-list .swiper-pagination .swiper-pagination-bullet-active, .swiper-pagination-3 .swiper-pagination-bullet-active {
    background: #7C8189;
}

.swiper-pagination-3 .swiper-pagination-bullet-active {
    background: #404042;
}

.best-sellers .product-list .swiper-pagination {
    bottom: -5px;
}

.my-swiper-container .mySwiper .swiper-pagination-3 {
    bottom: 40px;
}

.swiper.mySwiper {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
}

.my-swiper-container {
    width: 100%;
    background: #FFF;
    position: relative;
    z-index: 0;
}

/* pages tool*/

.pages-tool {
    display: flex;
    max-width: 310px;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
}

.prev-page span, .next-page span {
    background: #7C8189;
    padding: 7px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    color: #404042;
}

.page-mark {
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    color: #404042;
}

.page-mark.current-page {
    background: #EEEFEE;
}

.references-list .pages-tool {
    margin-top: 30px;
}

.brand-link {
    text-decoration: none;
    color: #404042;
}

.best-sellers .swiper-pagination-4 .swiper-pagination-bullet {
    background: #DDDFDE;
    height: 10px;
    width: 10px;
    margin: 0 10px;
    opacity: 1;
}

.best-sellers .swiper-pagination-4 .swiper-pagination-bullet {
    background: #DDDFDE;
}

.best-sellers .swiper-pagination-4 .swiper-pagination-bullet-active {
    background: #7C8189;
}

.best-sellers .swiper-pagination-4 {
    bottom: 40px;
    top: unset;
}

.mobile-banner-img {
    display: none;
}

.mid-banner-content.faq-mid-banner h2, .mid-banner-content.faq-mid-banner p {
    color: #FFF;
}

.sorting-select {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/*responsive*//*-------------------------------------------------------------------------*/

@media screen and (max-width: 1440px) {

    .services {
        gap: 20px;
        padding: 0 20px;
    }

    .tab-zone-content-container-2 .product-list {
        justify-content: start;
    }

}

@media screen and (max-width: 1280px) {

    .services {
        margin-top: -80px;
    }

    .hero-text {
        margin-top: -75px;
    }

    .header-1-text {
        margin-left: 10px;
    }

    footer .footer-columns {
        gap: 50px;
    }

    .contact-form-checkbox label {
        flex-wrap: wrap;
    }

    .category-list {
        justify-content: center;
    }

    .tab-zone-notification {
        padding: 30px 20px;
    }

    .tab-zone-bill {
        gap: 5px;
    }

}

@media screen and (max-width: 1080px) {

    .services {
        margin-top: 40px;
    }

    .hero-text {
        margin-top: 0;
    }

    .top-bar-links a {
        display: none;
    }

    .top-bar-links .link-pedido-rapido {
        display: flex;
    }

    .user-area {
        padding: 15px 0;
    }

    .footer-top {
        flex-direction: column;
    }

    footer .footer-logo {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-top img {
        height: fit-content;
    }

    .footer-2 {
        margin-top: 0;
    }

    .mid-banner h2, .mid-banner p {
        font-size: 20px;
    }

    .mid-banner-content {
        left: 10%;
    }

    .panel p, .faq-accordion {
        font-size: 16px;
    }

    .contact-form-info p {
        font-size: 14px;
    }

    .references-item-download {
        max-width: 220px;
    }

    .references-item-download p {
        font-size: 12px;
    }

    .tabzone3-edit-container {
        flex-direction: column;
    }

    .tabzone3-edit-box {
        width: 90%;
        padding: 20px 0;
    }

    .tabzone3-edit-box.long-input {
        padding: 20px 0;
    }

    .tab-zone-3-name-input {
        margin-right: 0;
    }

    .tab3-name-box {
        flex-direction: column;
    }

    .tabzone3-edit.tze4 .tab-zone-3-name-input {
        font-size: 14px;
        margin: 0 5px;
    }

    .tab-zone-content-container-2 .product-list {
        justify-content: space-around;
    }

    .tab-zone-content.user-home {
        flex-direction: column;
    }

    .tab-zone-content.user-home .tab-zone-content-container, .tab-zone-notification {
        width: 100%;
    }

    .tab-zone-notification {
        width: 95%;
        margin: 20px auto 0;
    }

}

@media screen and (max-width: 890px) {

    header {
        padding: 32px;
    }

    nav ul {
        gap: 40px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .user-area {
        font-size: 14px;
    }

    .hero-text {
        margin-top: 0;
    }

    .services {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .service-card {
        max-width: unset;
        width: 40%;
        margin-bottom: 20px;
    }

    .hero-img {
        height: 60vh;
        margin-top: -111px;
    }

    .hero-text {
        margin-top: -30px;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .user-area {
        gap: 0;
        font-size: 13px;
    }

    .dropdown-toggle, .search-bar input[type="text"]::placeholder {
        font-size: 14px;
    }

    .header-1 .user-area a p {
        display: none;
    }

    .about-us-banner h2 {
        font-size: 28px;
    }

    .about-us-banner p {
        font-size: 18px;
    }

    .about-us-banner-text {
        padding: 0 20px;
    }

    .text-image, .text-image.reverse {
        flex-direction: column;
    }

    .text-image-text {
        width: 100%;
    }

    .text-image-box {
        margin: 0 auto;
    }

    .text-image-image {
        position: static;
        margin-top: 30px;
        width: 100%;
    }

    .text-image {
        padding: 50px 40px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .mid-banner p {
        margin-bottom: 15px;
    }

    .mid-banner h2, .mid-banner p {
        font-size: 18px;
    }

    .mid-banner a {
        font-size: 14px;
    }

    .contact-form-banner h2 {
        font-size: 28px;
    }

    .contact-form-banner p {
        font-size: 18px;
    }

    .contact-form-container {
        flex-direction: column;
    }

    .contact-form-info-img, .contact-form-info-text {
        position: static;
    }

    .contact-form-form, .contact-form-info {
        width: 100%;
    }

    .contact-form-info {
        margin-top: 50px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-container {
        padding: 80px 40px;
    }

    .contact-form-container.faq {
        flex-direction: column;
    }

    .contact-form-container.faq .contact-form-info, .contact-form-container.faq .contact-form-info-text, .contact-form-container.faq .contact-form-info-img {
        width: 100%;
        max-width: 480px;
    }

    .contact-form-container.faq .contact-form-info {
        padding-top: 0;
        max-width: unset;
    }

    .pdp-product-header {
        flex-direction: column;
    }

    .swiper .button-next-3 {
        right: 30px;
    }

    .swiper .button-prev-3 {
        left: 30px;
    }

    .swiper .button-prev-3:after, .swiper .button-next-3:after {
        font-size: 22px;
        width: 29px;
        height: 32px;
    }

    .banner-text {
        gap: 10px;
        top: 48%;
        left: 26%;
    }

    .references-item-download {
        max-width: 200px;
        margin-left: 10px;
    }

    .tab-zone-sidebar nav {
        display: flex;
        position: static;
    }

    .tab-zone {
        flex-direction: column;
        padding: 30px 20px 20px;
    }

    .tab-zone-sidebar ul {
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-zone-sidebar ul li {
        width: 30%;
    }

    .tab-zone-sidebar li a {
        padding: 10px 20px;
    }

    .tab-zone-content {
        margin-top: 30px;
    }

    .tabzone-4-td, .tabzone-4-button {
        font-size: 14px;
    }

    .tab-zone-content.user-home {
        margin: 20px 0 0;
    }

    .tab-zone-content.user-pref {
        margin: 20px 0 0;
    }

}

@media screen and (max-width: 768px) {

    header {
        padding: 32px 20px;
    }

    nav ul {
        gap: 30px;
        margin: 0 20px;
    }

    .user-logo {
        width: 12px;
        margin-right: 10px;
    }

    .user-area {
        gap: unset;
        padding: 10px 15px;
        font-size: 12px;
        max-width: 100px;
    }

    .service-card {
        width: 80%;
    }

    .hero-img {
        height: 55vh;
        margin-top: -127px;
    }

    .hero-text {
        margin-top: -40px;
    }

    .services {
        margin-top: 50px;
    }

    .legal-links {
        text-align: center;
    }

    .material-symbols-outlined.menu-icon {
        display: block;
        cursor: pointer;
    }

    nav {
        display: none;
        position: absolute;
        right: 0;
        bottom: -10px;
    }

    .user-area-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .product-filter {
        display: none;
    }

    .about-us-banner {
        min-height: 600px;
    }

    .about-us-banner h2 {
        font-size: 26px;
    }

    .about-us-banner p {
        font-size: 16px;
    }

    .about-us-banner h3 {
        font-size: 14px;
    }

    .text-image-heading {
        font-size: 24px;
    }

    .text-image-info {
        font-size: 14px;
    }

    .footer-logo div p {
        font-size: 12px;
    }

    footer .footer-column h4 {
        font-size: 16px;
    }

    footer .footer-column a {
        font-size: 14px;
    }

    .mid-banner-content {
        left: 7%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 85%;
    }

    .mid-banner h2, .mid-banner p {
        width: 60%;
    }

    .mid-banner a {
        height: fit-content;
    }

    .mid-banner img {
        display: none;
    }

    .mid-banner .mobile-banner-img {
        display: block;
        padding: 20px;
        border-radius: 30px;
    }

    .mid-banner-content {
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        text-align: end;
        align-items: end;
        top: 67%;
    }

    .mid-banner h2, .mid-banner p {
        width: 100%;
    }

    .mid-banner p {
        width: 50%;
    }

    .contact-form-banner h2, .faq-banner h2 {
        font-size: 26px;
    }

    .contact-form-banner p, .faq-banner p {
        font-size: 16px;
    }

    .contact-form-banner h3, .faq-banner h3 {
        font-size: 14px;
    }

    .contact-form-banner, .faq-banner {
        padding: 0 20px;
    }

    .contact-form-container {
        padding: 60px 20px;
    }

    .contact-form-info {
        padding: 20px 0;
    }

    .contact-form-form h3 {
        font-size: 28px;
    }

    .panel p, .faq-accordion {
        font-size: 14px;
    }

    .contact-form-info p {
        font-size: 12px;
    }

    .faq-accordion {
        padding: 20px 0;
    }

    .panel {
        padding: 0;
    }

    body .breadcrumb-container {
        display: block;
        position: static;
    }

    .breadcrumb span {
        margin: 0 10px;
    }

    .home-crumb {
        margin-right: 10px;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .pdp-product-header {
        padding: 20px 0;
        margin-bottom: 50px;
    }

    .pdp-categories a, .pdp-categories, .pdp-favorites {
        font-size: 12px;
    }

    .pdp-product-name {
        font-size: 28px;
    }

    .pdp-description, .pdp-tab-content {
        font-size: 14px;
    }

    .pdp-tabs-content {
        padding: 0 40px;
    }

    .pdp-tab-content {
        padding: 40px 0 60px;
    }

    .best-sellers.bs-products .swipe .button-prev-1, .best-sellers .swipe .button-prev-2 {
        top: 650%;
        left: 38%;
    }

    .best-sellers.bs-products .swipe .button-next-1, .best-sellers .swipe .button-next-2 {
        top: 650%;
        left: 54.5%;
    }

    .best-sellers .swipe .button-prev-1 {
        top: 720%;
        left: 38%;
    }

    .best-sellers .swipe .button-next-1 {
        top: 720%;
        left: 54.5%;
    }

    .best-sellers h2, .new-products h2 {
        font-size: 20px;
    }

    .categories-link {
        margin-left: 0;
    }

    .categorie-heading {
        flex-direction: column;
    }

    .banner-text h1 {
        font-size: 26px;
    }

    .banner-text a {
        padding: 9px 20px;
        max-width: 150px;
    }

    .banner-text {
        gap: 0;
    }

    .references-box {
        flex-direction: column;
    }

    .references-filter {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .references-list {
        width: 100%;
    }

    .references-item {
        padding: 15px 0;
        flex-direction: column;
        align-items: center;
    }

    .references-filter-section {
        margin-left: 10px;
        margin-right: 10px;
    }

    .references-item-details h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .references-item-details {
        width: 100%;
    }

    .references-item-download {
        max-width: 235px;
        margin-left: 0;
        margin-top: 20px;
    }

    .references-filter h2 {
        width: 100%;;
    }

    #login-page .login-container h2, #login-page .register-container h3 {
        font-size: 28px;
    }

    #login-page label, #login-page input[type="text"]::placeholder, #login-page input[type="password"]::placeholder, .tab-zone-sidebar li a {
        font-size: 14px;
    }

    #login-page .checkbox-container label::before {
        top: 2px;
    }

    #login-page .checkbox-container label, #login-page a {
        font-size: 12px;
    }

    .tab-zone-3-name-input {
        font-size: 14px;
    }

    .tabzone3-edit-button {
        font-size: 12px;
    }

    .tabzone3-edit.tze4 {
        flex-wrap: wrap;
    }

    .tabzone3-edit.tze4 .tab-zone-3-name-input {
        font-size: 14px;
        margin: 0 10px;
    }

    .tab-zone {
        padding: 20px;
    }

    .tab-zone-content {
        margin: 30px 0 0;
    }

    table td:nth-child(1) {
        width: 30%;
    }

    .tabzone-4-table {
        border-collapse: separate;
        border-spacing: 0;
    }

    .tabzone-4-th,
    .tabzone-4-td {
        padding: 10px 5px;
    }

    .tabzone-4-td {
        border-top: none;
    }

    .tabzone-4-container {
        overflow: scroll;
    }

    .tab-zone-content-container {
        padding: 0;
    }

    .tab-zone-bill {
        gap: 10px;
        flex-wrap: wrap;
    }

}

@media screen and (max-width: 600px) {

    footer .footer-logo {
        flex-direction: column;
    }

    footer .footer-columns {
        gap: 30px;
    }

    .mid-banner .mobile-banner-img {
        padding: 0;
    }

    .mid-banner h2, .mid-banner p {
        font-size: 16px;
        width: 70%;
    }

    .mid-banner a {
        font-size: 12px;
    }

    .mid-banner a {
        max-width: 180px;
    }

    .mid-banner-content {
        top: 60%;
        left: 2%;
    }

    .mid-banner .mobile-banner-img {
        border-radius: 20px;
    }

    label, .contact-form-checkbox label a, .contact-form-input::placeholder, .contact-form-checkbox label {
        font-size: 14px;
    }

    .contact-form-check {
        width: 31px;
        margin-right: 5px;
    }

    .swiper-slide-pdp, .best-sellers.bs-products .swiper-wrapper .swiper-slide, .swipe-2 .swiper-slide {
        padding-left: 80px;
    }

    .best-sellers .swipe .button-prev-1 {
        top: 740%;
        left: 38%;
    }

    .best-sellers .swipe .button-next-1 {
        top: 740%;
        left: 54.5%;
    }

    .banner-text {
        flex-direction: row;
        width: 70%;
        left: 50%;
        top: 48%;
        justify-content: space-between;
    }

    .banner-text a {
        height: fit-content;
    }

    .best-sellers.bs-products .swipe .button-prev-1, .best-sellers .swipe .button-prev-2 {
        top: 650%;
        left: 35%;
    }

    .best-sellers.bs-products .swipe .button-next-1, .best-sellers .swipe .button-next-2 {
        top: 650%;
        left: 56.5%;
    }

    .references-filter-section {
        width: 100%;
    }

    .login-page {
        padding: 20px;
    }

    #login-page .login-container {
        padding: 20px 30px;
    }

    #login-page .login-container h2, #login-page .register-container h3 {
        font-size: 26px;
        text-align: center;
    }

    .product-list.specific-page {
        justify-content: center;
    }

    .tab-zone-sidebar ul li {
        width: 40%;
        margin: 0 10px;
    }

    .tab-zone-dual {
        flex-direction: column;
        gap: 30px;
    }

    .tab-zone-dual-left, .tab-zone-dual-right {
        width: 100%;
    }

    .tabzone3-edit {
        flex-wrap: wrap;
    }

    .tabzone3-edit.tze4 .tab-zone-3-name-input {
        font-size: 12px;
    }

    .tab-zone-data-heading {
        flex-direction: column;
        gap: 20px;
    }

    .tab-zone-data-button-2 {
        max-width: 245px;
    }

    .tab-zone-cards {
        flex-direction: column;
    }

    .tab-zone-card {
        width: 100%;
    }

}

@media screen and (max-width: 450px) {

    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .hide-text {
        display: none;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-text {
        width: 80%;
    }

    .service-card {
        width: 100%;
    }

    .service-card {
        padding: 30px 40px;
    }

    .user-area {
        padding: 7px;
    }

    .user-logo {
        margin: 0;
    }

    .user-area-container {
        gap: 10px;
    }

    .top-bar-links .link-pedido-rapido {
        display: none;
    }

    .top-bar a {
        font-size: 11px;
        display: none;
    }

    .top-bar .top-bar-mobile {
        display: flex;
    }

    .top-bar-links {
        margin: 0;
        gap: 0;
    }

    .top-bar {
        justify-content: center;
    }

    .search-bar {
        display: none;
    }

    .about-us-banner {
        min-height: 500px;
    }

    .about-us-banner h2 {
        font-size: 24px;
    }

    .about-us-banner p {
        font-size: 14px;
    }

    .about-us-banner h3 {
        font-size: 12px;
    }

    .text-image {
        padding: 40px 20px 0;
    }

    .text-image-heading {
        font-size: 22px;
    }

    footer .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-columns .footer-column span, footer .footer-columns .footer-column p {
        text-align: center;
    }

    .contact-form-banner h2 {
        font-size: 24px;
    }

    .contact-form-form h3 {
        font-size: 26px;
    }

    .breadcrumb span {
        margin: 0 5px;
    }

    .pdp-product-name {
        font-size: 26px;
    }

    .pdp-tabs-content {
        padding: 0 20px;
    }

    .pdp-tab {
        font-size: 16px;
    }

    .swiper-slide-pdp, .best-sellers.bs-products .swiper-wrapper .swiper-slide, .swipe-2 .swiper-slide {
        padding-left: 27px;
    }

    .best-sellers .swipe .button-prev-1 {
        left: 24%;
        top: 715%;
    }

    .best-sellers .swipe .button-next-1 {
        left: 61.5%;
        top: 715%;
    }

    .pdp-price-contents .add-to-cart {
        font-size: 14px;
        padding: 15px 10px;
    }

    .pdp-price-contents .add-to-cart {
        gap: 5px;
    }

    .banner-text a {
        display: none;
    }

    .banner img {
        min-height: 150px;
    }

    .banner-text {
        left: 59%;
    }

    .best-sellers.bs-products .swipe .button-prev-1, .best-sellers .swipe .button-prev-2 {
        top: 650%;
        left: 26%;
    }

    .best-sellers.bs-products .swipe .button-next-1, .best-sellers .swipe .button-next-2 {
        top: 650%;
        left: 57%;
    }

    .tab-zone-sidebar ul li {
        width: 80%;
        margin: 0 auto;
    }

    .tab-zone-content {
        margin: 30px 0 0;
    }

    .tab-zone {
        padding: 20px;
    }

    .tab-zone-data {
        padding: 20px;
    }

    .tab-zone-3-name-input {
        font-size: 13px;
    }

    .tabzone3-edit.tze4 {
        justify-content: center;
    }

    .tz5-communication-section {
        flex-direction: column;
    }

    .tz5-communication-type, .tz5-additional-info {
        width: 100%;
    }

}