* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --accent-color: #ffae00;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-color: #f5f5f5;
    --text-muted: #aaaaaa;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--darker-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    color: var(--accent-color);
    font-size: 28px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.logo-text span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

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

nav ul li a:hover {
    color: var(--accent-color);
}

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

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    background-color: var(--accent-color);
    color: var(--darker-bg);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #e69d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 174, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--darker-bg);
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.auth-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-auth {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
}

.auth-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    border-bottom: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* User Profile */
.user-profile {
    display: none;
    align-items: center;
    gap: 10px;
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--darker-bg);
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.7);
}

.user-avatar:active {
    transform: scale(0.95);
}

.user-menu {
    position: relative;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: -10px;
    background-color: var(--card-bg);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #333;
    animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown.show {
    display: block;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background-color: var(--card-bg);
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    transform: rotate(45deg);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.2s;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background-color: #2a2a2a;
    color: var(--accent-color);
}

.user-dropdown a i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

/* Разделитель в меню */
.user-dropdown .divider {
    height: 1px;
    background-color: #333;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://sun9-83.userapi.com/Kp6fm4lF_c0rdzSkWdnwT3vbCyMzsSGclBWXOQ/TFXFixrxM68.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Brands Section */
.brands {
    padding: 100px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    padding: 30px 20px;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-logo {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.kayo-logo {
    color: #ff3e3e;
    text-shadow: 0 0 10px rgba(255, 62, 62, 0.5);
}

.ataki-logo {
    color: #3e7bff;
    text-shadow: 0 0 10px rgba(62, 123, 255, 0.5);
}

.gr-logo {
    color: #7bff3e;
    text-shadow: 0 0 10px rgba(123, 255, 62, 0.5);
}

.zontes-logo {
    color: #ffae00;
    text-shadow: 0 0 10px rgba(255, 174, 0, 0.5);
}

.groza-logo {
    color: #ae3eff;
    text-shadow: 0 0 10px rgba(174, 62, 255, 0.5);
}

.cyclone-logo {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.brand-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.brand-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Bikes Section */
.bikes {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bike-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.bike-card:hover {
    transform: translateY(-5px);
}

.bike-image {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.bike-info {
    padding: 20px;
}

.bike-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bike-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.bike-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    height: 400px;
    background-color: #333;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-detail i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Profile Page */
.profile-section {
    padding: 140px 0 60px;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--darker-bg);
    margin-right: 20px;
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: var(--text-muted);
}

.orders-section {
    margin-top: 40px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.orders-table th, .orders-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.orders-table th {
    background-color: var(--card-bg);
    font-weight: 600;
}

.order-status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background-color: #ffae00;
    color: var(--darker-bg);
}

.status-completed {
    background-color: #7bff3e;
    color: var(--darker-bg);
}

.status-cancelled {
    background-color: #ff3e3e;
    color: var(--text-color);
}

.no-orders {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

/* Admin Panel Styles */
.admin-section h2 {
    margin-bottom: 25px;
    color: var(--text-color);
}

.orders-table, .users-table, .reviews-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th, .orders-table td,
.users-table th, .users-table td,
.reviews-table th, .reviews-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.orders-table th,
.users-table th,
.reviews-table th {
    background-color: #2a2a2a;
    font-weight: 600;
    color: var(--accent-color);
}

.orders-table tr:hover,
.users-table tr:hover,
.reviews-table tr:hover {
    background-color: rgba(255, 174, 0, 0.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.model-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.model-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.model-info {
    padding: 20px;
}

.model-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.model-price {
    margin: 15px 0;
}

/* Product Page Styles */
.main-content {
    padding: 140px 0 60px;
}

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

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

.brand-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.model-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-image {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.model-info {
    padding: 20px;
}

.model-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.model-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.model-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-section {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
}

.cart-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

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

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
}

.checkout-form {
    margin-top: 30px;
}

.checkout-message {
    text-align: center;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 4px;
    margin-top: 20px;
    display: none;
}

.checkout-message.success {
    display: block;
    background-color: rgba(123, 255, 62, 0.2);
    border: 1px solid #7bff3e;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--accent-color);
    color: var(--darker-bg);
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px 0 0 4px;
    padding: 8px 12px;
    color: var(--text-color);
    width: 200px;
    font-size: 0.9rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-box button {
    background-color: var(--accent-color);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--darker-bg);
}

.search-box button:hover {
    background-color: #e69d00;
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--card-bg);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
    z-index: 1000;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s;
}

.search-result-item:hover {
    background-color: #2a2a2a;
}

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

.search-result-name {
    color: var(--text-color);
    font-weight: 500;
}

.search-result-price {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 8px;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--darker-bg);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.cart-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-cart {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-cart:hover {
    color: var(--accent-color);
}

.cart-content h2 {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

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

.cart-item-info h4 {
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.remove-from-cart {
    background: none;
    border: none;
    color: #ff3e3e;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
}

.remove-from-cart:hover {
    color: #ff6b6b;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.cart-total span {
    color: var(--accent-color);
}

/* Banners Section */
.banners {
    padding: 40px 0;
    background-color: var(--darker-bg);
}

.banners-slider {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 500px;
    color: var(--text-color);
    z-index: 1;
}

.banner-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--darker-bg);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.banner-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.banner-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #444;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-dot.active,
.banner-dot:hover {
    background-color: var(--accent-color);
}

/* Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    align-items: flex-end;
}

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

.filter-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-group select {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 0.95rem;
    min-width: 180px;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Bike Card Badges */
.bike-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--darker-bg);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bike-card {
    position: relative;
}

/* Bike Rating */
.bike-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.bike-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.bike-rating span {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 5px;
}

/* Old Price */
.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 10px;
}

/* Reviews Section */
.reviews-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.reviews-section h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.review {
    background-color: #2a2a2a;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.review:last-child {
    margin-bottom: 0;
}

.review-author {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.review-rating {
    margin-bottom: 8px;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.review p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    /* Mobile styles for new elements */
    .search-box input {
        width: 120px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .banners-slider {
        height: 300px;
    }

    .banner-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        width: 100%;
    }

    .filters .btn {
        width: 100%;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--text-color);
}

.breadcrumbs span {
    color: var(--text-color);
}

/* Bike Actions */
.bike-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.bike-actions .btn {
    flex: 1;
    text-align: center;
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
}