/**
 * Cat Litter Premium Theme - Professional B2B
 * Style: Swiss Modernism + Minimalism
 * Typography: Lexend (headings) + Source Sans 3 (body)
 * Color: B2B Service palette with eco-green accent
 */

:root {
    --color-primary: #0F766E;
    --color-primary-dark: #0D5D57;
    --color-primary-light: #14B8A6;
    --color-secondary: #334155;
    --color-accent: #F0FDFA;
    --color-cta: #0369A1;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-bg-dark: #0F172A;
    --color-text: #020617;
    --color-text-light: #475569;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --font-heading: 'Lexend', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    --font-body: 'Source Sans 3', 'Microsoft YaHei', 'PingFang SC', -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.4; color: var(--color-text); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px; font-size: 15px; font-weight: 500; border-radius: 6px; border: 2px solid transparent; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-white { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn-white:hover { background: var(--color-accent); transform: translateY(-1px); }

/* Top Bar */
.top-bar { background: var(--color-bg-dark); color: #fff; font-size: 13px; padding: 10px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-item { display: flex; align-items: center; gap: 8px; opacity: 0.9; }
.top-bar-item svg { width: 16px; height: 16px; opacity: 0.7; }
.language-switcher { display: flex; gap: 12px; }
.language-switcher a { color: rgba(255,255,255,0.7); }
.language-switcher a:hover, .language-switcher a.active { color: #fff; }

/* Header */
.site-header { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--color-border); }
.header-content { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon svg, .logo-icon img { width: 50px; height: 50px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 20px; font-weight: 700; color: var(--color-text); }
.logo-tagline { font-size: 12px; color: var(--color-text-muted); }
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--color-text); }
.nav-link:hover { color: var(--color-primary); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); list-style: none; z-index: 100; border-radius: 8px; overflow: hidden; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 12px 20px; color: var(--color-text); border-bottom: 1px solid var(--color-border); }
.dropdown-menu a:hover { background: var(--color-accent); color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--color-text); cursor: pointer; border-radius: 8px; }
.header-icon:hover { color: var(--color-primary); background: var(--color-accent); }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; transition: var(--transition); }

/* Hero Banner */
.hero-banner { position: relative; height: 100vh; min-height: 600px; max-height: 900px; }
.banner-swiper { height: 100%; }
.banner-swiper .swiper-slide { background-size: cover; background-position: center; position: relative; }
.banner-swiper .swiper-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0.2) 100%); }
.banner-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.banner-content .container { color: #fff; max-width: 800px; }
.banner-subtitle { display: inline-block; font-size: 14px; margin-bottom: 16px; opacity: 0.9; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; color: var(--color-primary-light); }
.banner-title { font-size: clamp(36px, 5vw, 60px); font-weight: 700; margin-bottom: 24px; line-height: 1.15; }
.banner-desc { font-size: 18px; max-width: 560px; margin-bottom: 40px; opacity: 0.9; line-height: 1.8; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,0.4); opacity: 1; }
.swiper-pagination-bullet-active { background: #fff; }
.swiper-button-prev, .swiper-button-next { color: #fff; width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.swiper-button-prev:hover, .swiper-button-next:hover { background: rgba(255,255,255,0.2); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px; }
.scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 13px; animation: bounce 2s infinite; z-index: 10; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Section Styles */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; margin-bottom: 16px; color: var(--color-text); }
.section-header p { color: var(--color-text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 50px; }

/* Brands Section */
.brands-section { padding: 100px 0; background: var(--color-bg-alt); }
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.brand-card { background: #fff; border-radius: 12px; overflow: hidden; transition: var(--transition); cursor: pointer; border: 1px solid var(--color-border); }
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.brand-image { aspect-ratio: 1; overflow: hidden; }
.brand-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.brand-card:hover .brand-image img { transform: scale(1.08); }
.brand-card h3 { padding: 20px; text-align: center; font-size: 16px; background: var(--color-primary); color: #fff; }

/* Guide Section */
.guide-section { padding: 120px 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.guide-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.guide-content { position: relative; z-index: 1; }
.guide-content h2 { font-size: 42px; color: #fff; margin-bottom: 24px; }
.guide-content p { font-size: 18px; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; line-height: 1.8; }
.guide-buttons { display: flex; gap: 20px; justify-content: center; }
.guide-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.guide-section .btn-outline:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* Why Section */
.why-section { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-card { background: #fff; padding: 40px 30px; border-radius: 12px; text-align: center; border: 1px solid var(--color-border); transition: var(--transition); position: relative; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--color-primary); border-radius: 12px 12px 0 0; opacity: 0; transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 70px; height: 70px; margin: 0 auto 24px; background: var(--color-accent); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.why-icon img { width: 40px; height: 40px; object-fit: contain; }
.why-card p { color: var(--color-text-light); font-size: 15px; line-height: 1.7; }

/* Products Section */
.products-section { padding: 100px 0; background: var(--color-bg-alt); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; transition: var(--transition); border: 1px solid var(--color-border); cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card a { display: block; color: inherit; }
.product-image { aspect-ratio: 1; overflow: hidden; background: var(--color-bg-alt); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 24px; }
.product-info h3 { font-size: 17px; margin-bottom: 8px; }
.product-info p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* News Section */
.news-section { padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.news-featured { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: var(--transition); }
.news-featured:hover { box-shadow: var(--shadow-lg); }
.news-featured a { display: block; }
.news-featured .news-image { aspect-ratio: 16/10; overflow: hidden; }
.news-featured .news-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.news-featured:hover .news-image img { transform: scale(1.03); }
.news-featured .news-content { padding: 28px; }
.news-featured .news-date { color: var(--color-primary); font-size: 14px; font-weight: 500; }
.news-featured h3 { font-size: 22px; margin: 12px 0; line-height: 1.4; }
.news-featured p { color: var(--color-text-light); line-height: 1.7; }
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: var(--transition); cursor: pointer; }
.news-item:hover { box-shadow: var(--shadow-md); }
.news-item a { display: flex; gap: 20px; }
.news-thumb { width: 160px; flex-shrink: 0; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-info { padding: 20px 20px 20px 0; flex: 1; }
.news-info h4 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.news-info p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 8px; line-height: 1.5; }
.news-info .news-date { font-size: 13px; color: var(--color-primary); font-weight: 500; }

/* CTA Section */
.cta-section { padding: 100px 0; background: var(--color-bg-dark); text-align: center; }
.cta-content h2 { font-size: 36px; color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 18px; }

/* Footer */
.site-footer { background: var(--color-bg-dark); color: #fff; }
.footer-main { padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-logo span { font-size: 22px; font-weight: 600; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
.footer-col h4 { font-size: 17px; color: #fff; margin-bottom: 24px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; color: rgba(255,255,255,0.6); font-size: 15px; }
.footer-contact svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); padding: 80px 0 60px; color: #fff; }
.page-header h1 { font-size: 42px; margin-bottom: 12px; color: #fff; }
.page-header p { font-size: 18px; opacity: 0.9; }

/* Products Page */
.products-page { padding: 60px 0; }
.products-filter { margin-bottom: 40px; }
.filter-categories { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-categories a { padding: 10px 24px; background: #fff; border: 1px solid var(--color-border); border-radius: 30px; font-size: 14px; color: var(--color-text); transition: var(--transition); }
.filter-categories a:hover, .filter-categories a.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 20px; }
.breadcrumbs a, .breadcrumbs span { font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span.separator { margin: 0 8px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; border: 1px solid var(--color-border); color: var(--color-text); transition: var(--transition); }
.pagination a:hover, .pagination span.current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Responsive */
@media (max-width: 1024px) {
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .main-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-banner { height: 70vh; min-height: 500px; }
    .banner-title { font-size: 32px; }
    .section-header h2 { font-size: 28px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .guide-buttons { flex-direction: column; align-items: center; }
    .guide-content h2 { font-size: 32px; }
}
@media (max-width: 480px) {
    .brands-grid, .why-grid, .products-grid { grid-template-columns: 1fr; }
    .news-item a { flex-direction: column; }
    .news-thumb { width: 100%; height: 180px; }
    .news-info { padding: 20px; }
}

/* ========================================
   Content Pages - Article/Page Body Styles
   ======================================== */

/* Main Content Wrapper */
.content-page, .page-content, .article-content, main.content {
    padding: 60px 0 80px;
    background: var(--color-bg);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Content - Direct children styling */
.page-content .container {
    max-width: 900px;
}

.page-content h2, .page-content h3, .page-content h4 {
    font-weight: 600;
    color: var(--color-text);
}

.page-content h2 {
    font-size: 26px;
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.page-content h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.page-content h4 {
    font-size: 17px;
    margin: 24px 0 10px;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.85;
    font-size: 16px;
}

.page-content ul, .page-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.page-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content a:hover {
    color: var(--color-primary-dark);
}

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 8px;
}

.page-content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--color-accent);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.page-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.page-content th, .page-content td {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.page-content th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.page-content tr:nth-child(even) {
    background: var(--color-bg-alt);
}

/* Article Body - Rich Text Content */
.article-body, .page-body, .content-body, .entry-content, .prose {
    font-size: 17px;
    line-height: 1.85;
    color: var(--color-text);
}

.article-body h2, .page-body h2, .content-body h2, .prose h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
}

.article-body h3, .page-body h3, .content-body h3, .prose h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--color-text);
}

.article-body h4, .page-body h4, .content-body h4, .prose h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--color-text);
}

.article-body p, .page-body p, .content-body p, .prose p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.article-body a, .page-body a, .content-body a, .prose a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover, .page-body a:hover, .content-body a:hover, .prose a:hover {
    color: var(--color-primary-dark);
}

.article-body ul, .page-body ul, .content-body ul, .prose ul,
.article-body ol, .page-body ol, .content-body ol, .prose ol {
    margin: 20px 0;
    padding-left: 28px;
}

.article-body li, .page-body li, .content-body li, .prose li {
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.article-body blockquote, .page-body blockquote, .content-body blockquote, .prose blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    background: var(--color-accent);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--color-text-light);
}

.article-body img, .page-body img, .content-body img, .prose img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.article-body table, .page-body table, .content-body table, .prose table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.article-body th, .page-body th, .content-body th, .prose th {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.article-body td, .page-body td, .content-body td, .prose td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
}

.article-body tr:nth-child(even), .page-body tr:nth-child(even), 
.content-body tr:nth-child(even), .prose tr:nth-child(even) {
    background: var(--color-bg-alt);
}

.article-body code, .page-body code, .content-body code, .prose code {
    background: var(--color-bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: var(--color-primary-dark);
}

.article-body pre, .page-body pre, .content-body pre, .prose pre {
    background: var(--color-bg-dark);
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-body pre code, .page-body pre code, .content-body pre code, .prose pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Simple Content Section (no wrapper class) */
section > .container > h2,
section > .container > h3,
section > .container > h4 {
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--color-text);
}

section > .container > h2 { font-size: 26px; }
section > .container > h3 { font-size: 20px; }
section > .container > h4 { font-size: 17px; }

section > .container > p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Generic Content Section */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: var(--color-bg-alt);
}

/* About Page Specific */
.about-section { padding: 80px 0; }
.about-content { max-width: 800px; }
.about-content h2 { font-size: 28px; margin-bottom: 20px; color: var(--color-text); }
.about-content p { font-size: 17px; line-height: 1.85; color: var(--color-text-light); margin-bottom: 20px; }

/* Contact Page */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 22px; margin-bottom: 24px; }
.contact-info p { margin-bottom: 16px; color: var(--color-text-light); }
.contact-form { background: #fff; padding: 40px; border-radius: 12px; box-shadow: var(--shadow-md); }

/* Form Styles */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--color-text); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* Feature Cards in Content */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
.feature-item { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid var(--color-border); }
.feature-item h4 { font-size: 18px; margin-bottom: 12px; color: var(--color-text); }
.feature-item p { font-size: 15px; color: var(--color-text-light); line-height: 1.7; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .article-body h2, .page-body h2 { font-size: 24px; }
    .article-body h3, .page-body h3 { font-size: 20px; }
}


/* ========================================
   Language Dropdown Switcher
   ======================================== */

.language-switcher.dropdown {
    position: relative;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 6px 12px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}

.language-current:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.language-current svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.language-switcher.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    max-height: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 9999;
    overflow: hidden;
}

.language-switcher.dropdown.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-search {
    padding: 12px;
    border-bottom: 1px solid var(--color-border);
}

.language-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.language-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.language-search-input::placeholder {
    color: var(--color-text-muted);
}

.language-list {
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
}

.language-list::-webkit-scrollbar {
    width: 6px;
}

.language-list::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

.language-list::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.language-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--color-text);
    transition: var(--transition);
}

.language-option:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.language-option.active {
    background: var(--color-primary);
    color: #fff;
}

.lang-native {
    font-weight: 500;
    color: inherit;
}

.language-option .lang-native {
    color: var(--color-text);
}

.language-option:hover .lang-native {
    color: var(--color-primary);
}

.language-option.active .lang-native {
    color: #fff;
}

.language-option.hidden {
    display: none;
}

.lang-native {
    font-weight: 500;
}

.lang-code {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 2px 6px;
    border-radius: 4px;
}

.language-option.active .lang-code {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

/* Mobile Language Dropdown */
@media (max-width: 768px) {
    .language-dropdown {
        width: 100%;
        max-width: 300px;
        right: -10px;
    }
}


/* ========================================
   Brands Page Styles
   ======================================== */

.brands-page .page-header {
    padding-bottom: 80px;
}

.brands-intro {
    padding: 60px 0;
    background: var(--color-bg);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.intro-content p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.brands-page-section {
    padding: 80px 0;
}

.brands-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card-large {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.brand-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.brand-card-large a {
    display: block;
    color: inherit;
}

.brand-card-large .brand-image {
    aspect-ratio: 16/10;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-card-large .brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.brand-card-large:hover .brand-image img {
    transform: scale(1.05);
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.brand-placeholder span {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.brand-info {
    padding: 24px;
}

.brand-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.brand-info p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.brand-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    transition: var(--transition);
}

.brand-card-large:hover .brand-link {
    color: var(--color-primary-dark);
}

/* Brand Features */
.brand-features {
    padding: 100px 0;
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .brands-large {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-large {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .brand-placeholder span {
        font-size: 48px;
    }
}


/* ========================================
   Brand Detail Page Styles
   ======================================== */

.brand-detail-page .page-header {
    padding-bottom: 80px;
}

.brand-info-section {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.brand-info-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.brand-logo-large {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.brand-logo-large img {
    width: 100%;
    height: auto;
}

.brand-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.brand-description h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.brand-description p {
    margin-bottom: 16px;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--color-bg-alt);
    border-radius: 16px;
}

.no-products p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .brand-info-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo-large {
        max-width: 200px;
        margin: 0 auto;
    }
}


/* ========================================
   Brands Showcase Section (New Design)
   ======================================== */

.brand-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.brands-showcase {
    padding: 80px 0;
    background: var(--color-bg);
}

.brand-showcase-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.brand-showcase-item.reverse {
    grid-template-columns: 1fr 400px;
}

.brand-showcase-item.reverse .brand-visual {
    order: 2;
}

.brand-showcase-item.reverse .brand-content {
    order: 1;
}

.brand-visual {
    position: relative;
}

.brand-logo-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.brand-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-icon {
    font-size: 120px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.brand-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.type-tag {
    padding: 6px 16px;
    background: var(--color-bg-alt);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.brand-content {
    padding: 20px 0;
}

.brand-header h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.brand-tagline {
    display: block;
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.brand-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.brand-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--color-text);
}

.brand-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Product Categories Section */
.product-categories-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.category-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.cta-section .btn-outline:hover {
    background: #fff;
    color: var(--color-bg-dark);
    border-color: #fff;
}

/* Responsive for Brands Showcase */
@media (max-width: 1024px) {
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-showcase-item,
    .brand-showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-showcase-item.reverse .brand-visual,
    .brand-showcase-item.reverse .brand-content {
        order: unset;
    }
    
    .brand-logo-box {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .brand-header h2 {
        font-size: 28px;
    }
    
    .brand-icon {
        font-size: 80px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
