﻿.egoo-product-center {
    width: 100%;
    padding: 55px 0 70px;
}

.egoo-product-center-head {
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.egoo-product-center-head h2 {
    position: relative;
    margin: 0;
    padding-left: 30px;
    color: #333;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

.egoo-product-center-head h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 2px;
    height: 40px;
    background: #e66b2e;
}

.egoo-product-center-more {
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #e66b2e;
    border-radius: 4px;
    color: #333;
    font-size: 15px;
    line-height: 44px;
    transition: all .25s ease;
}

.egoo-product-center-more img {
    display: block;
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: all .25s ease;
}

.egoo-product-center-more:hover {
    background: #e66b2e;
    color: #fff;
}

.egoo-product-center-more:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

.egoo-product-classification {
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.egoo-product-classification-head {
    margin-bottom: 28px;
}

.egoo-product-classification-head h3 {
    margin: 0;
    color: #111;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.egoo-product-classification-head p {
    margin: 5px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 24px;
}

.egoo-product-classification-body {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 20px;
}

.egoo-product-featured {
    position: relative;
    min-height: 350px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #061634;
}

.egoo-product-featured-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.egoo-product-featured-content {
    position: relative;
    z-index: 2;
    min-height: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.egoo-product-featured-tag {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: #e66b2e;
    color: #fff;
}

.egoo-product-featured-tag img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.egoo-product-featured-tag em {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.egoo-product-featured-content h3 {
    margin: 48px 0 0;
    color: #fff;
    font-size: 22px;
    line-height: 29px;
    font-weight: 600;
}

.egoo-product-featured-content p {
    margin: 20px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 19px;
}

.egoo-product-featured-more {
    height: 38px;
    margin-top: auto;
    padding: 0 5px 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    border-radius: 999px;
    background: #e66b2e;
    color: #fff;
}

.egoo-product-featured-more em {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.egoo-product-featured-more i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #e66b2e;
    font-size: 18px;
    transition: all .25s ease;
}

.egoo-product-featured:hover .egoo-product-featured-more i {
    transform: translateX(2px);
}

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

.egoo-product-category-item {
    min-height: 165px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 125px;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #333;
    transition: all .25s ease;
}

.egoo-product-category-item:hover {
    border-color: #e66b2e;
    box-shadow: 0 8px 24px rgba(230,107,46,.10);
}

.egoo-product-category-info {
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.egoo-product-category-info h3 {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    transition: all .25s ease;
}

.egoo-product-category-info p {
    margin: 8px 0 15px;
    color: #777;
    font-size: 12px;
    line-height: 18px;
}

.egoo-product-category-arrow {
    width: 22px;
    height: 22px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e66b2e;
    border-radius: 50%;
    background: #fff;
    transition: all .25s ease;
}

.egoo-product-category-arrow i {
    color: #e66b2e;
    font-size: 15px;
    line-height: 1;
    transition: all .25s ease;
}

.egoo-product-category-item:hover .egoo-product-category-info h3 {
    color: #e66b2e;
}

.egoo-product-category-item:hover .egoo-product-category-arrow {
    background: #e66b2e;
}

.egoo-product-category-item:hover .egoo-product-category-arrow i {
    color: #fff;
    transform: translateX(1px);
}

.egoo-product-category-img {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.egoo-product-category-img img {
    display: block;
    width: 100%;
    max-width: 124px;
    height: 100%;
    max-height: 124px;
    object-fit: contain;
}

.egoo-best-products {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
}

.egoo-best-products-head {
    min-height: 90px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.egoo-best-products-head h2 {
    margin: 0;
    color: #111;
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
}

.egoo-best-products-more {
    min-width: 180px;
    height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid #e66b2e;
    border-radius: 999px;
    color: #e66b2e;
    font-size: 15px;
    line-height: 46px;
    transition: all .25s ease;
}

.egoo-best-products-more i {
    color: #e66b2e;
    font-size: 18px;
    line-height: 1;
    transition: all .25s ease;
}

.egoo-best-products-more:hover {
    background: #e66b2e;
    color: #fff;
}

.egoo-best-products-more:hover i {
    color: #fff;
    transform: translateX(3px);
}

.egoo-best-products-table {
    width: 100%;
}

.egoo-best-products-table-head {
    min-height: 58px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 48% 42% 10%;
    align-items: center;
    background: #fff5ee;
    color: #111;
    font-size: 15px;
}

.egoo-best-products-row {
    min-height: 54px;
    margin: 0 30px;
    display: grid;
    grid-template-columns: 48% 42% 10%;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    color: #222;
    transition: all .25s ease;
}

.egoo-best-products-row:last-child {
    border-bottom: none;
}

.egoo-best-products-name {
    color: #111;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    transition: all .25s ease;
}

.egoo-best-products-brand {
    display: flex;
    align-items: center;
}

.egoo-best-products-brand span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 15px;
    border-radius: 999px;
    background: #f6f6f6;
    color: #333;
    font-size: 13px;
    line-height: 20px;
    transition: all .25s ease;
}

.egoo-best-products-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.egoo-best-products-action span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f6f6f6;
    transition: all .25s ease;
}

.egoo-best-products-action i {
    color: #666;
    font-size: 18px;
    line-height: 1;
    transition: all .25s ease;
}

.egoo-best-products-row:hover .egoo-best-products-name {
    color: #e66b2e;
}

.egoo-best-products-row:hover .egoo-best-products-brand span {
    background: #fff3ec;
    color: #e66b2e;
}

.egoo-best-products-row:hover .egoo-best-products-action span {
    background: #e66b2e;
}

.egoo-best-products-row:hover .egoo-best-products-action i {
    color: #fff;
    transform: translateX(2px);
}

.egoo-brand-wall {
    width: 100%;
    padding: 70px 0;
    background: url("../images/homebrandbg.jpg") no-repeat center top;
    background-size: cover;
}

.egoo-brand-wall-head {
    text-align: center;
}

.egoo-brand-wall-head h2 {
    margin: 0;
    color: #333;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

.egoo-brand-wall-head span {
    display: block;
    width: 60px;
    height: 2px;
    margin: 16px auto 0;
    background: #e66b2e;
}

.egoo-brand-wall-list {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px 20px;
}

.egoo-brand-wall-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 12px 18px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: rgba(255, 255, 255, .88);
    transition: all .25s ease;
}

.egoo-brand-wall-item:hover {
    border-color: #e66b2e;
    background: #fff;
    box-shadow: 0 10px 24px rgba(230, 107, 46, .10);
    transform: translateY(-3px);
}

.egoo-brand-wall-logo {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.egoo-brand-wall-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.egoo-brand-wall-more-box {
    margin-top: 50px;
    text-align: center;
}

.egoo-brand-wall-more {
    height: 38px;
    padding: 0 5px 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: #e66b2e;
    color: #fff !important;
    font-size: 14px;
    line-height: 38px;
    transition: all .25s ease;
}

.egoo-brand-wall-more span {
    color: #fff !important;
    white-space: nowrap;
}

.egoo-brand-wall-more em {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    transition: all .25s ease;
}

.egoo-brand-wall-more em i {
    color: #e66b2e;
    font-size: 12px;
    line-height: 1;
    transition: all .25s ease;
}

.egoo-brand-wall-more:hover {
    background: #cf5720;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(230, 107, 46, .25);
}

.egoo-brand-wall-more:hover span {
    color: #fff !important;
}

.egoo-brand-wall-more:hover em {
    background: #fff;
}

.egoo-brand-wall-more:hover em i {
    color: #e66b2e;
    transform: translateX(2px);
}


.egoo-why-us {
    width: 100%;
    padding: 58px 0 70px;
}

.egoo-why-us-head {
    margin-bottom: 38px;
    text-align: center;
}

.egoo-why-us-head h2 {
    margin: 0;
    color: #333;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

.egoo-why-us-head span {
    display: block;
    width: 62px;
    height: 2px;
    margin: 16px auto 0;
    background: #e66b2e;
}

.egoo-why-us-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.egoo-why-us-item {
    background: #fff; border-radius: 10px;
    padding: 20px 20px 28px;
    box-sizing: border-box;
}

.egoo-why-us-img {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

.egoo-why-us-img img {
    display: block;
    width: 100%;
    height: auto;
}

.egoo-why-us-content {
    padding: 0 6px;
}

.egoo-why-us-content h3 {
    margin: 0 0 20px;
    color: #333;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
}

.egoo-why-us-content ul {
    margin: 0;
    padding: 0;
}

.egoo-why-us-content li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 16px;
    color: #333;
    font-size: 14px;
    line-height: 22px;
}

.egoo-why-us-content li:last-child {
    margin-bottom: 0;
}

.egoo-why-us-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #e66b2e;
}

.egoo-why-us-content li a {
    color: #e66b2e;
}

.egoo-why-us-content li a:hover {
    color: #c95722;
}

.egoo-industry {
    width: 100%;
    padding: 60px 0 70px;
    background: #fff;
}

.egoo-industry-head {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.egoo-industry-head h2 {
    position: relative;
    margin: 0;
    padding-left: 30px;
    color: #333;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

.egoo-industry-head h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 2px;
    height: 40px;
    background: #e66b2e;
}

.egoo-industry-head-more {
    height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e66b2e;
    border-radius: 4px;
    color: #333;
    font-size: 15px;
    line-height: 44px;
    transition: all .25s ease;
}

.egoo-industry-head-more img {
    display: block;
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: all .25s ease;
}

.egoo-industry-head-more:hover {
    background: #e66b2e;
    color: #fff;
}

.egoo-industry-head-more:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(2px);
}

.egoo-industry-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.egoo-industry-featured {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #fbfbfb;
    color: #333;
}

.egoo-industry-featured-img {
    position: relative;
    width: 100%;
    height: 323px;
    overflow: hidden;
    border-radius: 10px;
}

.egoo-industry-featured-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.egoo-industry-featured-date {
    position: absolute;
    left: 18px;
    bottom: 14px;
    min-width: 110px;
    height: 34px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(24, 41, 78, .90) 0%, rgba(24, 41, 78, .58) 65%, rgba(24, 41, 78, 0) 100%);
}

.egoo-industry-featured-content {
    padding: 18px 20px 22px;
}

.egoo-industry-featured-content h3 {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    transition: all .25s ease;
}

.egoo-industry-featured-content p {
    margin: 10px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 22px;
}

.egoo-industry-featured:hover .egoo-industry-featured-content h3 {
    color: #e66b2e;
}

.egoo-industry-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.egoo-industry-item {
    min-height: 145px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 14px;
    border-radius: 10px;
    background: #fbfbfb;
}

.egoo-industry-item-img {
    display: block;
    width: 220px;
    height: 125px;
    overflow: hidden;
    border-radius: 10px;
}

.egoo-industry-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.egoo-industry-item-content {
    min-width: 0;
    padding: 2px 10px 2px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.egoo-industry-item-content h3 {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.egoo-industry-item-content h3 a {
    color: #111;
}

.egoo-industry-item-content h3 a:hover {
    color: #e66b2e;
}

.egoo-industry-item-date {
    display: block;
    margin-top: 13px;
    color: #61738d;
    font-size: 13px;
    line-height: 20px;
}

.egoo-industry-item-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e66b2e;
    font-size: 14px;
    line-height: 22px;
    text-decoration: underline;
}

.egoo-industry-item-more span {
    color: #e66b2e;
}

.egoo-industry-item-more img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all .25s ease;
}

.egoo-industry-item-more:hover span {
    color: #c95722;
}

.egoo-industry-item-more:hover img {
    transform: translateX(2px);
}


@media screen and (max-width: 767px) {
	
	 .egoo-product-center {
	        padding: 35px 0 45px;
	    }
	
	    .egoo-product-center-head {
	        margin-bottom: 22px;
	    }
	
	    .egoo-product-center-head h2 {
	        padding-left: 16px;
	        font-size: 1.1rem;
	        line-height: 34px;
	    }
	
	    .egoo-product-center-head h2:before {
	        top: 2px;
	        height: 30px;
	    }
	
	    .egoo-product-center-more {
	           height: 38px;
	           padding: 0 12px;
	           gap: 8px;
	           font-size: 14px;
	           line-height: 38px;
	       }
	   
	       .egoo-product-center-more img {
	           width: 11px;
	           height: 11px;
	       }
	
	    .egoo-product-classification {
	        padding: 20px 15px;
	        border-radius: 8px;
	    }
	
	    .egoo-product-classification-head {
	        margin-bottom: 20px;
	    }
	
	    .egoo-product-classification-head h3 {
	        font-size: 21px;
	        line-height: 30px;
	    }
	
	    .egoo-product-classification-head p {
	        margin-top: 4px;
	        font-size: 14px;
	        line-height: 22px;
	    }
	
	    .egoo-product-classification-body {
	        display: block;
	    }
	
	    .egoo-product-featured {
	        min-height: 300px;
	    }
	
	    .egoo-product-featured-content {
	        min-height: 300px;
	        padding: 22px;
	    }
	
	    .egoo-product-featured-content h3 {
	        margin-top: 35px;
	        font-size: 21px;
	        line-height: 28px;
	    }
	
	    .egoo-product-featured-content p {
	        margin-top: 15px;
	    }
	
	    .egoo-product-category-list {
	        margin-top: 15px;
	        grid-template-columns: 1fr;
	        gap: 12px;
	    }
	
	    .egoo-product-category-item {
	        min-height: 145px;
	        padding: 18px 15px;
	        grid-template-columns: minmax(0, 1fr) 100px;
	        gap: 10px;
	    }
	
	    .egoo-product-category-info h3 {
	        font-size: 17px;
	        line-height: 24px;
	    }
	
	    .egoo-product-category-info p {
	        margin-top: 6px;
	        font-size: 12px;
	        line-height: 18px;
	    }
	
	    .egoo-product-category-img {
	        width: 100px;
	        height: 100px;
	    }
	
	    .egoo-product-category-img img {
	        max-width: 100px;
	        max-height: 100px;
	    }
	
	    .egoo-best-products {
	        margin-top: 15px;
	        border-radius: 8px;
	    }
	
	    .egoo-best-products-head {
	        min-height: 74px;
	        padding: 0 15px;
	    }
	
	    .egoo-best-products-head h2 {
	        font-size: 1.1rem;
	        line-height: 28px;
	    }
	
	    .egoo-best-products-more {
	        min-width: auto;
	        height: 38px;
	        padding: 0 14px;
	        gap: 8px;
	        font-size: 14px;
	        line-height: 38px;
	    }
	
	    .egoo-best-products-more i {
	        font-size: 16px;
	    }
	
	    .egoo-best-products-table-head {
	        min-height: 50px;
	        padding: 0 15px;
	        grid-template-columns: 46% 44% 10%;
	        font-size: 14px;
	    }
	
	    .egoo-best-products-row {
	        min-height: 62px;
	        margin: 0 15px;
	        grid-template-columns: 46% 44% 10%;
	    }
	
	    .egoo-best-products-name {
	        padding-right: 8px;
	        font-size: 14px;
	        overflow: hidden;
	        text-overflow: ellipsis;
	        white-space: nowrap;
	    }
	
	    .egoo-best-products-brand {
	        padding-right: 5px;
	    }
	
	    .egoo-best-products-brand span {
	        max-width: 120px;
	        min-height: 30px;
	        padding: 4px 9px;
	        font-size: 12px;
	        line-height: 20px;
	        overflow: hidden;
	        text-overflow: ellipsis;
	        white-space: nowrap;
	    }
	
	    .egoo-best-products-action span {
	        width: 28px;
	        height: 28px;
	    }
	
	    .egoo-best-products-action i {
	        font-size: 16px;
	    }
	
	
	  .egoo-brand-wall {
	        padding: 30px 0 40px;
	        background-position: center center;
	    }
	
	    .egoo-brand-wall-head h2 {
	        font-size: 1.2rem;
	        line-height: 34px;
	    }
	
	    .egoo-brand-wall-head span {
	        width: 52px;
	        margin-top: 12px;
	    }
	
	    .egoo-brand-wall-list {
	        margin-top: 30px;
	        grid-template-columns: repeat(2, 1fr);
	        gap: 12px;
	    }
	
	    .egoo-brand-wall-item {
	        min-height: 72px;
	        padding: 10px 12px;
	        border-radius: 8px;
	    }
	
	    .egoo-brand-wall-logo {
	        max-width: 120px;
	    }
	
	     .egoo-brand-wall-more-box {
	           margin-top: 30px;
	       }
	   
	       .egoo-brand-wall-more {
	           height: 36px;
	           padding: 0 5px 0 16px;
	           gap: 10px;
	           font-size: 14px;
	           line-height: 36px;
	       }
	   
	       .egoo-brand-wall-more em {
	           width: 26px;
	           height: 26px;
	       }
	   
	       .egoo-brand-wall-more em i {
	           font-size: 11px;
	       }
	
	 .egoo-why-us {
	        padding: 40px 0 45px;
	    }
	
	    .egoo-why-us-head {
	        margin-bottom: 26px;
	    }
	
	    .egoo-why-us-head h2 {
	        font-size: 1rem;
	        line-height: 34px;
	    }
	
	    .egoo-why-us-head span {
	        width: 52px;
	        margin-top: 12px;
	    }
	
	    .egoo-why-us-list {
	        grid-template-columns: 1fr;
	        gap: 18px;
	    }
	
	    .egoo-why-us-item {
	        padding: 16px 16px 22px;
	    }
	
	    .egoo-why-us-img {
	        margin-bottom: 18px;
	    }
	
	    .egoo-why-us-content {
	        padding: 0;
	    }
	
	    .egoo-why-us-content h3 {
	        margin-bottom: 16px;
	        font-size: 18px;
	        line-height: 27px;
	    }
	
	    .egoo-why-us-content li {
	        margin-bottom: 10px;
	        font-size: 14px;
	        line-height: 21px;
	    }
	
	 .egoo-industry {
	        padding: 40px 0 45px;
	    }
	
	    .egoo-industry-head {
	        margin-bottom: 25px;
	    }
	
	    .egoo-industry-head h2 {
	        padding-left: 16px;
	        font-size: 18px;
	        line-height: 34px;
	    }
	
	    .egoo-industry-head h2:before {
	        top: 2px;
	        height: 30px;
	    }
	
	    .egoo-industry-head-more {
	        height: 38px;
	        padding: 0 11px;
	        gap: 7px;
	        font-size: 14px;
	        line-height: 38px;
	    }
	
	    .egoo-industry-head-more img {
	        width: 11px;
	        height: 11px;
	    }
	
	    .egoo-industry-main {
	        display: block;
	    }
	
	    .egoo-industry-featured {
	        border-radius: 10px;
	    }
	
	    .egoo-industry-featured-img {
	        height: auto;
	        aspect-ratio: 60 / 32;
	        border-radius: 10px;
	    }
	
	    .egoo-industry-featured-img img {
	        border-radius: 10px;
	    }
	
	    .egoo-industry-featured-date {
	        left: 12px;
	        bottom: 12px;
	        min-width: 98px;
	        height: 30px;
	        padding: 0 14px;
	        font-size: 12px;
	        line-height: 30px;
	    }
	
	    .egoo-industry-featured-content {
	        padding: 16px 15px 20px;
	    }
	
	    .egoo-industry-featured-content h3 {
	        font-size: 17px;
	        line-height: 24px;
	    }
	
	    .egoo-industry-featured-content p {
	        font-size: 14px;
	        line-height: 21px;
	    }
	
	    .egoo-industry-list {
	        margin-top: 15px;
	        gap: 12px;
	    }
	
	    .egoo-industry-item {
	        min-height: auto;
	        grid-template-columns: 120px 1fr;
	        gap: 12px;
	        padding: 8px;
	        border-radius: 10px;
	    }
	
	    .egoo-industry-item-img {
	        width: 120px;
	        height: 100px;
	        border-radius: 10px;
	    }
	
	    .egoo-industry-item-img img {
	        border-radius: 10px;
	    }
	
	    .egoo-industry-item-content {
	        padding: 0;
	    }
	
	    .egoo-industry-item-content h3 {
	        font-size: 15px;
	        line-height: 21px;
	    }
	
	    .egoo-industry-item-date {
	        margin-top: 7px;
	        font-size: 12px;
	    }
	
	    .egoo-industry-item-more {
	        gap: 6px;
	        font-size: 13px;
	        line-height: 20px;
	    }
	
	    .egoo-industry-item-more img {
	        width: 18px;
	        height: 18px;
	    }
   
}

/* ===================== Motion ===================== */
@keyframes egooHomeFadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes egooHomeFadeLeft{from{opacity:0;transform:translateX(-26px)}to{opacity:1;transform:translateX(0)}}
@keyframes egooHomeFadeRight{from{opacity:0;transform:translateX(26px)}to{opacity:1;transform:translateX(0)}}
.egoo-product-featured-bg{transition:transform .7s ease,filter .7s ease}
.egoo-product-featured:hover .egoo-product-featured-bg{transform:scale(1.035);filter:brightness(1.04)}
.egoo-product-featured-tag{transition:transform .28s ease,box-shadow .28s ease}
.egoo-product-featured:hover .egoo-product-featured-tag{transform:translateY(-2px);box-shadow:0 8px 18px rgba(230,107,46,.22)}
.egoo-product-category-item{transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease}
.egoo-product-category-item:hover{transform:translateY(-4px)}
.egoo-product-category-img img{transition:transform .42s ease}
.egoo-product-category-item:hover .egoo-product-category-img img{transform:scale(1.055)}
.egoo-best-products-row{transition:background .25s ease,transform .25s ease}
.egoo-best-products-row:hover{background:#fffaf7;transform:translateX(4px)}
.egoo-brand-wall-logo img{transition:transform .35s ease}
.egoo-brand-wall-item:hover .egoo-brand-wall-logo img{transform:scale(1.045)}
.egoo-why-us-item{transition:transform .35s ease,box-shadow .35s ease}
.egoo-why-us-item:hover{transform:translateY(-7px);box-shadow:0 14px 34px rgba(62,42,30,.08)}
.egoo-why-us-img{overflow:hidden}
.egoo-why-us-img img{transition:transform .5s ease}
.egoo-why-us-item:hover .egoo-why-us-img img{transform:scale(1.025)}
.egoo-why-us-content h3{transition:color .25s ease}
.egoo-why-us-item:hover .egoo-why-us-content h3{color:#e66b2e}
.egoo-industry-featured,.egoo-industry-item{transition:transform .35s ease,box-shadow .35s ease}
.egoo-industry-featured:hover{transform:translateY(-5px);box-shadow:0 14px 32px rgba(54,42,35,.08)}
.egoo-industry-item:hover{transform:translateX(-4px);box-shadow:0 10px 26px rgba(54,42,35,.07)}
.egoo-industry-featured-img img,.egoo-industry-item-img img{transition:transform .5s ease,filter .5s ease}
.egoo-industry-featured:hover .egoo-industry-featured-img img,.egoo-industry-item:hover .egoo-industry-item-img img{transform:scale(1.035);filter:brightness(1.025)}
.egoo-industry-featured-date{transition:transform .3s ease}
.egoo-industry-featured:hover .egoo-industry-featured-date{transform:translateX(4px)}
@supports (animation-timeline:view()){.egoo-product-center-head,.egoo-product-classification,.egoo-best-products,.egoo-brand-wall-head,.egoo-brand-wall-item,.egoo-why-us-head,.egoo-why-us-item,.egoo-industry-head,.egoo-industry-featured,.egoo-industry-item{animation:egooHomeFadeUp 1s both;animation-timeline:view();animation-range:entry 8% cover 27%}.egoo-product-featured,.egoo-industry-featured{animation-name:egooHomeFadeLeft}.egoo-product-category-list,.egoo-industry-list{animation:egooHomeFadeRight 1s both;animation-timeline:view();animation-range:entry 8% cover 27%}}
@media screen and (max-width:767px){.egoo-product-category-item:hover,.egoo-why-us-item:hover,.egoo-industry-featured:hover,.egoo-industry-item:hover,.egoo-best-products-row:hover{transform:none}.egoo-product-featured:hover .egoo-product-featured-bg,.egoo-product-category-item:hover .egoo-product-category-img img,.egoo-why-us-item:hover .egoo-why-us-img img,.egoo-industry-featured:hover .egoo-industry-featured-img img,.egoo-industry-item:hover .egoo-industry-item-img img{transform:none;filter:none}}
@media (prefers-reduced-motion:reduce){.egoo-product-center-head,.egoo-product-classification,.egoo-best-products,.egoo-brand-wall-head,.egoo-brand-wall-item,.egoo-why-us-head,.egoo-why-us-item,.egoo-industry-head,.egoo-industry-featured,.egoo-industry-item,.egoo-product-featured,.egoo-product-category-list,.egoo-industry-list{animation:none!important}}

