/* SHOP PAGE */

.shop-page {
    margin: 0;
    background-color: #0d0d0d;
    font-family: Arial, sans-serif;
}


/* MAIN PAGE BOX */

.shop-page .page-box {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: white;
}


/* HEADER */

.shop-page .page-header {
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 20px;
}

.shop-page .page-header h1 {
    margin: 0;
    font-size: 38px;
}

.shop-page .page-header a {
    color: white;
    text-decoration: none;
}

.shop-page .page-header a:hover {
    color: lightblue;
}


/* SMALL CLICKABLE IMAGE LINKS */

.shop-page .small-image-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.shop-page .small-image-link {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 110px;
    text-decoration: none;
    overflow: hidden;
    border: 2px; black;
    box-shadow: 0 0 8px black;
}

.shop-page .small-image-link img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    display: block;
}

.shop-page .small-image-link span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(246, 249, 250);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.shop-page .small-image-link:hover span {
    color: pink;
}

/* SHOP SECTION */

.shop-page .shop-section {
    padding: 25px;
}

.shop-page .shop-section h2 {
    color: darkgreen;
    font-size: 32px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.shop-page .shop-intro {
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
}


/* BIKE GRID */

.shop-page .bike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* BIKE BOX */

.shop-page .bike-box {
    background-color: #f7f7f7;
    border: 1px solid #dddddd;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}


/* BIKE IMAGE */

.shop-page .bike-box img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
}


/* BIKE BRAND */

.shop-page .bike-box h3 {
    color: darkgreen;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 6px;
}


/* BIKE MODEL */

.shop-page .bike-model {
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 8px;
}


/* BIKE PRICE */

.shop-page .bike-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
}


/* BOTTOM NAVIGATION */

.shop-page .bottom-nav {
    background-color: lightblue;
    text-align: center;
    padding: 20px;
    white-space: nowrap;
}

.shop-page .bottom-nav a {
    color: darkgreen;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 25px;
}

.shop-page .bottom-nav a:last-child {
    margin-right: 0;
}

.shop-page .bottom-nav a:hover {
    color: black;
}


/* FOOTER */

.shop-page .page-footer {
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 20px;
}

.shop-page .page-footer p {
    margin: 0;
}