.brand-hero {
    position: relative;
    min-height: 400px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009087', endColorstr='#019944', GradientType=1);
}

.brand-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
}

.brand-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.brand-logo-large {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.brand-logo-large:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.brand-logo-large img {
    max-width: 120px;
    max-height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}

.brand-name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.brand-slogan {
    font-size: 18px;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.brand-stats {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.brand-stats .stat-item {
    text-align: center;
    margin: 0 30px;
}

.stat-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.stat-unit {
    font-size: 16px;
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    margin-top: 8px;
}

.brand-nav-modern {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.brand-nav-inner {
    width: 1200px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 20px;
}

.brand-nav-modern .nav-item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px 40px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.brand-nav-modern .nav-item i {
    font-size: 18px;
    color: #009087;
    margin-right: 8px;
}

.brand-nav-modern .nav-item:hover,
.brand-nav-modern .nav-item.active {
    color: #009087;
    border-bottom-color: #009087;
}

.section-header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    width: 4px;
    height: 24px;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.section-more {
    color: #666;
    font-size: 14px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: none;
}

.section-more:hover {
    color: #009087;
}

.section-more i {
    font-size: 12px;
    margin-left: 5px;
}

.brand-categories {
    width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.category-grid {
    margin: 0 -10px;
    *zoom: 1;
}

.category-grid::after {
    content: "";
    display: table;
    clear: both;
}

.category-card {
    float: left;
    width: 180px;
    margin: 10px;
    background: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 144, 135, 0.15);
    -webkit-box-shadow: 0 15px 40px rgba(0, 144, 135, 0.15);
    -moz-box-shadow: 0 15px 40px rgba(0, 144, 135, 0.15);
    border-color: #009087;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 144, 135, 0.1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon i {
    font-size: 28px;
    color: #009087;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.brand-products {
    width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.products-grid {
    margin: 0 -10px;
    *zoom: 1;
}

.products-grid::after {
    content: "";
    display: table;
    clear: both;
}

.product-card {
    float: left;
    width: 280px;
    margin: 10px;
    background: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #009087;
    background: rgba(0, 144, 135, 0.9);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.product-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-price {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.price-label {
    font-size: 12px;
    color: #999;
    margin-right: 8px;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: #f60;
}

.brand-inquiry {
    background: #f8f9fa;
    padding: 60px 0;
}

.inquiry-container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    *zoom: 1;
}

.inquiry-container::after {
    content: "";
    display: table;
    clear: both;
}

.inquiry-header {
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009087', endColorstr='#019944', GradientType=1);
    padding: 30px;
    text-align: center;
    color: #fff;
}

.inquiry-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.inquiry-header p {
    font-size: 14px;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
}

.inquiry-form {
    padding: 40px;
}

.form-row {
    margin-bottom: 25px;
}

.form-row.two-col {
    *zoom: 1;
}

.form-row.two-col::after {
    content: "";
    display: table;
    clear: both;
}

.form-row.two-col .form-group {
    float: left;
    width: 560px;
}

.form-row.two-col .form-group:first-child {
    margin-right: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-group .required {
    color: #f60;
    margin-right: 4px;
}

.form-input {
    width: 100%;
    height: 48px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.form-input:focus {
    border-color: #009087;
    box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    -webkit-box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    -moz-box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    outline: none;
}

.checkbox-group {
    *zoom: 1;
}

.checkbox-group::after {
    content: "";
    display: table;
    clear: both;
}

.checkbox-item {
    float: left;
    display: block;
    margin: 0 15px 10px 0;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 14px;
}

.checkbox-item:hover {
    background: rgba(0, 144, 135, 0.1);
}

.checkbox-item input {
    margin-right: 8px;
    vertical-align: middle;
}

.btn-submit {
    display: block;
    width: 100%;
    height: 54px;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009087', endColorstr='#019944', GradientType=1);
    color: #fff;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 144, 135, 0.3);
    -webkit-box-shadow: 0 10px 30px rgba(0, 144, 135, 0.3);
    -moz-box-shadow: 0 10px 30px rgba(0, 144, 135, 0.3);
}

.brand-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-container {
    width: 1000px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 40px;
}

.intro-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.intro-decoration {
    width: 60px;
    height: 4px;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    margin: 0 auto;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.intro-content {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
    margin-bottom: 50px;
}

.intro-content p {
    margin-bottom: 15px;
}

.intro-features {
    *zoom: 1;
}

.intro-features::after {
    content: "";
    display: table;
    clear: both;
}

.feature-item {
    float: left;
    width: 235px;
    margin-right: 20px;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

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

.feature-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #999;
}

.brand-comments {
    padding: 60px 0;
    background: #f8f9fa;
}

.comments-container {
    width: 1000px;
    margin: 0 auto;
}

.comment-modern {
    background: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
}

.comment-input-area {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    margin-bottom: 30px;
}

.input-wrapper textarea {
    width: 100%;
    height: 120px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    padding: 15px;
    font-size: 14px;
    resize: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-bottom: 15px;
}

.input-wrapper textarea:focus {
    border-color: #009087;
    box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    -webkit-box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    -moz-box-shadow: 0 0 0 4px rgba(0, 144, 135, 0.1);
    outline: none;
}

.input-footer {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.char-count {
    font-size: 12px;
    color: #999;
}

.btn-publish {
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-publish:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 144, 135, 0.3);
    -webkit-box-shadow: 0 8px 25px rgba(0, 144, 135, 0.3);
    -moz-box-shadow: 0 8px 25px rgba(0, 144, 135, 0.3);
}

.comment-tips {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    line-height: 1.6;
}

.comment-list {
    padding: 0;
}

.comment-item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 20px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment-body {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.comment-header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-content {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.comment-actions {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.action-item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.action-item:hover {
    color: #009087;
}

.action-item i {
    font-size: 16px;
    margin-right: 6px;
}

.like-count {
    font-size: 12px;
}

.brand-goods-page {
    background: #f8f9fa;
    padding: 40px 0 60px;
}

.goods-page-container {
    width: 1200px;
    margin: 0 auto;
    *zoom: 1;
}

.goods-page-container::after {
    content: "";
    display: table;
    clear: both;
}

.goods-sidebar {
    float: left;
    width: 240px;
    background: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009087', endColorstr='#019944', GradientType=1);
    padding: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.sidebar-title i {
    font-size: 20px;
    margin-right: 10px;
}

.sidebar-menu {
    padding: 0;
}

.sidebar-menu .category_wrap {
    padding: 0;
    margin: 0;
}

.sidebar-menu .category_wrap .title {
    display: none;
}

.sidebar-menu .category_list {
    padding: 0;
    margin: 0;
    overflow: visible;
}

.sidebar-menu .category_list .category_item {
    float: none;
    min-width: auto;
    flex: none;
    margin-bottom: 0;
    border-bottom: 1px solid #f5f5f5;
    overflow: visible;
}

.sidebar-menu .category_list .category_item:last-child {
    border-bottom: none;
}

.sidebar-menu .category_list .category_item .item_txt {
    text-align: left;
    padding: 16px 20px;
    font-size: 14px;
    color: #333;
    display: block;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    background: #fff;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.sidebar-menu .category_list .category_item .item_txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.sidebar-menu .category_list .category_item .item_txt span {
    display: block;
    padding-left: 25px;
    position: relative;
}

.sidebar-menu .category_list .category_item .item_txt span::before {
    content: '\e602';
    font-family: 'iconfont';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    font-size: 16px;
    color: #ccc;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar-menu .category_list .category_item .item_txt:hover {
    background: #f8f9fa;
    color: #009087;
    padding-left: 25px;
}

.sidebar-menu .category_list .category_item .item_txt:hover::before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.sidebar-menu .category_list .category_item .item_txt:hover span::before {
    color: #009087;
}

.sidebar-menu .category_list .category_item .item_txt.active {
    background: rgba(0, 144, 135, 0.1);
    color: #009087;
    font-weight: 600;
}

.sidebar-menu .category_list .category_item .item_txt.active::before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.sidebar-menu .category_list .category_item .item_txt.active span::before {
    color: #009087;
}

.goods-main {
    float: right;
    width: 940px;
}

.goods-header {
    margin-bottom: 25px;
}

.goods-count {
    font-size: 14px;
    color: #999;
}

.goods-list-modern {
    background: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.goods-list-modern ul {
    margin: 0 -10px;
    *zoom: 1;
}

.goods-list-modern ul::after {
    content: "";
    display: table;
    clear: both;
}

.goods-list-modern li {
    float: left;
    width: 220px;
    margin: 10px;
}

.goods-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.goods-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #009087;
}

.goods-img-wrap {
    position: relative;
    height: 180px;
    background: #f8f9fa;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
}

.goods-img-wrap img {
    max-width: 90%;
    max-height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.goods-card:hover .goods-img-wrap img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.goods-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #009087;
    background: rgba(0, 144, 135, 0.9);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.goods-card:hover .goods-overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.goods-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}

.goods-info {
    padding: 15px;
}

.goods-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    margin-bottom: 10px;
}

.goods-price {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.pagination-wrap {
    margin-top: 30px;
    text-align: center;
}

.pagination-modern {
    display: inline-block;
    *zoom: 1;
}

.pagination-modern::after {
    content: "";
    display: table;
    clear: both;
}

.pagination-modern a {
    float: left;
    display: block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    color: #333;
    font-size: 14px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-modern a:hover {
    border-color: #009087;
    color: #009087;
}

.pagination-modern a.active {
    background: #009087;
    background: linear-gradient(135deg, #009087 0%, #019944 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009087', endColorstr='#019944', GradientType=1);
    border-color: #009087;
    color: #fff;
}

.pagination-modern a.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination-modern a.disabled:hover {
    border-color: #e8e8e8;
    color: #ccc;
}
