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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #d4d4d4;
    color: #222;
}

a {
    text-decoration: none;
}

/* ===== TOP NAV ===== */
.top-nav {
    background: #0a0a0a;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-nav .nav-logo {
    height: 90px;
}

.top-nav > .nav-inner > ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.top-nav ul {
    list-style: none;
}

.top-nav ul li a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.top-nav ul li a:hover,
.top-nav ul li a.active {
    color: #a855f7;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7rem;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 200;
    flex-direction: column;
    gap: 0;
}

.has-dropdown:hover > .dropdown {
    display: flex;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
    background: #1a1a1a;
    color: #a855f7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('Images/wheelie-banner.png') center/cover no-repeat;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.page-header h1 span {
    color: #8b2fc9;
}

.page-header p {
    font-size: 1.2rem;
    color: #F18DEB;
    font-style: italic;
}

.page-header .divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8b2fc9, #32E0F4);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== HERO (homepage) ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/wheelie-banner.png') center/cover no-repeat;
    text-align: center;
    padding: 60px 20px;
}

.hero .logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
    color: #8b2fc9;
}

.hero .tagline {
    font-size: 1.3rem;
    color: #c4c4cc;
    font-style: italic;
    margin-bottom: 20px;
}

.hero .divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8b2fc9, #32E0F4);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.hero .description {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.9;
    letter-spacing: 0.5px;
    max-width: 650px;
    margin: 0 auto;
}

.bolt-accent {
    color: #8b2fc9;
    font-size: 1.4rem;
}

/* ===== TIKTOK SECTION ===== */
.tiktok-section {
    background: #f0f0f0;
    text-align: center;
    padding: 50px 20px;
}

.tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.tiktok-link:hover {
    opacity: 0.85;
}

.tiktok-icon {
    width: 28px;
    height: 28px;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-container blockquote {
    max-width: 100%;
    width: 100%;
}

/* ===== BIKE CATEGORIES ===== */
.bike-categories {
    background: #f0f0f0;
    padding: 60px 20px 0;
}

.bike-categories-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bike-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.bike-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px 14px;
    background: #fff;
    border-radius: 10px;
    width: 130px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #333;
    border: 2px solid transparent;
}

.bike-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(50, 224, 244, 0.2);
    border-color: #32E0F4;
}

.bike-icon {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.bike-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bike-card span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

@media (max-width: 600px) {
    .bike-grid {
        gap: 10px;
    }

    .bike-card {
        width: calc(33.33% - 8px);
        min-width: 90px;
        padding: 14px 8px 10px;
    }

    .bike-icon {
        width: 94px;
        height: 94px;
    }

    .bike-card span {
        font-size: 0.68rem;
    }
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 10px;
}

.section-title span {
    color: #8b2fc9;
}

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

/* ===== CATEGORIES ===== */
.categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

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

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    color: #222;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(50, 224, 244, 0.2);
}

.category-card .card-img {
    width: 100%;
    height: 220px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
}

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

.category-card .card-body {
    padding: 20px;
}

.category-card .card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
}

.category-card .card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
    background: #f0f0f0;
    padding: 60px 20px;
}

.products-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card .product-img {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #bbb;
    overflow: hidden;
}

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

.product-card .product-info {
    padding: 15px;
    text-align: left;
}

.product-card .product-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.product-card .product-info .product-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-card .product-info .price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #8b2fc9;
}

.product-card .product-info .price-note {
    font-size: 0.8rem;
    color: #999;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    background: #f0f0f0;
    padding: 60px 20px;
}

.product-detail-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-detail-img {
    flex: 1;
    min-width: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.product-detail-img img.main-product-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.2s;
}

.product-detail-img img:not(.thumb):not(.main-product-img) {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px;
}

.product-detail-info {
    flex: 1;
    min-width: 0;
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-info h1 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 12px;
}

.product-detail-info .detail-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8b2fc9;
    margin-bottom: 6px;
}

.product-detail-info .detail-price-note {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.product-detail-info .detail-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail-info .detail-select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 16px;
    background: #fafafa;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.product-detail-info .detail-select:focus {
    border-color: #a855f7;
}

.product-detail-info .buy-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
}

.detail-upload-zone {
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 16px;
    transition: border-color 0.2s, background 0.2s;
    background: #fafafa;
}

.detail-upload-zone:hover {
    border-color: #F18DEB;
    background: #fef0fd;
}

.detail-upload-zone span {
    font-size: 0.85rem;
    color: #888;
}

.detail-file-name {
    font-size: 0.8rem;
    color: #32E0F4;
    margin-top: 6px;
    font-weight: 600;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.product-thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    background: #fafafa;
    transition: all 0.2s;
}

.product-thumbs .thumb:hover {
    border-color: #32E0F4;
    background: #f0fcff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 224, 244, 0.2);
}

.product-thumbs .thumb.active {
    border-color: #8b2fc9;
    background: #f3e8ff;
    box-shadow: 0 2px 8px rgba(139, 47, 201, 0.2);
}

/* Image Zoom Lightbox */
.img-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: zoom-out;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.img-lightbox.active {
    display: flex;
}

.img-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.img-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
    border: none;
}

.img-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.img-lightbox .lightbox-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.img-lightbox .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.img-lightbox .lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.img-lightbox .lightbox-prev {
    left: 20px;
}

.img-lightbox .lightbox-next {
    right: 20px;
}

@media (max-width: 600px) {
    .img-lightbox .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .img-lightbox .lightbox-prev {
        left: 10px;
    }

    .img-lightbox .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .product-detail-inner {
        flex-direction: column;
    }

    .product-detail-img {
        padding: 20px;
    }

    .product-detail-info {
        padding: 0 24px 30px;
    }

    .product-detail-info h1 {
        font-size: 1.3rem;
    }

    .product-detail-info .detail-price {
        font-size: 1.5rem;
    }
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background: #f0f0f0;
    padding: 60px 20px;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #222;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fafafa;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #32E0F4;
    background: #fff;
}

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

@media (max-width: 600px) {
    .contact-inner {
        padding: 24px 18px;
    }
}

/* ===== SNIPCART BUTTONS ===== */
.buy-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #8b2fc9, #a855f7);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    font-family: inherit;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #a855f7, #32E0F4);
    transform: scale(1.03);
}

.cart-btn {
    background: linear-gradient(135deg, #8b2fc9, #32E0F4);
    padding: 8px 16px !important;
    border-radius: 4px;
    color: #fff !important;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cart-btn:hover {
    opacity: 0.85;
    color: #fff !important;
}

.btn-shop {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 50px;
    background: linear-gradient(135deg, #8b2fc9, #32E0F4);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.btn-shop:hover {
    opacity: 0.85;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 50px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #32E0F4;
}

.footer-col .footer-logo {
    height: 45px;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    color: #999;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #32E0F4;
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    border-image: linear-gradient(90deg, #8b2fc9, #32E0F4, #F18DEB) 1;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 600px) {
    .top-nav > .nav-inner > ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0a;
        padding: 20px;
        gap: 15px;
    }

    .top-nav > .nav-inner > ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .has-dropdown > a::after {
        content: ' ▾';
    }

    .dropdown {
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 5px 0 0 15px;
        min-width: 0;
    }

    .has-dropdown:hover > .dropdown {
        display: none;
    }

    .has-dropdown.open > .dropdown {
        display: flex;
    }

    .hero h1,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
