:root {
    --primary-green: #223d43;
    --orange: #d4a54d;
    --black: #161616;
    --color-google-blue: #4285f4;
}

@font-face {
  font-family: logoFont;
  src: url(ethnocentric-rg.otf);
}

html, body{
    height: 100%;
    font-size: 14px;
    font-family: "Poppins", system-ui;
    color: var(--black);
    margin: 0;
    background: #f1f5f8;
}

.container-fluid{
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.scrap-input-container{
    background: #fff;
    padding: 20px;
    margin-top: 40px;
}

.scrap-input-wrap{
    display: flex;
    align-items: center;
    border: 2px solid #b9c7cd;
    border-radius: 6px;
    height: 50px;
    transition: all 0.25s ease;
}

.scrap-input{
    height: 50px;
    box-sizing: border-box;
    border: none;
    background: none;
    padding: 0 20px;
    width: 100%;
    font-family: inherit;
    color: #414d55;
    font-weight: 500;
}

.scrap-input::placeholder{
    color: #b9c7cd;
}

.scrap-input:focus{
    outline: none;
}

.scrap-input-focus{
    border: 2px solid var(--color-google-blue);
}

.scrap-button{
    height: 40px;
    background: linear-gradient(50deg, #213770 0%, #AC322A 100%);
    margin-right: 5px;
    border-radius: 6px;
    color: #fff;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.result-container{
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    display: none;
}

.result-loading{
    text-align: center;
    color: #606771;
    font-size: 17px;
}

.result-error-message{
    text-align: center;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
}

.list-header-title{
    font-size: 20px;
    font-weight: 600;
}

.list-item{
    padding: 15px 0;
    border-bottom: 1px solid #dfe4e7;
}

.list-item-title{
    font-size: 16px;
    color: #606771;
    font-weight: 500;
}

.list-item-company, .list-item-location{
    font-size: 14px;
}

.list-item-company span, .list-item-location span{
    font-weight: 500;
}

.list-item-description{
    font-size: 13px;
    color: #1a1a1a;
}

.list-flex-container{
    display: flex;
    gap: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.list-company{
    color: var(--color-google-blue);
}

.list-location{
    display: flex;
    align-items: center;
    font-size: 13px;
}

.list-location ion-icon{
    font-size: 15px;
    margin-right: 5px;
    color: #f44336;
}






.button-loading{
    background: #b9c7cd;
    cursor: default;
}

/** Old Rules **/

.topbar-fluid{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease;
}

.topbar-container{
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px;
}

.topbar-left{
    display: flex;
    align-items: center;
}

.topbar-search-container{
    flex: 1;
    box-sizing: border-box;
    padding: 0 40px;
    display: none;
}

.page-topbar-fluid .topbar-search-container{
    display: block;
}

.topbar-search-inner{
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.topbar-search-wrap{
    width: 100%;
    display: flex;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    align-items: center;
    box-sizing: border-box;
    padding-right: 3px;
}

.topbar-search-inner .hero-search-input{
    height: 40px;
    font-size: 14px;
}

.topbar-search-inner .hero-search-filter{
    height: 36px;
    font-size: 14px;
    border-left: 1px solid #bbb;
    width: 90px;
}

.topbar-search-inner .hero-search-submit{
    height: 40px;
    color: #fff;
    font-size: 14px;
    width: 125px;
}

.topbar-logo-container{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.topbar-logo-icon{
    height: 50px;
    overflow: hidden;
    width: 100px;
}

.topbar-logo-icon img{
    height: 100%;
}

.topbar-logo-white{
    display: block;
}

.topbar-logo-green{
    display: none;
}

.topbar-logo-title{
    font-family: logoFont;
    color: #fff;
    font-size: 24px;
    margin-left: 15px;
}

.topbar-right{
    display: flex;
    align-items: center;
}

.topbar-call-btn{
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.topbar-call-btn i{
    color: var(--orange);
    font-size: 24px;
    line-height: 1;
    margin-right: 10px;
}

.topbar-login-btn{
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    margin-left: 25px;
}

.topbar-login-btn i{
    color: var(--orange);
    font-size: 24px;
    line-height: 1;
    margin-right: 10px;
}

.topbar-signup-btn{
    background: var(--orange);
    height: 36px;
    width: 120px;
    margin-left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.topbar-white, .page-topbar-fluid{
    background: #fff;
}

.topbar-scroll{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px) saturate(280%);
    -webkit-backdrop-filter: blur(15px) saturate(280%);
    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
}

.topbar-white .topbar-logo-white, .page-topbar-fluid .topbar-logo-white{
    display: none;
}

.topbar-white .topbar-logo-green, .page-topbar-fluid .topbar-logo-green{
    display: block;
}

.topbar-white .topbar-logo-title, .topbar-white .topbar-call-btn, .topbar-white .topbar-login-btn{
    color: var(--primary-green);
}

.page-topbar-fluid .topbar-logo-title, .page-topbar-fluid .topbar-call-btn, .page-topbar-fluid .topbar-login-btn{
    color: var(--primary-green);
}

.menu-fluid{
    background: transparent;
    top: 70px;
    position: absolute;
    z-index: 9;
    box-sizing: border-box;
    padding: 0 25px;
    width: 100%;
    transition: all 0.3s ease;
}

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

.menu-left, .menu-right{
    display: flex;
}

.menu-item{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 40px;
}

.menu-item i{
    font-size: 18px;
    margin-right: 8px;
}

.menu-left .menu-item{
    padding-right: 25px;
}

.menu-left .menu-item:last-child{
    padding-right: 0;
}

.menu-right .menu-item{
    margin-left: 25px;
    font-size: 14px;
}

.menu-white{
    background: #fff;
}

.page-menu-fluid{
    background: #fff;
}

.menu-white .menu-item, .page-menu-fluid .menu-item{
    color: var(--primary-green);
}

.menu-item:hover, .menu-item-active, .expandable-menu-active, .menu-white .expandable-menu-active, .page-menu-fluid .expandable-menu-active, .page-menu-fluid .menu-item-active{
    color: var(--orange);
}

.menu-expandable-wrap{
    display: flex;
    align-items: center;
    position: relative;
}

.expandable-menu-header{
    display: flex;
    align-items: center;
}

.expandable-fluid{
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}

.expandable-container{
    box-sizing: border-box;
    padding: 20px 10px;
    color: #161616;
    background: #fff;
    height: 220px;
    transition: height 0.3s ease;
    position: fixed;
    top: 109px;
    left: 0;
    width: 100%;
    display: none;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.5);
}

.brand-expandable-container{
    height: 420px;
}

.expandable-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0;
    opacity: 1;
    animation: expAnim 0.2s ease;
}

@keyframes expAnim{
    
    0%      {margin-top: 20px; opacity: 0;}
    100%    {margin-top: 0; opacity: 1;}
    
}

.expandable-item{
    width: calc(20% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 10px;
    cursor: pointer;
}

.expandable-item-logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 13px;
    height: 120px;
    box-sizing: border-box;
    padding: 20px;
    transition: all 0.3s;
}

.expandable-item-logo img{
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.expandable-item:hover .expandable-item-logo{
    border: 1px solid var(--orange);
}

.expandable-item-title{
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
}






.home-hero-container{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-hero-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-over{
    width: 100%;
    height: 100%;
    background: linear-gradient(#223d43 20%, rgb(34 61 67 / 70%), transparent), linear-gradient(45deg, rgb(34 61 57 / 90%), transparent);
    position: relative;
    box-sizing: border-box;
    padding: calc(12vw + 100px) 30px 13vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.home-hero-subtitle{
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.home-hero-subtitle i{
    font-size: 20px;
    line-height: 1;
    margin-left: 8px;
}

.home-hero-title{
    font-size: 36px;
    font-weight: 600;
    width: 100%;
    line-height: 48px;
    margin-bottom: 40px;
}

.hero-search-container{
    display: flex;
    background: #fff;
    width: 100%;
    max-width: 800px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    align-items: center;
    box-sizing: border-box;
    padding-right: 5px;
}

.hero-search-input{
    height: 50px;
    flex: 1;
    font-family: inherit;
    background: none;
    border: none;
    padding: 0 25px;
    box-sizing: border-box;
    font-size: 15px;
}

.hero-search-input:focus{
    outline: none;
}

.hero-search-filter{
    height: 40px;
    display: flex;
    color: #161616;
    align-items: center;
    font-size: 16px;
    border-left: 1px solid #ddd;
    width: 100px;
    justify-content: center;
}

.hero-search-submit{
    height: 50px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    border-radius: 50px;
    font-size: 16px;
}

.hero-search-filter i, .hero-search-submit i{
    font-size: 20px;
    margin-right: 6px;
    line-height: 1;
}

.home-section-fluid{
    box-sizing: border-box;
    padding: 50px 30px;
    padding-bottom: 70px;
}

.home-section-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.home-section-title{
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.section-header-link{
    display: flex;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    cursor: pointer;
    line-height: 1;
}

.section-header-link i{
    font-size: 20px;
}

.home-product-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 30px;
}

.home-product-item{
    border: 1px solid #ddd;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 24px;
}

.product-photo-wrap{
    width: 100%;
    height: calc((25vw - 30px) / 1.5);
    overflow: hidden;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product-photo-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease;
}

.home-product-item:hover, .product-item:hover{
    border: 1px solid var(--orange);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.home-product-item:hover .product-photo-wrap img, .product-item:hover .product-photo-wrap img{
    transform: scale(1.2);
}

.home-product-over, .product-over{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.8));
    z-index: 2;
    top: 0;
}

.product-wish-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.product-media-wrap{
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    z-index: 3;
    line-height: 1;
}

.product-media-item{
    display: flex;
    margin-right: 10px;
    color: #fff;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
}

.product-media-item i{
    font-size: 18px;
    margin-right: 5px;
}

.product-media-item:last-child{
    margin-right: 0;
}

.product-new-wrap{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: #fff;
    color: #161616;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    height: 20px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-info-wrap{
    padding: 20px 5px;
    color: var(--primary-green);
}

.product-name{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-name:hover{
    color: var(--orange);
}

.product-price{
    font-weight: 600;
}

.product-specs-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.product-specs-item{
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.product-specs-value{
    font-weight: 600;
    margin-left: 5px;
}

.product-item-footer{
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.product-detail-btn{
    height: 40px;
    width: calc(50% - 2.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: #f4f4f4;
    cursor: pointer;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
}

.product-compare-btn{
    height: 40px;
    width: calc(50% - 2.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: var(--primary-green);
    cursor: pointer;
    font-weight: 500;
    border-radius: 20px;
}

.alt-section-fluid{
    background: #f4f4f4;
    padding: 50px 30px;
}

.alt-section-fluid .home-section-title{
    text-align: center;
}

.alt-section-fluid .home-section-subtitle{
    text-align: center;
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 300;
}

.home-cat-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
}

.home-cat-item{
    width: calc(20% - 30px);
    margin: 30px 15px;
    cursor: pointer;
}

.home-cat-logo{
    width: 100%;
    height: 140px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 13px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.home-cat-logo img{
    object-fit: contain;
    max-width: 100%;
    max-height: 80%;
}

.home-cat-name{
    color: var(--primary-green);
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
}

.home-cat-item:hover .home-cat-logo{
    border: 1px solid var(--orange);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    filter: grayscale(0);
}

.alt-section-btn{
    width: max-content;
    margin: auto;
    margin-top: 20px;
    background: var(--primary-green);
    height: 50px;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 25px 0 35px;
    transition: all 0.3s ease;
}

.alt-section-btn:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.alt-section-btn i{
    font-size: 24px;
    margin-left: 10px;
    line-height: 1;
}

.home-about-fluid{
    padding: 70px 30px;
}

.home-about-container{
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 85vw;
}

.home-about-video{
    width: calc(50% - 50px);
    overflow: hidden;
    height: calc((50vw - 60px)* .6);
    position: relative;
    cursor: pointer;
    border-radius: 24px;
}

.home-about-video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.home-video-over{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn{
    background: rgba(255, 255, 255, 0.7);
    width: 120px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-green);
}

.home-about-video:hover img{
    transform: scale(1.1);
}

.home-about-video:hover .home-video-over{
    background: rgba(0,0,0,0.5);
}

.home-about-video:hover .video-play-btn{
    background: #fff;
}

.home-about-info{
    width: 50%;
}

.home-about-title{
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.home-about-subtitle{
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 300;
    margin-bottom: 20px;
}

.home-about-p{
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.home-about-btn{
    height: 50px;
    background: var(--primary-green);
    width: max-content;
    padding: 0 25px 0 35px;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 35px;
    transition: all 0.3s ease;
}

.home-about-btn i{
    font-size: 24px;
    margin-left: 10px;
}

.home-about-btn:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.newsletter-fluid{
    background: url(images/home-video-cover.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 80px 30px;
}

.newsletter-over{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(34,61,67,0.95);
    left: 0;
}

.newsletter-container{
    margin: auto;
    width: 85vw;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-title{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-subtitle{
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.newsletter-button{
    height: 60px;
    background: var(--orange);
    width: 200px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 500;
}

.footer-fluid{
    background: #101a1c;
}

.footer-company-logo{
    height: 50px;
    overflow: hidden;
    margin-left: -2px;
}

.footer-company-logo img{
    height: 100%;
}

.footer-company-name{
    color: #fff;
    font-family: 'logoFont';
    font-size: 24px;
}

.footer-company-info{
    padding: 15px 0;
    margin: 15px 0;
    width: max-content;
}

.company-info-item{
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-social-wrap{
    display: flex;
}

.footer-social-item{
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    line-height: 1;
}

.footer-social-item:last-child{
    margin-right: 0;
}

.footer-copy-container{
    height: 60px;
    border-top: 1px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.footer-copy{
    font-size: 12px;
    color: #eee;
}

.footer-copy-links{
    display: flex;
    align-items: center;
}

.copy-link-item{
    color: #eee;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.copy-link-item:hover{
    color: var(--orange);
}

.copy-link-separator{
    height: 10px;
    width: 2px;
    background: #eee;
    margin: 0 15px;
}

.footer-top{
    display: flex;
    padding: 50px 30px;
}

.footer-company-container{
    width: 35%;
}

.footer-menu-container{
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.footer-menu-col{
    width: calc(25% - 20px);
}

.footer-menu-title{
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-menu-item{
    text-decoration: none;
    color: #ddd;
    cursor: pointer;
    display: block;
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-menu-item:hover{
    color: var(--orange);
}

.footer-large-col{
    width: calc(50% - 20px);
}

.footer-large-wrap{
    display: flex;
    justify-content: space-between;
}

.large-menu-col{
    width: calc(50% - 20px);
}

.page-header-fluid{
    margin-top: 110px;
    padding: 50px 30px;
    background: linear-gradient(to left, var(--primary-green), #101a1c);
}

.page-header-title{
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.page-header-path{
    font-weight: 500;
    color: #ddd;
}

.page-path-link{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-path-link:hover, .page-path-active{
    color: var(--orange);
}

.product-page-fluid{
    padding: 30px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-filter-container{
    width: calc(25% - 30px);
    margin-top: 70px;
    background: #f4f4f4;
    border-radius: 24px;
    padding: 20px;
    box-sizing: border-box;
}

.product-page-container{
    width: 75%;
}

.product-page-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-sort-button{
    height: 40px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 40px;
    padding: 0 30px 0 25px;
    font-size: 15px;
    cursor: pointer;
}

.product-sort-button i{
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

.product-layout-switch{
    display: flex;
    height: 40px;
    background: #f4f4f4;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 40px;
    width: 215px;
    justify-content: space-between;
}

.layout-switch-item{
    display: flex;
    width: 100px;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.layout-switch-item i{
    margin-right: 10px;
    font-size: 18px;
}

.layout-switch-item:hover{
    background: #fff;
}

.layout-switch-active, .layout-switch-active:hover{
    background: var(--primary-green);
    color: #fff;
    cursor: default;
}

.product-grid-container{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 30px;
}

.product-item{
    border: 1px solid #ddd;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 24px;
}

.product-filter-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-filter-section{
    margin-top: 20px;
}

.filter-section-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border-bottom: 1px solid #dfe5ed;
}

.filter-section-chevron{
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.filter-section-open .filter-section-chevron{
    transform: rotate(180deg);
}

.filter-check-item{
    display: flex;
    padding: 10px 0;
    align-items: center;
    line-height: 1;
    cursor: pointer;
}

.filter-check-box{
    border: 2px solid #aaa;
    height: 14px;
    width: 14px;
    border-radius: 4px;
    margin-right: 15px;
}

.filter-check-checked .filter-check-box{
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: #fff;
}

.product-description-wrap{
    display: none;
}

.product-list-container .product-description-wrap{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-list-container .product-item{
    margin-bottom: 30px;
    height: 20vw;
    position: relative;
    padding-left: calc(40% + 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-container .product-photo-wrap{
    border-radius: 20px;
    width: 40%;
    height: 20vw;
    position: absolute;
    left: 5px;
}

.product-list-container .product-info-wrap{
    width: 80%;
}

.product-list-container .product-item-footer{
    width: calc(80% + 15px);
    margin-bottom: 20px;
}

.product-filter-footer{
    border-top: 1px solid #dfe5ed;
    margin-top: 15px;
    padding-top: 20px;
}

.apply-filter-btn{
    background: var(--orange);
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.reset-filter-btn{
    margin-top: 20px;
    text-align: center;
    color: #f44336;
    cursor: pointer;
}

.not-found-fluid{
    margin-top: 110px;
    height: calc(100vh - 110px);
    background: #f4f4f4;
}

.not-found-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #b9c7cd;
}

.product-pagination-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px -5px 0;
}

.pagination-btn{
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
}

.pagination-btn i{
    font-size: 24px;
}

.product-pagination-inner{
    display: flex;
    align-items: center;
}

.pagination-btn:hover{
    background: #f1f5f8;
}

.pagination-btn-selected, .pagination-btn-selected:hover{
    background: var(--primary-green);
    color: #fff;
}

.pagination-btn-inactive, .pagination-btn-inactive:hover{
    cursor: default;
    color: #b9c7cd;
    background: #fff;
}

.product-error-fluid{
    min-height: calc(100vh - 285px);
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    color: #b9c7cd;
}

.product-error-button{
    height: 50px;
    background: var(--primary-green);
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    margin-top: 40px;
    border-radius: 25px;
}

.product-detail-fluid{
    padding: 30px;
}

.product-detail-container{
    display: flex;
}

.product-gallery-container{
    width: calc(50% - 30px);
}

.gallery-main-photo{
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-photo img{
    width: 100%;
    object-fit: contain;
}

.gallery-thumb-container{
    margin-top: 15px;
    overflow-y: hidden;
}

.gallery-thumb-inner{
    display: flex;
    margin: 0 -5px;
    flex-wrap: nowrap;
    width: max-content;
}

.gallery-thumb-item{
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f8;
}

.gallery-thumb-item img{
    height: 100%;
    object-fit: contain;
}

.gallery-thumb-item:hover{
    border: 2px solid var(--primary-green);
    opacity: 1;
}

.gallery-thumb-selected, .gallery-thumb-selected:hover{
    opacity: 1;
    cursor: default;
    border: 2px solid var(--orange);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.product-info-container{
    position: relative;
    width: calc(50% + 30px);
    box-sizing: border-box;
    padding-left: 30px;
}

.detail-wish-btn{
    position: absolute;
    right: 0;
    background: #f1f5f8;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-wish-btn i{
    font-size: 20px;
    margin-left: 10px;
}

.detail-wish-added i{
    color: var(--orange);
}

.product-info-title{
    font-size: 42px;
    margin-top: 30px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-info-category{
    font-size: 16px;
    font-weight: 500;
}

.product-info-category span{
    color: #aaa;
}






.no-overflow{
    overflow: hidden;
}