body {
    background-color: white;
}

.search-bar-result {
    display: flex;
    /* Enable flexbox for layout */
    justify-content: space-between;
    /* Space elements evenly */
    align-items: center;
    /* Vertically center content */
    padding: 20px 80px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.search-bar-result h1 {
    margin: 0;
    font-size: 25px;
    text-transform: uppercase;
}

.search-bar-result p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.sorting-form {
    display: flex;
    align-items: center;
    /* Center the form content vertically */
}

.sorting-form label {
    margin-right: 20px;
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
    /* Prevent line break between words */
}

.sorting-form select {
    border: none;
    border-bottom: 2px solid #333;
    /* Underline for the dropdown */
    background-color: transparent;
    /* Transparent background */
    padding: 5px 0;
    /* Adjust padding for alignment */
    font-size: 1rem;
    /* Font size for text */
    color: #333;
    /* Text color */
    outline: none;
    /* Remove default focus outline */
    cursor: pointer;
    /* Pointer cursor on hover */
    appearance: none;
    /* Remove default dropdown arrow */
}

.sorting-form select:focus {
    border-bottom: 2px solid #919191;
    /* Highlight underline on focus */
}

.sorting-form select option {
    color: #333;
    /* Option text color */
    background-color: #fff;
    /* Option background */
}


/* Results Grid */
.results-grid {
    display: grid;
    gap: 20px;
}

/* No Results Message */
.no-results {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: 50px;
}

/* Collection Section */
.search-section {
    padding: 30px 78px;
    background-color: #fff;
    margin: 0 auto;
}

.search-section p {
    background-color: #fff;
    margin: 0 auto;
}

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

.pagination a {
    margin: 0 5px;
    padding: 10px 18px;
    background-color: white;
    border: 1px solid #000000;
    color: black;
    text-decoration: none;
    font-size: 20px;
}

.pagination a.active {
    background-color: black;
    color: white;
    font-weight: bold;
}

.pagination a:hover {
    background-color: #000;
    color: white;
}

.breadcrumb-image {
    position: relative;
    width: 100%;
    height: 50px;
    /* Adjust height as needed */
    background-image: url('/images/beagrumb.jpg');
    /* Replace with your image path */
    background-size: cover;
    /* Ensure the image covers the entire area */
    background-position: center;
    /* Center the image */
}

.breadcrumb-text {
    position: absolute;
    top: 175%;
    /* Vertically center the text */
    left: 75%;
    /* Position the text on the left */
    transform: translateY(-50%);
    /* Adjust vertical centering */
    color: black;
    /* Text color */
    font-size: 1.5rem;
    /* Adjust font size */
    max-width: 400px;
    /* Optional: set a max width */
}

.breadcrumb-text h1 {
    margin: 0;
    font-size: 2.2rem;
    text-align: left;
    font-weight: bold;
}

.breadcrumb-text p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #878787;
    transition: background-color 0.3s ease;
}

.breadcrumb-text p a {
    text-decoration: none;
    color: #727272;
    transition: background-color 0.3s ease;

}

.breadcrumb-text p a:hover {
    color: #000000;
    cursor: pointer;
}

/* Responsive Layout */
@media (max-width: 768px) {

    .breadcrumb-text {
        display: none;
    }

    .breadcrumb-image {
        display: none;
    }

    .search-bar-result {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }

    .sorting-options {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: left;
        /* Align content to the left */
        display: flex;
        /* Add flexbox for proper alignment */
        justify-content: flex-start;
        /* Ensure it aligns to the left */
    }

    .sorting-form {
        margin: 0;
        /* Remove any inherited margin */
    }

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

    .search-section {
        padding: 30px 20px;

    }

    .search-section p {
        padding: 0px 0px;
        background-color: #fff;
        margin: 0 auto;
    }
}

@media screen and (min-width: 769px) {
    .results-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}