/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 10px 0;
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    color: #333;
}
.breadcrumb-inner a {
    color: #333;
    text-decoration: none;
}
.breadcrumb-inner a:hover {
    text-decoration: underline;
}
.breadcrumb-inner span {
    margin: 0 8px;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* BrandHeader Area */
.brand-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.brand-info {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}
.brand-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.brand-logo {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #2c5282;
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.brand-name {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}
.brand-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.brand-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.brand-desc a {
    color: #2c5282;
    text-decoration: none;
}
.brand-desc a:hover {
    text-decoration: underline;
}

/* Top Distributors */
.distributors {
    width: 320px;
    background: #fff;
    padding: 25px;
    border-radius: 4px;
}
.distributors-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.distributors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.distributor-item {
    text-align: center;
}
.distributor-logo {
    width: 80px;
    height: 40px;
    margin: 0 auto 8px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}
.distributor-count {
    font-size: 13px;
    color: #2c5282;
    font-weight: bold;
}

/* Product Categories */
.categories {
    margin-bottom: 30px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.category-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.category-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.category-name {
    font-size: 14px;
    color: #333;
}
.category-count {
    font-size: 14px;
    color: #2c5282;
    font-weight: bold;
}

/* Featured Products */
.featured-products {
    margin-bottom: 30px;
}
.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-image {
    width: 100%;
    height: 180px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    max-width: 80%;
    max-height: 80%;
}
.product-content {
    padding: 15px;
}
.product-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.product-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-link {
    font-size: 12px;
    color: #2c5282;
    text-decoration: none;
}
.product-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
}
.footer-column a:hover {
    color: #fff;
}
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 12px;
}