/* Motorcycle Grid */
.motorcycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.motorcycle-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.motorcycle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.motorcycle-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.motorcycle-card .price {
    padding: 0 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

.motorcycle-card .btn {
    display: block;
    margin: 1rem;
    padding: 0.8rem;
    text-align: center;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.motorcycle-card .btn:hover {
    background: #2980b9;
}

/* Motorcycle Detail */
.motorcycle-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.motorcycle-images {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.thumbnail:hover img {
    opacity: 0.8;
}

.motorcycle-info h1 {
    margin: 0 0 1rem;
    font-size: 2rem;
    color: #333;
}

.motorcycle-info .price {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.motorcycle-info .old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2rem;
}

.specifications {
    margin-bottom: 2rem;
}

.specifications h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.specifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specifications li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.specifications li:last-child {
    border-bottom: none;
}

.description {
    margin-bottom: 2rem;
}

.description h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.description p {
    line-height: 1.6;
    color: #666;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .motorcycle-detail {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail-images {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .thumbnail img {
        height: 60px;
    }
}

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

    .main-image {
        height: 250px;
    }
} 