body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #330130;
    color: #222;
}

* {
    box-sizing: border-box;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid #ebebeb;
}

.header-left {
    display: flex;
    align-items: center;
    width: 33%;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 34%;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 33%;
}

.search-container {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.header-left h1 {
    margin: 0;
    font-size: 32px;
}

.header-center input {
    padding: 10px;
    width: 300px;
    border: 2px solid #000000;
    border-radius: 60px;
}

.header-center input {
    padding: 10px;
    width: 100%;
    border: 2px solid #000000;
    border-radius: 60px;
}

.header-right {
    gap: 4px;
}

.main-nav {
    background: #000000;
    padding: 12px;
    text-align: center;
}

.main-nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* banner */
.banner {
    width: 1000px;
    height: 100px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    background: rgb(83, 4, 50);
    position: relative;
    padding: 0;
}

.banner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollBanner 20s linear infinite;
}

.banner-track img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

main {
    padding: 20px;
}

section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.hero {
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #490246;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

button:hover {
    background: #005ecb;
}

footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-top: 1px solid #ddd;
}

/* singles page card grid */
.card-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    justify-items: center;

    padding: 20px;
}

.card-item {
    border: 1px solid #ddd;
    border-radius: 10px;

    padding: 15px;

    background: #fafafa;

    text-align: center;

    width: 220px;

    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card-item h3 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.card-item p {
    margin: 5px 0;
    font-size: 14px;
}

/* dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    color: white;
    padding: 10px;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    display: block;
    text-align: left;
    text-decoration: none;
    margin: 0;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    gap: 10px;
}

.logo img {
    height: 100px;
    width: auto;
}

form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}


.search-suggestions {
    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: white;

    border: 1px solid #ccc;

    border-radius: 5px;

    max-height: 300px;

    overflow-y: auto;

    z-index: 1000;

    display: none;

    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.search-suggestion-item {
    padding: 10px;

    cursor: pointer;

    border-bottom: 2px solid #eee;
}

.search-suggestion-item:hover {
    background: #f0f0f0;
}

.search-container {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.singles-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.filters-sidebar {
    width: 220px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    flex-shrink: 0;
}

.filters-sidebar h2 {
    margin-top: 0;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.singles-content {
    flex: 1;
}

.filter-box {
    display: none;
    margin-top: 15px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.filter-group:last-child {
    border-bottom: none;
}

.construction-gif-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.construction-gif {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
}

.side-gif {
    max-width: 220px;
}

.shopify-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.shopify-contact-list li {
    margin-bottom: 10px;
    font-size: 18px;
}