/*
Theme Name: Contour Design Theme
Description: A modern, minimalist theme inspired by Contour Design's ergonomic tech aesthetic
Version: 1.0
Author: Custom Theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #000000;
    text-decoration: none;
}

.logo sup {
    font-size: 0.45em; /* Smaller ™ mark */
    vertical-align: super; /* Positions it as a superscript */
    line-height: 0; /* Ensures proper vertical alignment */
    margin-left: -2px; /* Closer to the BarMouse text */
}

/* Hero logo style matching the header logo exactly */
.hero-logo-style {
    font-size: 48px !important;
    font-weight: 400 !important;
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    color: #000000 !important;
    margin-bottom: 15px !important;
    text-decoration: none !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

.hero-logo-style sup {
    font-size: 0.45em; /* Smaller ™ mark matching logo */
    vertical-align: super; /* Positions it as a superscript */
    line-height: 0; /* Ensures proper vertical alignment */
    margin-left: -2px; /* Closer to the BarMouse text */
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px 0 80px 0;
    text-align: center;
}

/* OyserMouse Hero - Different background */
.oysermouse-hero {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

/* BarMouse 2 Hero - Optimized compact version */
.barmouse2-hero {
    background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
    position: relative;
    padding: 50px 0 25px 0;
}

.barmouse2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
    pointer-events: none;
}

.barmouse2-hero .hero-text {
    padding: 0;
    margin-bottom: 2px;
}

.barmouse2-hero .hero-subtitle {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.barmouse2-hero .hero-buttons {
    margin-bottom: 25px;
}

.barmouse2-single-image {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(155, 89, 182, 0.15);
}

.barmouse2-single-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: blur(5px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.barmouse2-single-image:hover img {
    filter: blur(3px);
    opacity: 0.9;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    padding: 5px 0 0 0;
}

.hero-image {
    width: 100%;
    height: 450px;
    max-width: 1200px;
    margin-top: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 700px;
}

.hero-product-image {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.hero-product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-product-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-main-image {
    grid-column: span 2;
}

.hero-main-image img {
    height: 220px;
}

.hero-subtitle {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    color: #000000 !important;
    font-size: 1.2rem !important;
    margin: 5px 0 20px 0 !important;
}

/* Product Page Styles */
.product-hero {
    background: var(--bg-light);
    padding: 40px 0 20px;
    text-align: center;
}

/* Product Showcase Section */
.product-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-showcase h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.showcase-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Hero Images Duo */
.hero-images-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image-left,
.hero-image-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-left:hover,
.hero-image-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 180px;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.product-title {
    font-size: 3rem !important;
    font-weight: 400 !important;
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    color: #000000 !important;
    margin-bottom: 15px !important;
}

.product-title sup {
    font-size: 0.45em;
    vertical-align: super;
    line-height: 0;
    margin-left: -2px;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.product-details {
    padding: 40px 0 20px;
}

.product-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px 0;
}

.product-info ul {
    list-style: none;
    padding-left: 0;
}

.product-info ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.product-info ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.technical-drawing {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Model Selection Section - Positioned under images */
.model-selection-section {
    margin-top: 30px;
    text-align: left;
}

.model-selection-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

/* Product Model Selector */
.product-model-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.model-btn {
    width: 100%;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.model-btn:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.model-btn.active {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0.1) 100%);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
}

.model-btn h4 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
}

.model-btn p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .product-hero {
        padding: 30px 0 20px;
    }
    
    .product-details {
        padding: 30px 0 15px;
    }
    
    .product-features {
        padding: 40px 0 30px;
    }
    
    .model-selection-section {
        margin-top: 25px;
    }
    
    .comparison-section {
        padding: 30px 0 25px;
    }
    
    .product-model-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .model-btn {
        padding: 10px;
    }
    
    .model-btn h4 {
        font-size: 14px;
    }
    
    .model-btn p {
        font-size: 12px;
    }
    
    .main-product-image {
        padding: 15px;
    }
    
    .main-product-image img {
        height: 250px;
    }
    
    /* Mobile Features Optimization */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Mobile Layout for Extended Content */
    .extended-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 30px;
        padding: 25px;
        border-radius: 15px;
    }
    
    .features-section h2,
    .comparison-section-compact h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .features-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .features-grid-compact .feature-card {
        padding: 12px;
    }
    
    .features-grid-compact .feature-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .features-grid-compact .feature-card p {
        font-size: 12px;
    }
    
    .comparison-section-compact table {
        font-size: 13px;
    }
    
    .comparison-section-compact th {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .comparison-section-compact td {
        padding: 10px 8px;
    }
    
    /* Mobile Products Overview */
    .products-overview {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .simple-product-card {
        grid-template-columns: 1fr;
        max-width: none;
        margin: 0 20px;
    }
    
    .simple-product-image {
        height: 180px;
        padding: 15px;
    }
    
    .simple-product-info {
        padding: 20px;
    }
    
    .simple-product-info h3 {
        font-size: 20px;
    }
    
    .simple-product-info p {
        font-size: 14px;
    }
    
    /* Mobile Future Products */
    .future-products {
        padding: 40px 0;
    }
    
    .future-product-card {
        padding: 25px;
    }
    
    .future-product-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .future-product-info h3 {
        font-size: 24px;
    }
    
    .future-features {
        justify-content: center;
    }
}

.product-features {
    background: var(--bg-light);
    padding: 50px 0 40px;
    text-align: center;
}

.product-features h2 {
    text-align: center;
    margin-bottom: 35px;
}

/* Optimized Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Extended Content Grid - Side by Side Layout */
.extended-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.features-section,
.comparison-section-compact {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.features-section h2,
.comparison-section-compact h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.features-section h2::after,
.comparison-section-compact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Compact Features Grid - Ultra Condensed */
.features-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.features-grid-compact .feature-card {
    padding: 15px;
    background: white;
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.features-grid-compact .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-grid-compact .feature-card:hover::before {
    opacity: 1;
}

.features-grid-compact .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

.features-grid-compact .feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.features-grid-compact .feature-card p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-light);
}

/* Compact Comparison Section */
.comparison-section-compact .comparison-table {
    max-width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-section-compact table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    font-size: 14px;
    flex: 1;
}

.comparison-section-compact th {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
    font-size: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.comparison-section-compact th:first-child {
    text-align: left;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
}

.comparison-section-compact td {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.comparison-section-compact td:first-child {
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.03);
}

.comparison-section-compact td:nth-child(2),
.comparison-section-compact td:nth-child(3) {
    text-align: center;
    font-weight: 600;
}

.comparison-section-compact tr:hover td {
    background-color: rgba(52, 152, 219, 0.05);
}

.comparison-section-compact tr:hover td:first-child {
    background-color: rgba(52, 152, 219, 0.1);
}

.comparison-section-compact tr:last-child td {
    border-bottom: none;
}

/* Old Comparison Section - Keep for reference */
.comparison-section {
    padding: 40px 0 30px;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
    font-weight: 500;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Products Overview Section - Simplified */
.products-overview {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.products-simple-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.simple-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 700px;
    align-items: center;
}

.simple-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.simple-product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.simple-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.simple-product-card:hover .simple-product-image img {
    transform: scale(1.05);
}

.simple-product-info {
    padding: 25px;
}

.simple-product-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.simple-product-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.simple-product-meta {
    margin-bottom: 20px;
}

.availability {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.availability.available {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

/* Future Products Section */
.future-products {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
}

.future-products .section-header h2 {
    color: white;
}

.future-products .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.future-product-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.future-product-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.future-product-info h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.future-product-info .product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.future-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-icon {
    font-size: 16px;
}

.future-product-image {
    text-align: center;
}

.future-product-image img {
    width: 100%;
    max-width: 250px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.future-product-card:hover .future-product-image img {
    opacity: 1;
}

/* Technical Drawing Section */
.technical-section {
    padding: 10px 0;
    margin-top: -20px;
    background: white;
    text-align: center;
}

.technical-drawing-large {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.technical-drawing-large img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .technical-drawing-large {
        padding: 10px;
        margin: 0 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    #lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Modern Product Gallery */
.product-gallery {
    max-width: 500px;
    margin: 0 auto;
}

.main-product-image {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.main-product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Mobile optimization for BarMouse 3 main product image */
@media (max-width: 1024px) {
    .product-gallery .main-product-image img {
        object-fit: contain !important;
        padding: 0px !important;
        background: white !important;
        height: 350px !important;
        box-sizing: border-box !important;
    }
}

.main-product-image img:hover {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.thumbnail.active {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

/* Featured Product Styling */
.featured-product {
    position: relative;
    overflow: hidden;
}

.featured-product::before {
    content: "NYA!";
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.featured-product .featured-image {
    transition: transform 0.5s ease;
}

.featured-product:hover .featured-image {
    transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Header and Navigation */
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 0 !important;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
        margin: 0;
        align-self: center;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 50px 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-logo-style {
        font-size: 32px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }
    
    .hero-buttons {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 200px;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-image {
        order: 2;
        height: auto;
        margin-top: 0;
        width: 100%;
        max-width: 350px;
        padding: 0 20px;
    }
    
    .hero-product-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-main-image {
        grid-column: span 1;
    }
    
    .hero-main-image img,
    .hero-product-image img {
        height: 150px;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-product-image {
        padding: 15px;
    }
    
    /* BarMouse 2 Section */
    .barmouse2-section {
        padding: 50px 0 60px 0;
        margin-top: 0;
        text-align: center;
    }
    
    .barmouse2-title {
        font-size: 32px !important;
        margin-bottom: 25px !important;
        color: var(--primary-color) !important;
        display: block !important;
        visibility: visible !important;
        line-height: 1.2 !important;
    }
    
    .barmouse2-buttons {
        margin-bottom: 30px !important;
    }
    
    .barmouse2-image {
        max-width: 300px;
        margin: 0 auto;
        padding: 15px;
    }
    
    .barmouse2-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Legacy Section */
    .legacy-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .legacy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .legacy-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* News Section */
    .news-content p {
        font-size: 1rem;
    }
    
    /* General Content */
    .content-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Grid layouts */
    .grid {
        gap: 20px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Cards */
    .card {
        padding: 20px;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

/* BarMouse 2 Section */
.barmouse2-section {
    padding: 20px 0 80px 0;
    margin-top: -40px;
    text-align: center;
}

.barmouse2-title {
    font-size: 48px !important;
    font-weight: 400 !important;
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    color: #000000 !important;
    margin-bottom: 40px !important;
    text-decoration: none !important;
}

.barmouse2-title sup {
    font-size: 0.45em;
    vertical-align: super;
    line-height: 0;
    margin-left: -2px;
}

.barmouse2-buttons {
    margin-bottom: 30px;
}

.barmouse2-image {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.barmouse2-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1)) blur(8px);
}

/* OyserMouse Section - Similar to BarMouse 2 */
.oysermouse-section {
    padding: 20px 0 80px 0;
    margin-top: -40px;
    text-align: center;
}

.oysermouse-title {
    font-size: 48px !important;
    font-weight: 400 !important;
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    color: #000000 !important;
    margin-bottom: 40px !important;
    text-decoration: none !important;
}

.oysermouse-title sup {
    font-size: 0.45em;
    vertical-align: super;
    line-height: 0;
    margin-left: -2px;
}

.oysermouse-buttons {
    margin-bottom: 30px;
}

.oysermouse-image {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.oysermouse-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .barmouse2-title {
        font-size: 36px !important;
        margin-bottom: 30px !important;
    }
    
    .barmouse2-image {
        padding: 20px;
        margin: 0 20px;
    }
    
    .oysermouse-title {
        font-size: 36px !important;
        margin-bottom: 30px !important;
    }
    
    .oysermouse-image {
        padding: 20px;
        margin: 0 20px;
    }
}

/* BarMouse Legacy Section */
.barmouse-legacy {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
    text-align: center;
}

.legacy-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 600;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.legacy-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.legacy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.legacy-text p:first-child {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .legacy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .legacy-content h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .legacy-text p {
        font-size: 1.1rem;
    }
}

/* News Section */
.news-section {
    text-align: center;
    background-color: var(--bg-light);
}

.news-content {
    max-width: 600px;
    margin: 0 auto;
}

.news-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.news-button {
    margin-top: 20px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px auto;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.address-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.address-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.address-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-card h3 svg {
    color: var(--secondary-color);
}

.address-content p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.address-content p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.company-info {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.company-info p {
    margin: 0;
    font-size: 1.1rem;
}

.support-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.support-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.support-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--text-color);
    line-height: 1.7;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px auto;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-feature h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.support-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-section,
    .support-section {
        padding: 50px 0;
    }
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.news-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-post {
    grid-column: 1 / -1;
}

.featured-post .post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.post-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    align-items: center;
}

.post-date {
    color: var(--text-light);
    font-weight: 500;
}

.post-category {
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.featured-post h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-post h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.featured-post p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

.read-more-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-hero p {
        font-size: 1.1rem;
    }
    
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-grid {
        gap: 30px;
        margin: 0 20px;
    }
    
    .post-content {
        padding: 30px;
    }
    
    .featured-post h2 {
        font-size: 1.8rem;
    }
    
    .blog-post h3 {
        font-size: 1.3rem;
    }
    
    .featured-post .post-image {
        height: 250px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Components */
.card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--footer-bg-color, #3a4a5c);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/09/Top-Print.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center center;
    filter: invert(1) brightness(1) contrast(1);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}





.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card {
        padding: 20px;
    }
}

/* WordPress Specific Styles */
.post {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.post-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.post-content {
    line-height: 1.8;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1002;
    position: relative;
    padding: 10px;
    touch-action: manipulation;
}

/* Header scroll effect */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Form styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: var(--accent-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Image lazy loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Post navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.post-navigation a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--primary-color);
}

/* Archive and search page styles */
.archive-header,
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.archive-title,
.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.archive-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Pagination */
.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-numbers a,
.page-numbers span {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers .current {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Error page styles */
.error-404 {
    text-align: center;
    padding: 80px 0;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
        background: var(--primary-color) !important;
        color: white !important;
        padding: 12px 16px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        transition: all 0.2s ease !important;
        align-self: center !important;
        box-shadow: none !important;
    }
    
    /* BarMouse 3 product image optimization for mobile */
    .barmouse3-main-image {
        object-fit: contain !important;
        height: auto !important;
        padding: 15px !important;
        background: white !important;
        border-radius: 10px !important;
    }
    
    /* BarMouse 2 hero - mobile optimization */
    .barmouse2-hero {
        padding: 40px 0 50px 0 !important;
    }
    
    .barmouse2-hero .hero-text {
        margin-bottom: 20px !important;
    }
    
    .barmouse2-single-image {
        max-width: 400px !important;
        padding: 20px !important;
        margin: 0 auto !important;
    }
    
    .barmouse2-single-image img {
        max-height: 160px !important;
    }
    
    /* Optimize stats section for mobile */
    .legacy-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .stat-item p {
        font-size: 1rem !important;
        margin-top: 5px !important;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--secondary-color) !important;
        border-color: rgba(255,255,255,0.2) !important;
    }
    
    .main-nav {
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
        pointer-events: none !important;
    }
    
    .main-nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        display: block !important;
        height: auto !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        padding: 20px 0 !important;
        gap: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .main-nav a {
        display: block !important;
        padding: 16px 24px !important;
        border: none !important;
        background: none !important;
        color: var(--text-color) !important;
        text-align: left !important;
        font-weight: 500 !important;
        font-size: 1rem !important;
        transition: all 0.2s ease !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    
    .main-nav a:hover {
        background: var(--bg-light) !important;
        color: var(--secondary-color) !important;
        padding-left: 32px !important;
    }
    
    .main-nav a:last-child {
        border-bottom: none !important;
    }
    
    .main-nav a::after {
        display: none !important;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    footer::before {
        display: none;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }