/*
Theme Name: Solterra EV Chargers
Theme URI: https://solterra.example
Author: Solterra Team
Author URI: https://solterra.example
Description: Custom WordPress theme for Solterra EV Chargers
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: solterra
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-dark-navy: #0a0a0a;
    --color-dark-card: #1a1a1a;
    --color-orange-primary: #FA913C;
    --color-orange-secondary: #C35D1B;
    --color-orange-hover: #e55a2b;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-800: #2a2a2a;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0a0a0a;
    color: var(--color-text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.site-content {
    padding-top: 80px;
}

/* Paragraph */
.entry-content p {
    margin-bottom: 1rem; /* 16px */
}

/* Headings */
.entry-content h1 {
    margin-bottom: 1.5rem; /* 24px */
}

.entry-content h2 {
    margin-bottom: 1.25rem; /* 20px */
}

.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 1rem; /* 16px */
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25rem; /* 20px */
}

/* Base list styling */
.entry-content ul,
.entry-content ol {
    margin: 0 0 1.25rem 1.25rem; /* bottom + left indent */
    padding-left: 1rem;
}

/* Unordered list bullets */
.entry-content ul {
    list-style-type: disc;
}

/* Ordered list numbers */
.entry-content ol {
    list-style-type: decimal;
}

/* List items */
.entry-content li {
    margin-bottom: 0.5rem; /* 8px */
    line-height: 1.6;
}

/* Nested lists */
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}



/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bg-dark-navy { background-color: var(--color-dark-navy); }
.bg-dark-card { background-color: var(--color-dark-card); }
.bg-orange-primary { background-color: var(--color-orange-primary); }
.text-orange-primary { color: var(--color-orange-primary); }
.border-orange-primary { border-color: var(--color-orange-primary); }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgba(249, 250, 251, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 14rem;
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-300);
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background-color: var(--color-gray-800);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 330px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    gap: 6px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-orange-primary);
    border: 1px solid var(--color-orange-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
    transform: translateY(-4px);
}

/* Cards */
.product-card,
.feature-card,
.application-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C !important;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.application-card img {
    transition: transform 0.3s ease;
}

.application-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    section.applications-section > div > div:nth-child(2) {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    section.applications-section > div > div:nth-child(2) {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
}

.hero-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1.5px;
    color: white;
    margin-bottom: 24px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-features .feature-item img {
    width: 20px;
    height: 20px;
}

.product-grid-container {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.product-grid {
    display: grid;
    gap: 12px;
}

.product-card {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.product-category {
    background: rgba(250, 145, 60, 0.12);
    color: #FA913C;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.product-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-info {
    flex: 1;
}

.product-name {
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-spec {
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
}

.product-image-box {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.feature-card:first-child{
    border-left: 1px solid rgba(60, 60, 60, 0.4);
}
.feature-card {
    border-right: 1px solid rgba(60, 60, 60, 0.4);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.feature-title {
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
}

.applications-slider-container {
    position: relative;
    margin-bottom: 48px;
}

.applications-slider-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.applications-slider {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    transition: transform 0.5s ease;
}

.application-slide {
    flex: 0 0 auto;
    width: 280px;
}

.application-image-wrapper {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.application-slide:hover .application-image-wrapper {
    transform: translateY(-4px);
}

.application-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
}

.slider-nav {
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(250, 145, 60, 1) !important;
    transform: translateY(-50%) scale(1.1);
}

/* Video Section */
.feature-video-container{
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 15px;
    padding: 10px;
    backdrop-filter: blur(10px);
}
.feature-video-container > div{
    border-radius: 10px;
    overflow: hidden;
}
.video-section {
    padding: 80px 0;
}

.video-container {
    position: relative;
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.video-text {
    max-width: 42rem;
    padding-left: 32px;
}

.video-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: white;
    margin-bottom: 24px;
}

.video-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, rgba(250, 145, 60, 0.05) 0%, rgba(195, 93, 27, 0.05) 100%);
    border: 1px solid rgba(250, 145, 60, 0.2);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.cta-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 24px;
}

.cta-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-subdescription {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.partners-section{
    background-color: #303138;
}
/* Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 48px;
    }
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   PRODUCT ARCHIVE PAGE STYLES
   =================================== */

.products-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.products-page .breadcrumb {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-page .breadcrumb a:hover {
    color: #FA913C;
}

.products-page .breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.products-header {
    margin-bottom: 24px;
}

.products-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.products-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.products-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    padding: 10px 16px 10px 40px;
    color: white;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(80, 80, 80, 0.8);
    background: rgba(40, 40, 40, 0.9);
}

.search-box svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.3);
}

.products-content-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clear-all {
    font-size: 12px;
    color: #FA913C;
    cursor: pointer;
    text-decoration: none;
}

.clear-all:hover {
    text-decoration: underline;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-chip {
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: #FA913C;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-chip .remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(60, 60, 60, 0.5);
    border-radius: 8px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.filter-option:hover {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(80, 80, 80, 0.7);
    color: rgba(255, 255, 255, 0.8);
}

.filter-option.active {
    background: rgba(250, 145, 60, 0.15);
    border-color: #FA913C;
    color: #FA913C;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(60, 60, 60, 0.5);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.filter-tag:hover,
.filter-tag.active {
    background: rgba(250, 145, 60, 0.15);
    border-color: #FA913C;
    color: #FA913C;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.products-grid .product-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.products-grid .product-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.product-image {
    background: rgba(220, 220, 220, 0.95);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    display: inline-block;
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 196, 138, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.products-grid .product-content {
    padding: 20px 0px;
    gap: 12px;
    display: block;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-specs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.spec-badge {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.spec-badge.highlight {
    background: rgba(250, 145, 60, 0.15);
    border-color: rgba(250, 145, 60, 0.3);
    color: #FA913C;
}

.product-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-request {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-request:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(80, 80, 80, 0.9);
}

.btn-view {
    flex: 1;
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 145, 60, 0.3);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   SINGLE PRODUCT PAGE STYLES
   =================================== */

.single-product-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.single-product-page .breadcrumb {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.single-product-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-product-page .breadcrumb a:hover {
    color: #FA913C;
}

.single-product-page .breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    background: rgba(220, 220, 220, 0.95);
    border-radius: 24px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.thumbnail {
    background: rgba(40, 40, 40, 0.5);
    border: 2px solid rgba(60, 60, 60, 0.6);
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #FA913C;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-sku {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 12px;
}

.product-category-badge {
    display: inline-block;
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #FA913C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.single-product-page .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.highlight-badge {
    background: rgba(250, 145, 60, 0.1);
    border: 1px solid rgba(250, 145, 60, 0.25);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 13px;
    color: #FA913C;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 145, 60, 0.3);
}

.action-buttons .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-buttons .btn-secondary:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(80, 80, 80, 0.9);
}

.divider {
    height: 1px;
    background: rgba(60, 60, 60, 0.4);
    margin: 32px 0;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.spec-box {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 16px;
    padding: 20px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-weight: 600;
}

.spec-value {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.accordion {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 16px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(60, 60, 60, 0.4);
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(30, 30, 30, 0.5);
}

.accordion-title {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: #FA913C;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 24px 20px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.related-section {
    margin-top: 80px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-product {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-product:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.related-image {
    background: rgba(40, 40, 40, 0.5);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.related-content {
    padding: 20px;
}

.related-badge {
    display: inline-block;
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #FA913C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.related-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.related-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Responsive Styles for Products */
@media (max-width: 1024px) {
    .products-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: relative;
        top: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}
/* ===================================
   FOOTER STYLES
   =================================== */
    .container a:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }


/* ===================================
   FRONT PAGE ANIMATION STYLES
   =================================== */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-33.333%);
            }
        }
        
        .partners-marquee-wrapper:hover .partners-marquee {
            animation-play-state: paused;
        }
        
        .partner-logo:hover {
            opacity: 1 !important;
        }
        
        .partner-logo:hover img {
            filter: grayscale(0%) !important;
        }


/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.about-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.page-hero {
    text-align: center;
    margin-bottom: 80px;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(250, 145, 60, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #FA913C;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-box {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FA913C;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-member {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
}

.team-photo {
    background: rgba(60, 60, 60, 0.3);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.team-role {
    color: #FA913C;
    font-size: 14px;
    font-weight: 600;
}

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

@media (max-width: 640px) {
    .features-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(250, 145, 60, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #FA913C;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-content p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

.info-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #FA913C;
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FA913C;
    background: rgba(20, 20, 20, 0.9);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 145, 60, 0.3);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    text-align: center;
}

.form-note a {
    color: #FA913C;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   SOLUTIONS PAGE STYLES
   =================================== */
.solutions-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-hero {
    text-align: center;
    margin-bottom: 80px;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.solution-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.solution-image {
    background: rgba(60, 60, 60, 0.3);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.solution-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
div#swap .solution-content {
    padding: 40px 0px 40px 40px;
}
.solution-badge {
    display: inline-block;
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #FA913C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.solution-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.solution-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.solution-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FA913C;
    font-weight: 700;
}

.solution-btn {
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.solution-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 145, 60, 0.3);
}

@media (max-width: 1024px) {
    .solution-card {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        padding: 40px;
    }
}


/* ===================================
   SUPPORT PAGE STYLES
   =================================== */
.support-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.support-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.support-icon {
    width: 64px;
    height: 64px;
    background: rgba(250, 145, 60, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon svg {
    width: 32px;
    height: 32px;
    color: #FA913C;
}

.support-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.support-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 30, 30, 0.5);
}

.faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #FA913C;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

@media (max-width: 640px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   COMPANY PAGE STYLES
   =================================== */

.company-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.content-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

.content-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-highlight {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

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

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FA913C;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.what-we-do-section {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 80px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.expertise-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.expertise-icon {
    margin-bottom: 20px;
}

.expertise-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.expertise-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.confidence-statement {
    text-align: center;
    margin-top: 60px;
}

.confidence-statement p {
    font-size: 28px;
    font-weight: 700;
    color: white;
    font-style: italic;
}

.legacy-section {
    margin-top: 80px;
}

.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.legacy-story {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.legacy-story p {
    margin-bottom: 20px;
}

.milestones-timeline {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 40px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(250, 145, 60, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: #FA913C;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: #FA913C;
    margin-bottom: 4px;
}

.timeline-event {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.cta-section {
    margin-top: 80px;
}

/* ===================================
   TEAM PAGE STYLES
   =================================== */

.team-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.leadership-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.leadership-intro p {
    margin-bottom: 20px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.leader-image-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-content {
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.leader-title {
    font-size: 16px;
    font-weight: 600;
    color: #FA913C;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.leader-stats {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.stat-badge {
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    color: #FA913C;
    font-weight: 600;
}

/* ===================================
   NEWS & BLOG PAGE STYLES
   =================================== */

.news-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 60px;
    border-bottom: 2px solid rgba(60, 60, 60, 0.4);
    padding-bottom: 0;
}

.news-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.news-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.news-tab.active {
    color: #FA913C;
    border-bottom-color: #FA913C;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.news-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
    box-shadow: 0 10px 30px rgba(250, 145, 60, 0.2);
}

.news-date {
    font-size: 12px;
    color: #FA913C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: #FA913C;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #e55a2b;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.blog-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-2px);
    border-color: #FA913C;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-category {
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: #FA913C;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: #FA913C;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.media-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
}

.media-date {
    font-size: 12px;
    color: #FA913C;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.media-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.media-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-actions {
    display: flex;
    gap: 16px;
}

.btn-download {
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    color: #FA913C;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: rgba(250, 145, 60, 0.25);
}

.media-link {
    color: #FA913C;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.media-link:hover {
    text-decoration: underline;
}

.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.kit-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
}

.kit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.kit-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.kit-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.media-contact {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.media-contact h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.media-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* ===================================
   CAREERS PAGE STYLES
   =================================== */

.careers-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #FA913C;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.positions-list {
    margin-top: 40px;
}

.position-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(250, 145, 60, 0.3);
}

.position-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-2px);
    border-color: #FA913C;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.position-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.position-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.position-location {
    font-weight: 500;
}

.position-type {
    background: rgba(250, 145, 60, 0.15);
    border: 1px solid rgba(250, 145, 60, 0.3);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 11px;
    color: #FA913C;
    font-weight: 600;
}

.position-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.position-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.6);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FA913C 0%, #C35D1B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}


/* ===================================
   TABLE STYLES FOR CONTENT PAGES
   =================================== */

/* Main table wrapper */
.content table,
.entry-content table,
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
    font-size: 14px;
}

/* Table headers */
table thead {
    background: rgba(250, 145, 60, 0.15);
    border-bottom: 2px solid #FA913C;
}

table thead tr th {
    color: #FA913C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

table thead tr th:last-child {
    border-right: none;
}

/* Table body */
table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

table tbody tr:hover {
    background: rgba(250, 145, 60, 0.05);
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr td {
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

table tbody tr td:last-child {
    border-right: none;
}

/* First column (attribute names) styling */
table tbody tr td:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    background: rgba(30, 30, 30, 0.5);
}

/* Table section headings (H2 before tables) */
.entry-content h2,
.content h2 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
}

/* First heading should have less top margin */
.entry-content h2:first-of-type,
.content h2:first-of-type {
    margin-top: 24px;
}

/* Responsive table wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 32px 0;
}

.table-responsive table {
    margin: 0;
    min-width: 600px;
}

/* Empty cell styling */
table tbody tr td:empty::after {
    content: '—';
    color: rgba(255, 255, 255, 0.3);
}

/* Striped rows variant (optional) */
table.table-striped tbody tr:nth-child(even) {
    background: rgba(30, 30, 30, 0.4);
}

table.table-striped tbody tr:nth-child(odd) {
    background: rgba(20, 20, 20, 0.4);
}

/* Bordered variant (optional) */
table.table-bordered tbody tr td {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Compact variant (optional) */
table.table-compact tbody tr td {
    padding: 10px 16px;
}

table.table-compact thead tr th {
    padding: 12px 16px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    table {
        font-size: 13px;
    }
    
    table thead tr th,
    table tbody tr td {
        padding: 12px 14px;
    }
    
    table thead tr th {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    /* Stack table on very small screens */
    table.table-mobile-stack,
    table.table-mobile-stack thead,
    table.table-mobile-stack tbody,
    table.table-mobile-stack tr,
    table.table-mobile-stack td,
    table.table-mobile-stack th {
        display: block;
    }
    
    table.table-mobile-stack thead {
        display: none;
    }
    
    table.table-mobile-stack tbody tr {
        margin-bottom: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        overflow: hidden;
    }
    
    table.table-mobile-stack tbody tr td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    table.table-mobile-stack tbody tr td:last-child {
        border-bottom: none;
    }
    
    table.table-mobile-stack tbody tr td:before {
        content: attr(data-label);
        position: absolute;
        left: 14px;
        top: 14px;
        font-weight: 600;
        color: #FA913C;
        text-transform: uppercase;
        font-size: 11px;
    }
}

/* Special styling for value columns with technical specs */
table tbody tr td strong {
    color: #FA913C;
    font-weight: 700;
}

/* Highlight important values */
table tbody tr td[data-highlight="true"],
table tbody tr.highlight td {
    background: rgba(250, 145, 60, 0.1);
    border-left: 3px solid #FA913C;
}

/* Status indicators in tables */
.status-indicator {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-indicator.status-yes,
.status-indicator.status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-indicator.status-no,
.status-indicator.status-inactive {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-indicator.status-optional,
.status-indicator.status-pending {
    background: rgba(250, 145, 60, 0.2);
    color: #FA913C;
    border: 1px solid rgba(250, 145, 60, 0.3);
}

/* Responsive Styles for New Pages */
@media (max-width: 1024px) {
    .content-grid,
    .legacy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid,
    .benefits-grid,
    .media-kit-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-image-placeholder {
        margin: 0 auto;
    }

    .leader-stats {
        justify-content: center;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .news-tabs {
        flex-wrap: wrap;
    }

    .position-header {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================================
   INLINE STYLES MOVED TO CSS - OPTIMIZED FOR PERFORMANCE
   ========================================================================== */

/* Site Logo */
.site-logo {
    height: 45px;
    width: auto;
}

/* Container */
.container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Breadcrumb current item */
.breadcrumb .current {
    color: white;
}

/* Product placeholders */
.placeholder-text {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

/* Footer styles */
.site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(60, 60, 60, 0.3);
}

.site-footer .site-logo {
    height: 45px;
    width: auto;
}

.footer-description {
    font-family: 'IBM Plex Sans', sans-serif;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-family: 'IBM Plex Sans', sans-serif;
}

.footer-contact-item {
    font-family: 'IBM Plex Sans', sans-serif;
    display: flex;
    gap: 10px;
}

.footer-legal-text {
    font-family: 'IBM Plex Sans', sans-serif;
}

.footer-bottom {
    background: rgba(47, 49, 55, 1);
    border-top: 1px solid rgba(60, 60, 60, 0.3);
    padding: 16px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: rgba(177, 184, 191, 1);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
    color: rgba(177, 184, 191, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-orange-primary);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Hero section */
.hero-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: rgba(250, 145, 60, 1);
    text-underline-offset: 8px;
}

.hero-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.hero-features {
    font-family: 'IBM Plex Sans', sans-serif;
}

.hero-feature-icon {
    width: 20px;
    height: 20px;
}

/* Product card compact */
.product-card-compact {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    backdrop-filter: blur(10px);
}

.product-category-badge-small {
    background: rgba(250, 145, 60, 0.12);
    color: rgba(255, 196, 138, 1);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Utility spacing */
.ml-2 {
    margin-left: 8px;
}

/* Filter chips */
.filter-chip {
    background: rgba(250, 145, 60, 0.15);
    color: var(--color-orange-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px;
}

.filter-chip button {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.filter-chip button:hover {
    color: white;
}

/* Clear all button */
.clear-all {
    background: none;
    border: none;
    color: var(--color-orange-primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.clear-all:hover {
    color: var(--color-orange-hover);
}

/* Active filter section */
#active-filters-section {
    margin-bottom: 24px;
}

/* Products page container override */
.products-page .container {
    max-width: 1280px !important;
}

/* Single product page container override */
.single-product-page .container {
    max-width: 1280px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Links */
.footer-link {
    color: rgba(156, 163, 175, 1);
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--color-orange-primary);
}

/* Social Links */
.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 145, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-orange-primary);
    transform: translateY(-2px);
}


/* Button Small */
.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}
.blog-content ul, .blog-content ol{
	list-style: initial;
}