/* ============================================
   Product page styles — Phase 1
   1. Cooking Method Icon Row (below product image)
   2. Season & Steam "View All Recipes" CTA button
   ============================================ */

/* ------------------------------------------
   Season & Steam: View All Recipes CTA
   Matches a.button style from _repeatable-patterns.scss.
   Selector is scoped to this specific link href so it
   only applies on the Season & Steam product page.
   ------------------------------------------ */
.entry-content a[href^="http"][href*="season-steam-meal-inspiration"] {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    background: #415b01;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-bottom: none;
    margin-top: 20px;
    transition: all 1s ease;
}
.entry-content a[href^="http"][href*="season-steam-meal-inspiration"]:hover,
.entry-content a[href^="http"][href*="season-steam-meal-inspiration"]:focus {
    background: #678633;
    color: #fff;
    border-bottom: none;
}

/* ------------------------------------------
   Cooking Method Icon Row
   ------------------------------------------ */

.cooking-method-wrapper {
    margin-top: 20px;
}

.cooking-method-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0c4078;
    text-align: center;
    margin-bottom: 16px;
}

.cooking-method-thumbnails {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 16px;
}

.cooking-method-thumbnail {
    text-align: center;
    width: 90px;
}

.cooking-method-thumbnail img {
    display: block;
    margin: 0 auto 8px;
    width: 56px;
    height: 56px;
}

.cooking-method-thumbnail-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0c4078;
}
