#offer {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--golden-wheat-lightest);
    padding: .375rem;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08)
}

.offer-msg {
    font-size: .875rem;
    text-align: center;
    color: var(--text-dark)
}

.shop-card {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow .5s ease;
}

.shop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .1s ease;
}

.item-img-link {
    position: relative;
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: 100%;
}

.card-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    line-height: 1;
    max-height: 250px;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    line-height: 1;
    padding: 1rem;
    background-color: var(--sage-green-mid);
    color: var(--parchment-flour-light);
    text-align: left;
    transition: background-color .1s ease
}

.card-body {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 0;
    height: 100%;
}

.card-body button {
    margin-top: auto;
    margin-bottom: 0;
}

.card-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: .25rem;
}

.card-tag {
    background-color: var(--_tag-bg);
    color: var(--_tag-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid var(--_tag-border);
    font-weight: 500;
    z-index: 2;
    padding: .125rem .75rem;
    text-box-trim: trim-both;
    font-size: .75rem;
    user-select: none;
    border-radius: 4px;
    letter-spacing: 0.03em;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.card-tag.pickup {
    --_tag-bg: var(--warm-copper-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
}

.card-tag.market {
    --_tag-bg: var(--sage-green-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
}

.card-tag.event,
.card-tag.recipe {
    --_tag-bg: var(--rustic-brown-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
}

.card-tag.class,
.card-tag.digital {
    --_tag-bg: var(--deep-ink);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
}

.card-tag.merch {
    --_tag-bg: var(--sage-green-mid);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
}

.card-bottom h3 {
    font-family: var(--font-body);
    color: var(--parchment-flour-light);
    font-size: 1.375rem;
    margin-bottom: .125rem;
    font-weight: 700;
}

.price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--parchment-flour);
    margin: .25rem 0 .375rem;
}

.item-info.trunc p {
    font-size: .9375rem;
    color: var(--parchment-flour-light);
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.full-desc {
    display: flex;
    margin-top: .25rem;
    margin-bottom: 1rem;
}

.item-desc-link {
    font-size: .75rem;
    text-decoration: underline;
}

.item-h3-link,
.item-desc-link {
    color: #fff;
    transition: color .1s ease, text-decoration .1s ease;

}

.item-h3-link:hover,
.item-desc-link:hover {
    color: var(--golden-wheat-lighter);
}

.item-desc-link:hover {
    text-decoration: underline;
}

.item-info p:not(.item-info.trunc p) {
    font-size: .9375rem;
    color: var(--parchment-flour-light);
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.info-info {
    margin: .25rem 0 1rem;
}

.deals-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    width: 100%;
    justify-content: center;
    margin: 1.5rem auto 3rem;
}

select{
    padding: .5rem;
}

@media screen and (min-width: 769px) {
    #hero {
        padding: 3rem 0 2rem;
    }

    h1 {
        text-align: center;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {

    .offer-msg {
        text-wrap-style: balance;
    }


    #hero {
        padding-top: 7.5rem;
    }

    h1 {
        margin-bottom: 0;
    }

    .card-tag {
        padding: .25rem .75rem .125rem
    }

    .deals-grid {
        gap: 1.5rem .25rem;
        padding: 0;
        justify-content: space-evenly;
    }

        #nav-mobile {
        top: calc(var(--header-height) + 59.59px);
        }


}