#primary {
    max-width: 1440px;
    margin: auto;
    width: 100%;
    padding: 0 50px;
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
}

#primary .woocommerce-breadcrumb {
    padding: 0;
    margin-bottom: 40px;
}

.shop-wrapper {
    margin-bottom: 48px;
}

.shop-wrapper h1 {
    margin-bottom: 20px;
}

.shop-wrapper h1 span {
    color: var(--tiffany);
}

.shop-wrapper p {
    font-family: "Geist";
    font-size: 20px;
    color: #4B5563;
    max-width: 800px;
    line-height: 27px;
}

.results-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 10px;
}

.woocommerce-result-count {
    font-size: 16px;
    font-family: "Geist";
    color: #4B5563;
}

.wc-ordering-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-ordering-label {
    color: #374151;
    font-weight: 500;
}

.wc-ordering-select {
    font-family: "Geist";
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wc-ordering-select:hover {
    border-color: #9ca3af;
}

.wc-ordering-select:focus {
    outline: none;
    border-color: var(--tiffany);
    box-shadow: 0 0 0 2px var(--tiffany);
}

ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0;
    row-gap: 50px;
}

@media screen and (max-width: 1050px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    ul.products {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    #primary {
        padding: 0 20px;
        padding-top: 135px;
        padding-bottom: 50px;
    }

    #primary .woocommerce-breadcrumb,
    .shop-wrapper h1 {
        margin-bottom: 25px;
    }

    .shop-wrapper {
        margin-bottom: 40px;
    }

    .shop-wrapper p {
        font-size: 16px;
    }
}
