/* Product catalogue - Sutdiyari */

:root {
    --pm-primary: #ed2024;
    --pm-accent: #64c6c2;
    --pm-bg: #fff8f0;
}

/* clip keeps overflow out of sight without turning the section into a scroll
   container. overflow-x: hidden alone forces overflow-y to auto and flashes a
   scrollbar while images and fonts settle; clip does not. Both axes are clipped
   so a parent theme wrapper never sees the temporary height of entrance motion.
   The hidden line stays as the fallback for browsers without clip. */
.pm-root.pm-root.pm-page,
.pm-root.pm-root.pm-single,
.pm-root.pm-root.pm-category {
    color: #222;
    overflow: hidden;
    overflow: clip;
}

/* Room for a sticky theme header, set in Product Settings. */
.pm-root.pm-root.pm-page {
    padding-top: var(--pm-page-space-top, 0px);
    padding-bottom: var(--pm-page-space-bottom, 0px);
}

.pm-root.pm-root.pm-single {
    padding-top: var(--pm-single-space-top, 0px);
    padding-bottom: var(--pm-single-space-bottom, 0px);
}

@media (max-width: 768px) {
    .pm-root.pm-root.pm-page {
        padding-top: var(--pm-page-space-top-mobile, var(--pm-page-space-top, 0px));
    }

    .pm-root.pm-root.pm-single {
        padding-top: var(--pm-single-space-top-mobile, var(--pm-single-space-top, 0px));
    }
}

.pm-root.pm-root.pm-page *,
.pm-root.pm-root.pm-single *,
.pm-root.pm-root.pm-category * {
    box-sizing: border-box;
}

/* ===== ISOLATION =====
   Themes and page builders style bare elements, and those rules used to reach
   inside the catalogue. Everything below strips them back to a neutral state;
   the component rules that follow all carry a class and therefore win. */
.pm-root.pm-root button,
.pm-root.pm-root input[type="button"],
.pm-root.pm-root input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    outline: none;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    text-transform: none;
    text-decoration: none;
    text-shadow: none;
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: none;
}

.pm-root.pm-root a {
    color: inherit;
    background: none;
    box-shadow: none;
    text-decoration: none;
    text-transform: none;
}

.pm-root.pm-root ul,
.pm-root.pm-root ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pm-root.pm-root li {
    margin: 0;
    padding: 0;
    list-style: inherit;
}

.pm-root.pm-root p {
    margin: 0 0 1em;
    padding: 0;
    color: inherit;
    text-transform: none;
}

.pm-root.pm-root p:last-child {
    margin-bottom: 0;
}

.pm-root.pm-root h1,
.pm-root.pm-root h2,
.pm-root.pm-root h3,
.pm-root.pm-root h4,
.pm-root.pm-root h5,
.pm-root.pm-root h6 {
    margin: 0;
    padding: 0;
    color: inherit;
    text-transform: none;
    letter-spacing: normal;
}

.pm-root.pm-root h1::after,
.pm-root.pm-root h2::after,
.pm-root.pm-root h3::after,
.pm-root.pm-root h4::after,
.pm-root.pm-root h1::before,
.pm-root.pm-root h2::before,
.pm-root.pm-root h3::before,
.pm-root.pm-root h4::before {
    content: none;
}

.pm-root.pm-root img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.pm-root.pm-root table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    font-size: inherit;
}

.pm-root.pm-root th,
.pm-root.pm-root td {
    border: 0;
    background: none;
    text-align: left;
    text-transform: none;
}

.pm-root.pm-root strong,
.pm-root.pm-root b {
    color: inherit;
    font-weight: var(--pm-bold-weight, 700);
    font-synthesis-weight: auto;
}

.pm-root.pm-root .pm-accordion-body ul,
.pm-root.pm-root .pm-single-desc ul,
.pm-root.pm-root .pm-cat-text ul,
.pm-root.pm-root .pm-intro ul {
    margin: 0 0 1em;
    padding-left: 1.4em;
    list-style: disc outside;
}

.pm-root.pm-root .pm-accordion-body ol,
.pm-root.pm-root .pm-single-desc ol,
.pm-root.pm-root .pm-cat-text ol,
.pm-root.pm-root .pm-intro ol {
    margin: 0 0 1em;
    padding-left: 1.4em;
    list-style: decimal outside;
}

/* ===== HEADER IMAGE ===== */
.pm-root.pm-root .pm-header {
    position: relative;
    width: 100%;
    line-height: 0;
    transition: opacity .35s ease;
}

.pm-root.pm-root .pm-header img {
    width: 100%;
    height: auto;
    max-height: var(--pm-header-max-height, 620px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== CATEGORY FILTERS ===== */
.pm-root.pm-root .pm-filters {
    padding: 48px 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pm-root.pm-root .pm-filter {
    border: 2px solid #333;
    border-radius: 30px;
    padding: 12px 28px;
    background: transparent;
    cursor: pointer;
    font-family: var(--pm-filter-font, inherit);
    font-size: var(--pm-filter-size, 16px);
    font-weight: var(--pm-filter-weight, 600);
    line-height: var(--pm-filter-line, normal);
    color: #333;
    transition: all .25s ease;
    white-space: nowrap;
}

.pm-root.pm-root .pm-filter:hover {
    background: var(--pm-accent);
    color: #fff;
    border-color: var(--pm-accent);
}

.pm-root.pm-root .pm-filter.is-active {
    background: var(--pm-primary);
    color: #fff;
    border-color: var(--pm-primary);
}

.pm-root.pm-root .pm-view {
    position: relative;
    min-height: 200px;
}

.pm-root.pm-root.pm-page.is-loading .pm-view {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s ease;
}

.pm-root.pm-root.pm-page.is-loading .pm-filter {
    cursor: wait;
}

.pm-root.pm-root .pm-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 20px 0;
    text-align: center;
    line-height: var(--pm-body-line, 1.7);
    color: #555;
    font-family: var(--pm-body-font, inherit);
    font-size: var(--pm-body-size, inherit);
    font-weight: var(--pm-body-weight, inherit);
}

/* ===== PRODUCT GRID ===== */
.pm-root.pm-root .pm-products,
.pm-root.pm-root .pm-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.pm-root.pm-root .pm-products {
    padding: 40px 60px 80px;
}

.pm-root.pm-root .pm-row {
    --pm-row-cols: var(--pm-cols-desktop, 5);
    display: grid;
    grid-template-columns: repeat(var(--pm-row-cols), 1fr);
    justify-items: center;
    align-items: stretch;
    margin-bottom: 20px;
}

/* ===== PRODUCT CARD ===== */
.pm-root.pm-root .pm-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    padding: 10px 10px 18px;
}

.pm-root.pm-root .pm-card:hover,
.pm-root.pm-root .pm-card:focus {
    text-decoration: none;
    color: inherit;
}

.pm-root.pm-root .pm-card-overlay {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%) scale(.5);
    width: 82%;
    height: 250px;
    background-image: url('img/PremiumBrush.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.pm-root.pm-root .pm-card-media {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    justify-content: center;
    height: 260px;
    z-index: 1;
    padding: 10px 0;
}

.pm-root.pm-root .pm-card.is-short .pm-card-media {
    height: 200px;
}

.pm-root.pm-root .pm-card-media img {
    position: relative;
    z-index: 1;
    max-height: 230px;
    width: 70%;
    object-fit: contain;
    transition: all .3s ease-in-out;
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .08));
}

.pm-root.pm-root .pm-card.is-short .pm-card-media img {
    max-height: 170px;
}

.pm-root.pm-root .pm-card-info {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.pm-root.pm-root .pm-card-name {
    font-family: var(--pm-card-font, 'Revans', inherit);
    padding: 0 25px;
    font-size: var(--pm-card-size, 13px);
    font-weight: var(--pm-card-weight, 600);
    color: #000;
    line-height: var(--pm-card-line, 1.35);
    letter-spacing: .3px;
    transition: color .3s ease-in-out;
}

/* The weight row keeps its height whether or not a weight was entered, so the
   names of neighbouring products stay level. */
.pm-root.pm-root .pm-card-weight-wrap {
    position: relative;
    padding-top: 10px;
    min-height: calc(14px * 1.35 + 12px + 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-root.pm-root .pm-card-weight {
    display: inline-block;
    background: var(--pm-accent);
    color: #fff;
    padding: 6px 24px;
    border-radius: 20px;
    font-family: 'Revans', inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .5px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1025px) {
    .pm-root.pm-root .pm-card:hover .pm-card-overlay,
    .pm-root.pm-root .pm-card:focus-visible .pm-card-overlay {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    .pm-root.pm-root .pm-card:hover .pm-card-media img,
    .pm-root.pm-root .pm-card:focus-visible .pm-card-media img {
        transform: rotate(-9deg) scale(1.08);
    }

    .pm-root.pm-root .pm-card:hover .pm-card-name,
    .pm-root.pm-root .pm-card:focus-visible .pm-card-name {
        color: #fff;
    }
}

.pm-root.pm-root .pm-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777;
    font-size: 18px;
}

/* ===== SECTION TITLES ===== */
.pm-root.pm-root .pm-section-title {
    font-family: var(--pm-heading-font, inherit);
    font-size: var(--pm-heading-size, clamp(1.8rem, 3.4vw, 2.6rem));
    font-weight: var(--pm-heading-weight, 800);
    color: var(--pm-primary);
    text-align: center;
    margin: 0 0 32px;
    line-height: var(--pm-heading-line, 1.2);
}

/* ===== CATEGORY VIEW ===== */
.pm-root.pm-root .pm-category-content {
    animation: pm-fade-in .45s ease both;
}

/* Opacity only: a translateY entrance grew the shortcode by ~14px while it ran
   and theme/Elementor wrappers with overflow:auto flashed a scrollbar until the
   motion finished. */
@keyframes pm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pm-root.pm-root .pm-cat-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 20px 10px;
    text-align: center;
}

.pm-root.pm-root .pm-cat-heading {
    font-family: var(--pm-heading-font, inherit);
    font-size: var(--pm-heading-size, clamp(1.6rem, 3vw, 2.2rem));
    font-weight: var(--pm-heading-weight, 800);
    line-height: var(--pm-heading-line, normal);
    color: var(--pm-primary);
    margin: 0 0 18px;
}

.pm-root.pm-root .pm-cat-text {
    color: #555;
    line-height: var(--pm-body-line, 1.8);
    font-family: var(--pm-body-font, inherit);
    font-size: var(--pm-body-size, 15px);
    font-weight: var(--pm-body-weight, inherit);
}

.pm-root.pm-root .pm-cat-text p:last-child {
    margin-bottom: 0;
}

/* ===== RECIPE GRID (shared cards from Recipe Manager) ===== */
.pm-root.pm-root .pm-recipes {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px 80px;
}

.pm-root.pm-root .pm-recipe-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pm-root.pm-root .pm-recipe-grid .col-md-6 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.pm-root.pm-root .pm-recipe-grid .recipe-card-image {
    position: relative;
    overflow: hidden;
    padding: 5px;
}

/* The image keeps its own ratio, so it fills the card width edge to edge without
   letterboxing and without being cropped. */
.pm-root.pm-root .pm-recipe-grid .recipe-card-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .3s ease;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card:hover .recipe-card-img {
    transform: scale(1.05);
}

.pm-root.pm-root .pm-recipe-grid .recipe-plugin-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pm-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card-title {
    font-family: var(--rc-title-font, inherit);
    font-size: var(--rc-title-size, 1.15rem);
    font-weight: var(--rc-title-weight, 700);
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: var(--rc-title-line, 1.3);
}

.pm-root.pm-root .pm-recipe-grid .recipe-card-description {
    color: #666;
    font-family: var(--rc-body-font, inherit);
    font-size: var(--rc-body-size, 14px);
    font-weight: var(--rc-body-weight, inherit);
    line-height: var(--rc-body-line, 1.6);
    margin-bottom: 18px;
    flex-grow: 1;
}

.pm-root.pm-root .pm-recipe-grid .recipe-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 18px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.pm-root.pm-root .pm-recipe-grid .recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--rc-meta-font, inherit);
    font-size: var(--rc-meta-size, 12px);
    color: #666;
    font-weight: var(--rc-meta-weight, 500);
    line-height: var(--rc-meta-line, normal);
}

.pm-root.pm-root .pm-recipe-grid .recipe-meta-item i {
    color: var(--pm-primary);
    font-size: 14px;
}

.pm-root.pm-root .pm-recipe-grid .recipe-plugin-btn {
    background: var(--pm-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--rc-btn-font, inherit);
    font-weight: var(--rc-btn-weight, 600);
    font-size: var(--rc-btn-size, 14px);
    line-height: var(--rc-btn-line, normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s ease;
    margin-top: auto;
}

.pm-root.pm-root .pm-recipe-grid .recipe-plugin-btn:hover {
    filter: brightness(.92);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ===== SINGLE PRODUCT ===== */
.pm-root.pm-root .pm-single-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    background: #fff;
}

.pm-root.pm-root .pm-single-title {
    font-family: var(--pm-heading-font, inherit);
    font-size: var(--pm-heading-size, clamp(1.7rem, 3.6vw, 2.6rem));
    font-weight: var(--pm-heading-weight, 800);
    color: var(--pm-primary);
    text-align: center;
    margin: 48px 0 20px;
    line-height: var(--pm-heading-line, 1.25);
}

.pm-root.pm-root .pm-single-desc {
    color: #444;
    line-height: var(--pm-body-line, 1.7);
    font-family: var(--pm-body-font, inherit);
    font-size: var(--pm-body-size, 19px);
    font-weight: var(--pm-body-weight, inherit);
    margin: 40px 0 0;
}

/* Carousel */
.pm-root.pm-root .pm-carousel-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.pm-root.pm-root .pm-carousel {
    position: relative;
    width: 100%;
    height: 420px;
    margin-bottom: .5em;
}

.pm-root.pm-root .pm-carousel .carousel-feature {
    position: absolute;
    top: -1000px;
    left: -1000px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    background: transparent;
    overflow: hidden;
}

.pm-root.pm-root .pm-carousel .carousel-image {
    border: 0;
    display: block;
    object-fit: contain;
    max-width: none;
    max-height: none;
}

.pm-root.pm-root .pm-carousel-single {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 340px;
}

.pm-root.pm-root .pm-carousel-single img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Accordions */
.pm-root.pm-root .pm-accordions {
    margin: 48px 0 0;
}

.pm-root.pm-root .pm-accordion {
    border-bottom: 1px solid rgba(237, 32, 36, .25);
}

.pm-root.pm-root .pm-accordion:first-child {
    border-top: 1px solid rgba(237, 32, 36, .25);
}

.pm-root.pm-root .pm-accordion-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 4px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-primary);
    text-align: left;
}

.pm-root.pm-root .pm-accordion-head i {
    transition: transform .3s ease;
    font-size: 1rem;
    color: var(--pm-primary);
}

.pm-root.pm-root .pm-accordion.is-open .pm-accordion-head i {
    transform: rotate(180deg);
}

.pm-root.pm-root .pm-accordion-body {
    display: none;
    padding: 0 4px 24px;
    color: #555;
    line-height: var(--pm-body-line, 1.8);
    font-family: var(--pm-body-font, inherit);
    font-size: var(--pm-body-size, 15px);
    font-weight: var(--pm-body-weight, inherit);
}

.pm-root.pm-root .pm-accordion.is-open .pm-accordion-body {
    display: block;
}

.pm-root.pm-root .pm-nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.pm-root.pm-root .pm-nutrition-table th,
.pm-root.pm-root .pm-nutrition-table td {
    padding: 10px 4px;
    border-bottom: 1px solid #f0e8de;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.pm-root.pm-root .pm-nutrition-table td {
    text-align: right;
    padding-left: 16px;
    white-space: nowrap;
}

/* Related products slider */
.pm-root.pm-root .pm-related {
    padding: 40px 0 80px;
    position: relative;
}

.pm-root.pm-root .pm-related .pm-section-title {
    font-family: var(--pm-related-font, var(--pm-heading-font, inherit));
    font-size: var(--pm-related-size, var(--pm-heading-size, clamp(1.8rem, 3.4vw, 2.6rem)));
    font-weight: var(--pm-related-weight, var(--pm-heading-weight, 800));
    line-height: var(--pm-related-line, var(--pm-heading-line, 1.2));
}

.pm-root.pm-root .pm-related-track {
    --pm-related-cols: var(--pm-cols-desktop, 5);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 60px;
    scrollbar-width: none;
}

.pm-root.pm-root .pm-related-track::-webkit-scrollbar {
    display: none;
}

.pm-root.pm-root .pm-related-track .pm-card {
    flex: 0 0 calc(100% / var(--pm-related-cols));
    scroll-snap-align: start;
}

.pm-root.pm-root .pm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    background: none;
    color: var(--pm-primary);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
}

.pm-root.pm-root .pm-arrow:hover {
    opacity: .75;
}

.pm-root.pm-root .pm-arrow.pm-prev { left: 4px; }
.pm-root.pm-root .pm-arrow.pm-next { right: 4px; }

.pm-root.pm-root .pm-arrow.pm-prev:hover { transform: translateY(-50%) translateX(-3px); }
.pm-root.pm-root .pm-arrow.pm-next:hover { transform: translateY(-50%) translateX(3px); }

/* Recipe products chips (inside single recipe)
 * Borrows the stat pill palette from the recipe info card so the block reads
 * as part of it: same grey fill, same hairline border, same rhythm.
 */
.pm-root.pm-root.recipe-products {
    margin: 25px 0 0;
}

.pm-root.pm-root .recipe-products-title {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #8a94a0;
    margin: 0 0 24px 12px;
}

.pm-root.pm-root .recipe-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pm-root.pm-root .recipe-product-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    background: #f8f9fa;
    text-decoration: none;
    color: #2c3e50;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.pm-root.pm-root .recipe-product-chip:hover {
    border-color: #d6dbe0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    text-decoration: none;
    color: #2c3e50;
}

/* The media box hugs the artwork so a narrow package does not leave a dead
 * band between itself and the product name.
 */
.pm-root.pm-root .recipe-product-chip-media {
    flex: 0 0 auto;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pm-root.pm-root .recipe-product-chip-media img {
    height: 100%;
    width: auto;
    max-width: 92px;
    object-fit: contain;
    background: none;
}

.pm-root.pm-root .recipe-product-chip-icon {
    width: 68px;
    border-radius: 18px;
    background: var(--pm-accent, #64c6c2);
    color: #fff;
    font-size: 26px;
}

.pm-root.pm-root .recipe-product-chip-name {
    display: block;
}

/* A lone product gets the room to be read at a glance. The name wraps beside
 * the taller image so the pill does not stretch into an empty band.
 */
.pm-root.pm-root .recipe-products-list.is-single .recipe-product-chip {
    gap: 18px;
    padding: 16px 26px 16px 16px;
    border-radius: 22px;
}

.pm-root.pm-root .recipe-products-list.is-single .recipe-product-chip-media {
    height: 136px;
}

.pm-root.pm-root .recipe-products-list.is-single .recipe-product-chip-media img {
    max-width: 184px;
}

.pm-root.pm-root .recipe-products-list.is-single .recipe-product-chip-icon {
    width: 136px;
    font-size: 46px;
}

.pm-root.pm-root .recipe-products-list.is-single .recipe-product-chip-name {
    max-width: 180px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pm-root.pm-root .pm-row { --pm-row-cols: 3; }
    .pm-root.pm-root .pm-products { padding: 30px 30px 60px; }
    .pm-root.pm-root .pm-recipes { padding: 20px 30px 60px; }
    .pm-root.pm-root .pm-recipe-grid .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .pm-root.pm-root .pm-related-track { --pm-related-cols: 3; padding: 10px 30px; }
}

@media (max-width: 768px) {
    .pm-root.pm-root .pm-filters { padding: 30px 20px 10px; gap: 8px; }
    .pm-root.pm-root .pm-filter { padding: 10px 20px; font-size: var(--pm-filter-size, 14px); }
    .pm-root.pm-root .pm-row { --pm-row-cols: 2; }
    .pm-root.pm-root .pm-products { padding: 20px 16px 50px; }
    .pm-root.pm-root .pm-recipes { padding: 20px 16px 50px; }
    .pm-root.pm-root .pm-card-media { height: 200px; }
    .pm-root.pm-root .pm-card.is-short .pm-card-media { height: 160px; }
    .pm-root.pm-root .pm-carousel,
    .pm-root.pm-root .pm-carousel-single { height: 260px; }
    .pm-root.pm-root .pm-single-inner { padding: 0 20px; }
    .pm-root.pm-root .pm-single-desc { font-size: var(--pm-body-size, 17px); }
    .pm-root.pm-root .pm-accordion-head { font-size: 1.25rem; padding: 20px 4px; }
    .pm-root.pm-root .pm-related-track { --pm-related-cols: 2; padding: 10px 16px; }
    .pm-root.pm-root .pm-arrow { width: 38px; height: 38px; font-size: 18px; }
}

@media (max-width: 480px) {
    .pm-root.pm-root .pm-recipe-grid .col-md-6 { flex: 0 0 100%; max-width: 100%; }
}
