body {
    font-family: Arial, sans-serif
}

ul {
    list-style: none
}

ul li {
    border: 1px solid #ddd;
    margin-bottom: 10px
}

h3 {
    margin: 0 0 10px
}

.search-bar input {
    margin-right: 10px;
    width: 300px
}

.search-bar button {
    background-color: #007bff;
    padding: 10px
}

.search-bar button:hover {
    background-color: #0056b3
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0
}

.pagination button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin: 5px;
    padding: 10px 15px;
    transition: background-color .3s
}

.pagination button:hover {
    background-color: #dcdcdc
}

.pagination button.active {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff
}

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

.welcome-page {
    background: url("../media/background.0b517d3d9f6ef382ec27.png") no-repeat 50% fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    height: 100vh;
    justify-content: space-between;
    position: relative
}

.welcome-page:before {
    background-color: #00000080;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.search-button,
.welcome-page h1,
.welcome-page h2,
.welcome-page p {
    position: relative;
    text-align: center;
    z-index: 2
}

.welcome-content {
    margin-top: 100px;
    text-align: center
}

h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px
}

p {
    font-size: 18px;
    margin-bottom: 40px
}

.search-button {
    background-color: #0056b3;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 6px #0000001a;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: background-color .3s ease
}

.search-button:hover {
    background-color: #00408a
}

.header {
    top: 0
}

.footer,
.header {
    background-color: #001a33;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1000
}

.footer {
    padding: 10px
}

.header {
    font-size: 24px
}

.footer,
.header {
    padding: 20px
}

.home-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.main-content {
    flex: 1 1;
    margin-bottom: 40px;
    margin-top: 20px;
    padding: 20px
}

.filters {
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 2px 5px #0000001a;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px
}

.filters label {
    color: #036;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 700
}

.filters input,
.filters select {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
    padding: 8px 10px
}

.reset-filters-btn {
    background-color: #005bb5;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px
}

.reset-filters-btn:hover {
    background-color: #036
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.search-bar input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 50%
}

.search-bar button {
    background-color: #005bb5;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
    padding: 10px 15px
}

.search-bar button:hover {
    background-color: #036
}

ul {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    list-style-type: none;
    padding: 0
}

ul li {
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px #0000001a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px
}

ul li img {
    height: auto;
    margin-bottom: 10px;
    width: 200px
}

.see-details-btn {
    background-color: #005bb5;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px 15px;
    text-align: center;
    width: 100%
}

.see-details-btn:hover {
    background-color: #036
}

.pagination {
    margin-top: 20px;
    text-align: center
}

.pagination button {
    background-color: #005bb5;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin: 0 5px;
    padding: 8px 12px
}

.pagination button.active,
.pagination button:hover {
    background-color: #036
}

@media (max-width:768px) {
    .filters {
        flex-direction: column;
        gap: 15px
    }

    ul {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr))
    }

    ul li img {
        width: 140px
    }

    .search-bar input {
        width: 80%
    }

    .pagination button {
        padding: 6px 10px
    }
}

.header {
    box-shadow: 0 2px 5px #0000001a;
    margin: 0
}

.footer,
.header {
    background-color: #036;
    color: #fff;
    padding: 10px 0;
    position: relative;
    text-align: center;
    width: 100%
}

.footer {
    bottom: 0
}

.shoe-details-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.shoe-details-content {
    flex: 1 1;
    margin-bottom: 40px;
    margin-top: 20px;
    padding: 20px;
    text-align: center
}

.main-shoe-image img {
    cursor: pointer;
    margin-bottom: 20px;
    width: 300px
}

.additional-images {
    margin-top: 20px
}

.additional-images img {
    cursor: pointer;
    margin: 5px;
    width: 120px
}

.modal {
    background: #000c;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%
}

.modal,
.modal-content {
    align-items: center;
    display: flex;
    justify-content: center
}

.modal-content {
    max-height: 90%;
    max-width: 90%;
    position: relative
}

.modal-content img {
    height: auto;
    max-height: 80vh;
    width: 600px
}

.arrow {
    color: #000;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    -webkit-user-select: none;
    user-select: none
}

.arrow-left {
    left: 10px
}

.arrow-right,
.close {
    right: 10px
}

.close {
    color: #000;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    top: 10px
}

.back-to-search-btn {
    background-color: #036;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px
}

.back-to-search-btn:hover {
    background-color: #005bb5
}

.shoe-story {
    text-align: center
}

.shoe-story,
.stockx-link {
    margin: 20px 0
}

.stockx-link a {
    color: #005bb5;
    text-decoration: none
}

.stockx-link a:hover {
    text-decoration: underline
}

/*# sourceMappingURL=main.fcdd184d.css.map*/