
:root {
    --hmps-orange: #dc762c;
    --hmps-cream: #f1e9d9;
    --hmps-blue: #2e4896;
    --hmps-ink: #171717;
    --hmps-muted: #6f6f6f;
    --hmps-border: rgba(23, 23, 23, 0.12);
    --hmps-radius-xl: 28px;
    --hmps-radius-lg: 20px;
    --hmps-radius-md: 14px;
    --hmps-shadow: 0 20px 60px rgba(23, 23, 23, 0.09);
}

.hmps-page,
.hmps-carousel,
.hmps-grid {
    font-family: "Montserrat", Arial, sans-serif;
}

.hmps-page *,
.hmps-carousel *,
.hmps-grid * {
    box-sizing: border-box;
}

.hmps-page {
    color: var(--hmps-ink);
    background: #fff;
    padding: 36px 0 72px;
}

.hmps-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.hmps-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hmps-orange);
}

.hmps-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--hmps-muted);
}

.hmps-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.hmps-breadcrumb a:hover {
    color: var(--hmps-blue);
}

.hmps-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--hmps-radius-xl);
    background:
        linear-gradient(rgba(46,72,150,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,72,150,0.055) 1px, transparent 1px),
        var(--hmps-cream);
    background-size: 38px 38px;
    box-shadow: var(--hmps-shadow);
}

.hmps-product-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 72px);
}

.hmps-product-hero h1,
.hmps-archive-header h1,
.hmps-panel h2,
.hmps-related h2,
.hmps-card h3 {
    font-family: "Bangers", Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hmps-product-hero h1 {
    margin: 0;
    font-size: clamp(56px, 7vw, 104px);
    line-height: 0.92;
    color: var(--hmps-blue);
}

.hmps-product-hero__lead {
    max-width: 650px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.65;
}

.hmps-ingredients {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 23, 23, 0.14);
}

.hmps-ingredients h2 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hmps-ingredients p {
    margin: 0;
    line-height: 1.7;
    color: #3f3f3f;
}

.hmps-product-hero__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 40px;
    background: radial-gradient(circle at 50% 46%, rgba(255,255,255,0.92), rgba(255,255,255,0) 66%);
}

.hmps-product-hero__image {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 28px 22px rgba(23,23,23,0.18));
}

.hmps-product-hero__placeholder,
.hmps-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 240px;
    color: rgba(23,23,23,0.45);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.hmps-rich-content {
    max-width: 900px;
    margin: 52px auto 0;
    font-size: 17px;
    line-height: 1.8;
}

.hmps-information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    margin-top: 56px;
}

.hmps-panel {
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid var(--hmps-border);
    border-radius: var(--hmps-radius-lg);
    background: #fff;
    box-shadow: 0 14px 44px rgba(23,23,23,0.055);
}

.hmps-panel--calorie {
    background:
        linear-gradient(rgba(220,118,44,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,118,44,0.055) 1px, transparent 1px),
        #fff;
    background-size: 32px 32px;
}

.hmps-panel__heading {
    margin-bottom: 26px;
}

.hmps-panel h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
    color: var(--hmps-blue);
}

.hmps-calculator__selectors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hmps-calculator label > span,
.hmps-calculator__extras h3 {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hmps-calculator select {
    width: 100%;
    min-height: 48px;
    padding: 0 40px 0 14px;
    border: 1px solid rgba(46,72,150,0.2);
    border-radius: 12px;
    background: #fff;
    color: var(--hmps-ink);
    font: inherit;
    font-weight: 700;
}

.hmps-calculator__extras {
    margin-top: 24px;
}

.hmps-calculator__extras h3 {
    margin: 0 0 10px;
}

.hmps-extra-option {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--hmps-border);
    cursor: pointer;
}

.hmps-extra-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--hmps-orange);
}

.hmps-extra-option span,
.hmps-extra-option strong {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.hmps-extra-option strong {
    color: var(--hmps-blue);
}

.hmps-calculator__result {
    margin-top: 28px;
    padding: 20px;
    border-radius: 16px;
    background: var(--hmps-blue);
    color: #fff;
}

.hmps-calculator__result > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.hmps-calculator__result > div + div {
    border-top: 1px solid rgba(255,255,255,0.16);
}

.hmps-calculator__total {
    margin-top: 6px;
    padding-top: 16px !important;
    font-size: 20px;
}

.hmps-calculator__total strong {
    font-size: 30px;
    color: #ffd59c;
}

.hmps-fine-print {
    margin: 18px 0 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--hmps-muted);
}

.hmps-allergen-list {
    display: grid;
    gap: 12px;
}

.hmps-allergen-item {
    overflow: hidden;
    border: 1px solid var(--hmps-border);
    border-radius: 16px;
    background: #fafafa;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hmps-allergen-item[open] {
    border-color: rgba(46, 72, 150, 0.34);
    background: #fff;
    box-shadow: 0 10px 28px rgba(46, 72, 150, 0.08);
}

.hmps-allergen-item summary {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
}

.hmps-allergen-item summary::-webkit-details-marker {
    display: none;
}

.hmps-allergen-item summary:focus-visible {
    outline: 3px solid var(--hmps-orange);
    outline-offset: -3px;
}

.hmps-allergen-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--hmps-cream);
}

.hmps-allergen-icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hmps-allergen-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
}

.hmps-allergen-summary strong {
    display: block;
    min-width: 120px;
    font-size: 14px;
    line-height: 1.35;
    color: var(--hmps-ink);
}

.hmps-allergen-status {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.hmps-allergen-status--contains {
    background: #ffe0d5;
    color: #8f2a06;
}

.hmps-allergen-status--may_contain {
    background: #fff0c2;
    color: #765500;
}

.hmps-allergen-status--free {
    background: #dff3e5;
    color: #1d6a38;
}

.hmps-allergen-toggle {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
}

.hmps-allergen-toggle::before,
.hmps-allergen-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--hmps-blue);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.hmps-allergen-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hmps-allergen-item[open] .hmps-allergen-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.hmps-allergen-description {
    padding: 0 18px 18px 86px;
}

.hmps-allergen-description::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 0 14px;
    background: var(--hmps-border);
}

.hmps-allergen-description p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #4f4f4f;
}

.hmps-allergen-notice {
    margin: 20px 0 0;
    color: var(--hmps-blue);
    font-size: 14px;
    line-height: 1.45;
    font-style: italic;
    font-weight: 800;
}

.hmps-empty-state {
    padding: 22px;
    border: 1px dashed rgba(23,23,23,0.2);
    border-radius: 14px;
    background: #fafafa;
    color: var(--hmps-muted);
    text-align: center;
}

.hmps-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.hmps-section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    color: var(--hmps-blue);
}

.hmps-section-heading a {
    color: var(--hmps-blue);
    font-weight: 800;
    text-decoration: none;
}

.hmps-related {
    margin-top: 64px;
}

.hmps-grid {
    display: grid;
    grid-template-columns: repeat(var(--hmps-columns, 3), minmax(0, 1fr));
    gap: 18px;
}

.hmps-card {
    min-width: 0;
}

.hmps-card__link {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: var(--hmps-card-bg);
    color: var(--hmps-card-text);
    text-decoration: none;
    isolation: isolate;
}

.hmps-card__grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.55) 1px, transparent 1px);
    background-size: 38px 38px;
}

.hmps-card__heading {
    position: absolute;
    z-index: 3;
    top: clamp(18px, 5.4%, 30px);
    right: clamp(18px, 5.4%, 30px);
    left: auto;
    display: flex;
    width: min(64%, 270px);
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.hmps-card__heading h3 {
    width: 100%;
    margin: 0;
    font-size: clamp(32px, 3.45vw, 58px);
    line-height: 0.88;
    text-align: right;
    text-transform: uppercase;
    color: inherit;
    text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}

.hmps-card__arrow {
    display: block;
    align-self: flex-start;
    width: clamp(42px, 15%, 62px);
    aspect-ratio: 1 / 1;
    margin-top: 4px;
    margin-left: 18%;
    background: currentColor;
    -webkit-mask-image: url("https://hmbrgr.com.tr/wp-content/uploads/2024/05/arrow-white.svg");
    mask-image: url("https://hmbrgr.com.tr/wp-content/uploads/2024/05/arrow-white.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.hmps-card__media {
    position: absolute;
    inset: 24% 4% 3%;
    display: grid;
    place-items: end center;
}

.hmps-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 220ms ease;
    filter: drop-shadow(0 16px 12px rgba(23,23,23,0.2));
}

.hmps-card__link:hover .hmps-card__media img,
.hmps-card__link:focus-visible .hmps-card__media img {
    transform: translateY(-5px) scale(1.025);
}

.hmps-card__link:focus-visible {
    outline: 3px solid #111;
    outline-offset: 4px;
}

.hmps-carousel {
    position: relative;
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 48px;
}

.hmps-carousel__viewport {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.hmps-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.hmps-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
}

.hmps-carousel .hmps-card {
    scroll-snap-align: start;
}

.hmps-carousel__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.hmps-carousel__arrow--prev {
    left: 0;
}

.hmps-carousel__arrow--next {
    right: 0;
}

.hmps-carousel__arrow:hover {
    transform: translateY(-50%) scale(1.06);
}

.hmps-archive-header {
    margin-bottom: 34px;
}

.hmps-archive-header h1 {
    margin: 0;
    font-size: clamp(58px, 8vw, 118px);
    line-height: 0.9;
    color: var(--hmps-blue);
}

.hmps-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.hmps-category-nav a {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid var(--hmps-border);
    border-radius: 999px;
    color: var(--hmps-ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.hmps-category-nav a:hover,
.hmps-category-nav a.is-active {
    border-color: var(--hmps-blue);
    background: var(--hmps-blue);
    color: #fff;
}

.hmps-pagination {
    margin-top: 36px;
}

.hmps-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hmps-pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--hmps-cream);
    color: var(--hmps-blue);
    font-weight: 800;
    text-decoration: none;
}

.hmps-pagination .page-numbers.current {
    background: var(--hmps-blue);
    color: #fff;
}

@media (max-width: 1024px) {
    .hmps-product-hero {
        grid-template-columns: 1fr;
    }

    .hmps-product-hero__media {
        min-height: 420px;
    }

    .hmps-information-grid {
        grid-template-columns: 1fr;
    }

    .hmps-carousel__track {
        grid-auto-columns: calc((100% - 16px) / 2);
    }

    .hmps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .hmps-page {
        padding-top: 20px;
    }

    .hmps-container {
        width: min(100% - 24px, 1240px);
    }

    .hmps-product-hero {
        min-height: 0;
        border-radius: 20px;
    }

    .hmps-product-hero__content {
        padding: 28px 22px;
    }

    .hmps-product-hero h1 {
        font-size: clamp(48px, 18vw, 76px);
    }

    .hmps-product-hero__media {
        min-height: 300px;
        padding: 22px;
    }

    .hmps-calculator__selectors {
        grid-template-columns: 1fr;
    }

    .hmps-grid {
        grid-template-columns: 1fr;
    }

    .hmps-carousel {
        width: 100%;
        padding: 0 14px;
    }

    .hmps-carousel__track {
        grid-auto-columns: 88%;
        gap: 12px;
    }

    .hmps-carousel__arrow {
        display: none;
    }

    .hmps-card__heading {
        top: 18px;
        right: 18px;
        width: 66%;
    }

    .hmps-card__heading h3 {
        font-size: clamp(34px, 12vw, 56px);
    }

    .hmps-card__arrow {
        width: 48px;
        margin-top: 2px;
        margin-left: 16%;
    }

    .hmps-allergen-item summary {
        grid-template-columns: 50px minmax(0, 1fr) 22px;
        gap: 10px;
        padding: 10px 12px;
    }

    .hmps-allergen-icon {
        width: 48px;
        height: 48px;
    }

    .hmps-allergen-icon img {
        width: 38px;
        height: 38px;
    }

    .hmps-allergen-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .hmps-allergen-summary strong {
        min-width: 0;
    }

    .hmps-allergen-description {
        padding: 0 14px 16px;
    }

    .hmps-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hmps-card__media img,
    .hmps-carousel__viewport {
        transition: none;
        scroll-behavior: auto;
    }
}



/* HMBRGR Product Suite 1.6.0 — Elementor/theme compatibility and title fitting */
.elementor-widget-hmbrgr_product_grid,
.elementor-widget-hmbrgr_product_carousel,
.elementor-widget-hmbrgr_product_grid > .elementor-widget-container,
.elementor-widget-hmbrgr_product_carousel > .elementor-widget-container {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    clear: both !important;
}

.elementor-widget-hmbrgr_product_grid > .elementor-widget-container::after,
.elementor-widget-hmbrgr_product_carousel > .elementor-widget-container::after {
    content: "" !important;
    display: block !important;
    clear: both !important;
}

.hmps-grid {
    position: relative !important;
    display: grid !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    align-items: stretch !important;
    isolation: isolate !important;
}

.hmps-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Padding-ratio fallback keeps every card in normal document flow.
   This prevents mobile theme footers from rising over Elementor grids. */
.hmps-card__link {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background-color: var(--hmps-card-bg) !important;
    color: var(--hmps-card-text) !important;
    text-decoration: none !important;
}

.hmps-card__link::before {
    content: "" !important;
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 100% !important;
    pointer-events: none !important;
}

.hmps-card__heading {
    top: clamp(16px, 5.2%, 28px) !important;
    right: clamp(16px, 5.2%, 28px) !important;
    left: auto !important;
    width: min(76%, 310px) !important;
    max-width: calc(100% - 32px) !important;
    min-width: 0 !important;
    overflow: visible !important;
}

.hmps-card__heading h3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: var(--hmps-card-text) !important;
    font-family: "Bangers", Impact, sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 0.9 !important;
    letter-spacing: 0.01em !important;
    text-align: right !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    transition: color 180ms ease !important;
}

.hmps-card__link:hover .hmps-card__heading h3,
.hmps-card__link:focus-visible .hmps-card__heading h3 {
    color: var(--hmps-card-hover-text, #dc762c) !important;
}

.hmps-card__arrow {
    flex: 0 0 auto !important;
    margin-top: 4px !important;
    pointer-events: none !important;
}

.hmps-product-hero__content {
    min-width: 0 !important;
    overflow: hidden !important;
}

.hmps-product-hero h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: var(--hmps-blue) !important;
    font-family: "Bangers", Impact, sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 0.92 !important;
    letter-spacing: 0.01em !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
}

@media (max-width: 680px) {
    .elementor-widget-hmbrgr_product_grid .hmps-grid,
    .elementor-widget-hmbrgr_product_carousel .hmps-carousel {
        margin-bottom: 38px !important;
    }

    .hmps-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .hmps-card__heading {
        top: 16px !important;
        right: 16px !important;
        width: 76% !important;
        max-width: calc(100% - 32px) !important;
    }

    .hmps-card__media {
        inset: 25% 4% 3% !important;
    }

    .hmps-product-hero__content {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}

/* Besin değerleri kaynak bağlantısı */
.hmps-page .hmps-nutrition-source {
    margin: 16px 0 0 !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(46, 72, 150, 0.18) !important;
    border-radius: 14px !important;
    background: rgba(46, 72, 150, 0.055) !important;
    color: var(--hmps-ink) !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
}

.hmps-page .hmps-nutrition-source a,
.hmps-page .hmps-nutrition-source a:visited {
    color: var(--hmps-blue) !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
}

.hmps-page .hmps-nutrition-source a:hover,
.hmps-page .hmps-nutrition-source a:focus-visible {
    color: var(--hmps-orange) !important;
}

/* HMBRGR Product Suite 1.6.0 - dinamik enerji varyasyonları */
.hmps-calculator__selectors {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
}

.hmps-calculator__selectors[hidden],
.hmps-calculator__selectors label[hidden] {
    display: none !important;
}

.hmps-page .hmps-product-note {
    margin: 12px 0 0 !important;
    padding: 12px 14px !important;
    border-left: 3px solid var(--hmps-orange) !important;
    background: rgba(220, 118, 44, 0.06) !important;
    color: #3f3f3f !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.65 !important;
}
