/* ==========================================================================
   Our Ingredients — shop section
   ========================================================================== */

.our-ingredients {
    background-color: #f7f9fa;
    padding-block: 3.5rem 4rem;
}

.our-ingredients__header {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    text-align: center;
}

.our-ingredients__title {
    color: #1c1c1c;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.our-ingredients__title-accent {
    color: #c5933f;
}

.our-ingredients__subtitle {
    margin-top: 1rem;
    color: rgba(28, 28, 28, 0.62);
    font-size: 1rem;
    line-height: 1.6;
}

.our-ingredients__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.our-ingredients__card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
    overflow: hidden;
}

.our-ingredients__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.our-ingredients__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-ingredients__badge {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #c5933f;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.our-ingredients__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1rem;
    background-color: #faf6ee;
}

.our-ingredients__card-title {
    color: #1c1c1c;
    font-size: 0.8125rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
}

.our-ingredients__tagline {
    margin-top: 0.625rem;
    color: #c5933f;
    font-family: "Segoe Script", "Snell Roundhand", "Bradley Hand", cursive;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.35;
}

.our-ingredients__footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dotted rgba(197, 147, 63, 0.45);
}

.our-ingredients__icon {
    color: rgba(197, 147, 63, 0.55);
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 900px) {
    .our-ingredients__grid {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .our-ingredients {
        padding-block: 2.5rem 3rem;
    }

    .our-ingredients__header {
        margin-bottom: 2rem;
    }

    .our-ingredients__subtitle {
        font-size: 0.9375rem;
    }
}
