/* New Products Page Styles */

/* Main Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav .active a {
    color: #4361ee;
}

.main-nav .active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4361ee;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #1e293b;
    cursor: pointer;
}

/* Products Header */
.products-header {
    padding: 40px 0;
    text-align: left;
    background-color: #f8fafc;
}

.products-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
}

.products-header p {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
}

/* Products Container */
.products-container {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    gap: 30px;
}

/* Sidebar Styles */
.products-sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-sidebar h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4361ee;
}

.search-box {
    position: relative;
    margin-bottom: 25px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 15px 0;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: #4361ee;
}

.filter-checkbox input:checked + .checkmark {
    background-color: #4361ee;
    border-color: #4361ee;
}

.filter-checkbox input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-reset {
    width: 100%;
    padding: 10px;
    background-color: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset:hover {
    background-color: rgba(67, 97, 238, 0.2);
}

/* Main Product Area */
.products-main {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.results-count {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector span {
    font-size: 14px;
    color: #6b7280;
}

.language-selector select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Theme Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4361ee;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Product List */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 10px 0;
}

.product-category {
    color: #4361ee;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-description {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.certification-tag {
    background-color: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-primary, .btn-secondary {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background-color: #4361ee;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #3a56d4;
}

.btn-secondary {
    background-color: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    border: none;
}

.btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.2);
}

.export-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* AI Assistant Panel */
.assistant-panel {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.assistant-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
}

.assistant-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-icon {
    width: 40px;
    height: 40px;
}

.assistant-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.assistant-title p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.btn-clear {
    background-color: transparent;
    color: #6b7280;
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-clear:hover {
    background-color: #f3f4f6;
    color: #4b5563;
}

.assistant-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chat-container {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    min-height: 350px;
    max-height: 500px;
    background-color: #f8fafc;
}

.chat-message {
    margin-bottom: 20px;
    clear: both;
}

.message-author {
    font-size: 12px;
    margin-bottom: 5px;
}

.user-author {
    text-align: right;
    color: #4361ee;
}

.assistant-author {
    text-align: left;
    color: #1e293b;
}

.message-bubble {
    padding: 15px;
    border-radius: 10px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.user-message {
    background-color: rgba(67, 97, 238, 0.1);
    float: right;
    border-radius: 10px 10px 0 10px;
    color: #1e293b;
}

.assistant-message {
    background-color: white;
    float: left;
    border-radius: 10px 10px 10px 0;
    border: 1px solid #e5e7eb;
    color: #1e293b;
}

.input-container {
    display: flex;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
}

.input-box {
    flex-grow: 1;
}

.input-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.input-box input:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* World Map Section */
.world-map-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.world-map-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.main-footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info {
    flex: 0 0 30%;
}

.footer-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    flex: 0 0 60%;
    display: flex;
    justify-content: space-between;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4361ee;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #0f172a;
    color: #f8fafc;
}

body.dark-mode .main-header {
    background-color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.dark-mode .logo a {
    color: #f8fafc;
}

body.dark-mode .main-nav a {
    color: #cbd5e1;
}

body.dark-mode .main-nav a:hover,
body.dark-mode .main-nav .active a {
    color: #5d7bff;
}

body.dark-mode .main-nav .active a::after {
    background-color: #5d7bff;
}

body.dark-mode .products-header {
    background-color: #0f172a;
}

body.dark-mode .products-header h1 {
    color: #f8fafc;
}

body.dark-mode .products-header p {
    color: #cbd5e1;
}

body.dark-mode .products-sidebar,
body.dark-mode .products-main,
body.dark-mode .assistant-panel {
    background-color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.dark-mode .products-sidebar h2 {
    color: #f8fafc;
    border-bottom-color: #5d7bff;
}

body.dark-mode .search-box input,
body.dark-mode .language-selector select,
body.dark-mode .input-box input {
    background-color: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .search-box input:focus,
body.dark-mode .language-selector select:focus,
body.dark-mode .input-box input:focus {
    border-color: #5d7bff;
    box-shadow: 0 0 0 3px rgba(93, 123, 255, 0.2);
}

body.dark-mode .search-button {
    color: #94a3b8;
}

body.dark-mode .filter-section h3 {
    color: #cbd5e1;
}

body.dark-mode .filter-checkbox span {
    color: #cbd5e1;
}

body.dark-mode .checkmark {
    border-color: #334155;
}

body.dark-mode .filter-checkbox:hover .checkmark {
    border-color: #5d7bff;
}

body.dark-mode .filter-checkbox input:checked + .checkmark {
    background-color: #5d7bff;
    border-color: #5d7bff;
}

body.dark-mode .btn-reset {
    background-color: rgba(93, 123, 255, 0.1);
    color: #5d7bff;
}

body.dark-mode .btn-reset:hover {
    background-color: rgba(93, 123, 255, 0.2);
}

body.dark-mode .products-header-row {
    border-bottom-color: #334155;
}

body.dark-mode .results-count {
    color: #f8fafc;
}

body.dark-mode .language-selector span {
    color: #94a3b8;
}

body.dark-mode .slider {
    background-color: #334155;
}

body.dark-mode input:checked + .slider {
    background-color: #5d7bff;
}

body.dark-mode .product-item {
    background-color: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .product-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-details h3 {
    color: #f8fafc;
}

body.dark-mode .product-category {
    color: #5d7bff;
}

body.dark-mode .product-meta {
    color: #94a3b8;
}

body.dark-mode .product-description {
    color: #cbd5e1;
}

body.dark-mode .certification-tag {
    background-color: rgba(93, 123, 255, 0.1);
    color: #5d7bff;
}

body.dark-mode .btn-primary {
    background-color: #5d7bff;
}

body.dark-mode .btn-primary:hover {
    background-color: #4361ee;
}

body.dark-mode .btn-secondary {
    background-color: rgba(93, 123, 255, 0.1);
    color: #5d7bff;
}

body.dark-mode .btn-secondary:hover {
    background-color: rgba(93, 123, 255, 0.2);
}

body.dark-mode .assistant-header {
    border-bottom-color: #334155;
}

body.dark-mode .assistant-title h2 {
    color: #f8fafc;
}

body.dark-mode .assistant-title p {
    color: #94a3b8;
}

body.dark-mode .btn-clear {
    color: #94a3b8;
    border-color: #334155;
}

body.dark-mode .btn-clear:hover {
    background-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .chat-container {
    background-color: #0f172a;
}

body.dark-mode .user-author {
    color: #5d7bff;
}

body.dark-mode .assistant-author {
    color: #f8fafc;
}

body.dark-mode .user-message {
    background-color: rgba(93, 123, 255, 0.1);
    color: #f8fafc;
}

body.dark-mode .assistant-message {
    background-color: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .world-map-section {
    background-color: #0f172a;
}

body.dark-mode .world-map-section h2 {
    color: #f8fafc;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: 250px 1fr 300px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar,
    .products-main,
    .assistant-panel {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-info {
        flex: 0 0 100%;
    }
    
    .footer-links {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 90;
    }
    
    body.dark-mode .main-nav {
        background-color: #1e293b;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-header {
        padding: 30px 0;
    }
    
    .products-header h1 {
        font-size: 28px;
    }
    
    .products-header p {
        font-size: 16px;
    }
    
    .products-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .language-selector {
        align-self: flex-end;
    }
    
    .product-list {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 0;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .products-sidebar {
        padding: 20px 15px;
    }
    
    .products-main {
        padding: 20px 15px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .export-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .assistant-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-clear {
        align-self: flex-end;
    }

/* Manufacturer Page Styles */
.manufacturer-details-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.manufacturer-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4361ee;
}

.manufacturer-logo {
    flex: 0 0 200px;
    margin-right: 30px;
}

.manufacturer-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.manufacturer-info h1 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 10px;
}

.manufacturer-info p {
    font-size: 18px;
    color: #4b5563;
}

.manufacturer-content > div {
    margin-bottom: 40px;
}

.manufacturer-content h2 {
    font-size: 24px;
    color: #1e293b;
    border-bottom: 2px solid #4361ee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.manufacturer-content ul {
    list-style-type: none;
    padding: 0;
}

.manufacturer-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #4b5563;
}

.manufacturer-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4361ee;
    position: absolute;
    left: 0;
    top: 3px;
}

.manufacturer-contact .contact-links {
    display: flex;
    gap: 20px;
}

.manufacturer-contact .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #4361ee;
    color: #4361ee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.manufacturer-contact .btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.1);
}

/* Dark mode styles */
body.dark-mode .manufacturer-header {
    border-bottom-color: #5d7bff;
}

body.dark-mode .manufacturer-logo img {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

body.dark-mode .manufacturer-info h1 {
    color: #f8fafc;
}

body.dark-mode .manufacturer-info p {
    color: #cbd5e1;
}

body.dark-mode .manufacturer-content h2 {
    color: #f8fafc;
    border-bottom-color: #5d7bff;
}

body.dark-mode .manufacturer-content ul li {
    color: #cbd5e1;
}

body.dark-mode .manufacturer-content ul li:before {
    color: #5d7bff;
}

body.dark-mode .manufacturer-contact .btn-secondary {
    border-color: #5d7bff;
    color: #5d7bff;
}

body.dark-mode .manufacturer-contact .btn-secondary:hover {
    background-color: rgba(93, 123, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .manufacturer-header {
        flex-direction: column;
        text-align: center;
    }

    .manufacturer-logo {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 300px;
    }

    .manufacturer-contact .contact-links {
        flex-direction: column;
    }

    .manufacturer-contact .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .manufacturer-details-container {
        padding: 0 15px;
    }

    .manufacturer-content h2 {
        font-size: 20px;
    }

    .manufacturer-logo img {
        max-width: 250px;
    }

    .manufacturer-info h1 {
        font-size: 28px;
    }

    .manufacturer-info p {
        font-size: 16px;
    }


}