:root {
    /* Переменные цветов из Syron */
    --term-color-1: #8161f4; /* Фиолетовый */
    --term-color-2: #667bfa; /* Голубой фиолетовый */
    --term-color-3: #ff4eb0; /* Розовый */
    --term-color-4: #ff5864; /* Красноватый */
    --term-color-5: #ffa21e; /* Оранжевый */
    --term-color-6: #ff885d; /* Персиковый */
    --term-color-7: #a247d9; /* Пурпурный */
    --term-color-8: #994ff3; /* Фиолетовый светлый */
    
    --primary-color: #8161f4; /* Фиолетовый */
    --secondary-color: #ff5864; /* Красноватый */
    --text-color: #2f2e35; /* Темно-серый текст */
    --text-light: #474c5d; /* Светло-серый текст */
    --text-lighter: #9fa8b5; /* Очень светлый текст */
    --bg-color: #f5f5f7; /* Светло-серый фон */
    --card-radius: 16px; /* Скругления карточек */
    --button-radius: 50px; /* Округлые кнопки */
    
    /* Цвета для градиентной линии */
    --color-01: #4569e7;
    --color-02: #ff5992;
    --color-03: #ffae00;
    --color-04: #29a8ff;
    --color-05: #42fbe1;

    /* Градиенты для продуктовых карточек (расширяем до 8) */
    --gradient-color-1: linear-gradient(135deg, #8161f4, #667bfa);
    --gradient-color-2: linear-gradient(135deg, #ff4eb0, #ff5864);
    --gradient-color-3: linear-gradient(135deg, #ffa21e, #ff885d);
    --gradient-color-4: linear-gradient(135deg, #a247d9, #994ff3);
    --gradient-color-5: linear-gradient(135deg, #667bfa, #a247d9);
    --gradient-color-6: linear-gradient(135deg, #ff5864, #ffa21e);
    --gradient-color-7: linear-gradient(135deg, #4569e7, #29a8ff);
    --gradient-color-8: linear-gradient(135deg, #ff885d, #ff4eb0);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Главная секция с поиском */
.hero-section {
    position: relative;
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-gradient-dark), var(--bg-color));
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 60px;
    z-index: 5;
}

.search-header {
    text-align: center;
    margin-bottom: 15px;
}

.search-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.search-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-top: 30px;
}

.search-input-container {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
}

.search-input:focus {
    outline: none;
}

.search-icon {
    position: absolute;
    right: 5px;
    background-color: var(--secondary-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 5px;
    box-shadow: 0 5px 15px rgba(255, 88, 100, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.search-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 88, 100, 0.4);
    background-color: #ff4454;
}

.search-icon span {
    color: white;
    font-size: 22px;
}

/* Обновленные стили для популярных поисков в стиле Syron */
.popular-searches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}

.popular-searches-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 8px;
}

.popular-search-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: transparent;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Цветные теги - для каждого свой цвет */
.popular-search-tag[data-search-term="laptop"] {
    color: #646cff;
}

.popular-search-tag[data-search-term="smartphone"] {
    color: #4c8bf5;
}

.popular-search-tag[data-search-term="headphones"] {
    color: #ff5e9a;
}

.popular-search-tag[data-search-term="camera"] {
    color: #ff6a3d;
}

.popular-search-tag[data-search-term="watch"] {
    color: #ffb700;
}

.popular-search-tag[data-search-term="tablet"] {
    color: #6a7de8;
}

.popular-search-tag:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Скрываем кнопку поиска */
.search-button {
    display: none;
}

/* Контейнер с фильтрами */
.filters-container {
    background: white;
    border-radius: var(--card-radius);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 10px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 80, 254, 0.1);
}

/* Контейнер с результатами */
.results-container {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    margin-top: 30px;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
    transition: opacity 0.5s ease;
}

/* Карточки товаров */
.product-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-shipping {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.seller-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-lighter);
    border-top: 1px solid #f1f1f1;
    padding-top: 10px;
    margin-top: 5px;
}

/* Спиннер загрузки */
.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Сообщения об ошибках */
.error-message {
    text-align: center;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 600px;
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-message h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-message p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.error-message p:last-child {
    color: var(--text-lighter);
    font-size: 1rem;
}

.no-results {
    text-align: center;
    padding: 50px 0;
    color: var(--text-light);
    font-size: 18px;
}

/* Основное содержимое */
.main-content {
    padding-top: 0;
}

/* Футер */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Секция с особенностями */
.features-section {
    padding: 30px 0;
    background-color: var(--bg-color);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-heading {
    text-align: center;
    margin-bottom: 20px;
}

.features-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    margin-top: 5px;
    color: var(--text-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-heading p {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px -10px rgba(255, 88, 100, 0.4);
}

.feature-icon span {
    color: white;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Адаптивный дизайн */
@media (max-width: 768px) {
    .search-header h1 {
        font-size: 2.5em;
    }
    
    .search-button {
        width: 100%;
    }
    
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Анимация фоновых элементов */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-animation span {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(129, 97, 244, 0.1);
    border-radius: 50%;
    animation: float 25s infinite linear;
}

.bg-animation span:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 20%;
    top: 15%;
    background: rgba(129, 97, 244, 0.1);
    animation-delay: 0s;
}

.bg-animation span:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 50%;
    top: 35%;
    background: rgba(255, 88, 100, 0.1);
    animation-delay: 2s;
    animation-duration: 17s;
}

.bg-animation span:nth-child(3) {
    width: 15px;
    height: 15px;
    left: 70%;
    top: 20%;
    background: rgba(255, 78, 176, 0.1);
    animation-delay: 4s;
}

.bg-animation span:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 40%;
    top: 60%;
    background: rgba(255, 88, 100, 0.1);
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-animation span:nth-child(5) {
    width: 15px;
    height: 15px;
    left: 65%;
    top: 70%;
    background: rgba(129, 97, 244, 0.1);
    animation-delay: 0s;
}

.bg-animation span:nth-child(6) {
    width: 20px;
    height: 20px;
    left: 75%;
    top: 45%;
    background: rgba(255, 78, 176, 0.1);
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* Декоративные точки */
.dot-pink {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--term-color-3);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 78, 176, 0.6);
    animation: float-dots 15s infinite ease-in-out;
}

.dot-royal {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--term-color-2);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(102, 123, 250, 0.6);
    animation: float-dots 20s infinite ease-in-out;
}

.dot-purple {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--term-color-1);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(129, 97, 244, 0.6);
    animation: float-dots 18s infinite ease-in-out;
}

.dot-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.dot-3 {
    top: 50%;
    left: 15%;
    animation-delay: 1s;
}

.dot-4 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float-dots {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 15px) rotate(90deg);
    }
    50% {
        transform: translate(0, 30px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 15px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Градиентная линия как в Syron */
.rivax-gradient-line {
    height: 3px;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    --blur-intensity: 80px;
}

.rivax-gradient-line.colors-5 {
    background: linear-gradient(90deg, var(--color-01), var(--color-02), var(--color-03), var(--color-04), var(--color-05));
    position: relative;
}

.rivax-gradient-line.colors-5:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    filter: blur(var(--blur-intensity));
    opacity: 0.4;
    z-index: -1;
}

/* Позиционирование для поисковой формы */
.search-form {
    position: relative;
    padding-top: 30px;
}

.search-form .rivax-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Компактные фильтры под формой поиска */
.filter-form {
    margin: 20px 0;
}

.compact-filters {
    padding: 15px;
    border-radius: 8px;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-row select,
.filter-row input {
    flex: 1;
    min-width: 100px;
    max-width: 180px;
    height: 36px;
    padding: 0 10px;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: var(--text-color);
}

/* Стили для карточек товаров с градиентами */
.product-image-container {
    width: 100%;
    height: 200px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.product-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: 200% 200%;
    animation: gradient-animation 5s ease infinite alternate;
}

.product-image-icon {
    font-size: 48px;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Классы для разных градиентов */
.gradient-color-1 {
    background: var(--gradient-color-1);
}

.gradient-color-2 {
    background: var(--gradient-color-2);
}

.gradient-color-3 {
    background: var(--gradient-color-3);
}

.gradient-color-4 {
    background: var(--gradient-color-4);
}

.gradient-color-5 {
    background: var(--gradient-color-5);
}

.gradient-color-6 {
    background: var(--gradient-color-6);
}

.gradient-color-7 {
    background: var(--gradient-color-7);
}

.gradient-color-8 {
    background: var(--gradient-color-8);
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Удалить старые стили плейсхолдеров */
/* Стили для динамических градиентных плейсхолдеров */
.placeholder-color-1,
.placeholder-color-2,
.placeholder-color-3,
.placeholder-color-4,
.placeholder-color-5,
.placeholder-color-6 {
    display: none;
}

/* Стили для текстовых плейсхолдеров */
.text-placeholder {
    height: 1em;
    margin-bottom: 0.5em;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.08), rgba(0,0,0,0.06));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.text-placeholder.title {
    height: 1.2em;
    width: 85%;
}

.text-placeholder.price {
    height: 1.4em;
    width: 40%;
}

.text-placeholder.shipping {
    height: 0.9em;
    width: 65%;
}

.text-placeholder.seller {
    height: 0.8em;
    width: 75%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Стили для блока топовых категорий */
.top-categories-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

.top-categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    display: block;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        padding: 15px;
    }
    
    .category-icon {
        font-size: 32px;
        height: 60px;
    }
    
    .category-title {
        font-size: 16px;
    }
    
    .category-description {
        font-size: 12px;
    }
}

/* Стили для отладочной панели */
.debug-panel {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: monospace;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.debug-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #333;
    border-radius: 6px 6px 0 0;
}

.debug-header h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.debug-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 0 4px;
}

.debug-content {
    padding: 10px;
    overflow-y: auto;
    max-height: calc(80vh - 40px);
}

.debug-section {
    margin-bottom: 15px;
}

.debug-section h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #64B5F6;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
}

.debug-section pre {
    margin: 0;
    padding: 8px;
    background-color: #1e1e1e;
    border-radius: 4px;
    overflow-x: auto;
    color: #B2FF59;
    font-size: 12px;
    white-space: pre-wrap;
    word-break: break-all;
}

.debug-ajax-request {
    color: #FF9800 !important;
}

.debug-ebay-request {
    color: #03A9F4 !important;
}

.debug-ebay-response {
    color: #4CAF50 !important;
}

.debug-panel.collapsed .debug-content {
    display: none;
}

/* Адаптивность для отладочной панели */
@media (max-width: 768px) {
    .debug-panel {
        width: calc(100% - 20px);
        max-width: 400px;
    }
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.logo-accent {
    color: #e53935;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav li a:hover, 
.main-nav li.active a {
    color: #e53935;
}

.main-nav li.active a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e53935;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-container {
    padding: 1rem;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu li.active a {
    color: #e53935;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* General Layout Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
} 