.gmc-md {
    --gmc-gold: #f3a000;
    --gmc-gold-soft: #fff5df;
    --gmc-ink: #202329;
    --gmc-text: #303238;
    --gmc-muted: #777b83;
    --gmc-line: #e3e5e8;
    --gmc-surface: #f7f8f9;
    --gmc-white: #ffffff;
    box-sizing: border-box;
    width: min(1760px, calc(100% - 36px));
    margin: 44px auto 80px;
    color: var(--gmc-text);
    font-family: inherit;
    line-height: 1.5;
}

.gmc-md *,
.gmc-md *::before,
.gmc-md *::after {
    box-sizing: border-box;
}

.gmc-md button,
.gmc-md input,
.gmc-md select,
.gmc-md textarea {
    font: inherit;
}

.gmc-md button {
    cursor: pointer;
}

.gmc-md [hidden] {
    display: none !important;
}

.gmc-md-home-nav {
    display: flex;
    justify-content: center;
    margin: 0 0 18px;
}

.gmc-md-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    min-height: 44px;
    border: 1px solid var(--gmc-gold);
    border-radius: 999px;
    padding: 10px 24px;
    background: var(--gmc-white);
    box-shadow: 0 8px 24px rgba(31, 35, 41, .08);
    color: var(--gmc-ink) !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gmc-md-home-link:hover,
.gmc-md-home-link:focus-visible {
    background: var(--gmc-gold);
    color: var(--gmc-ink) !important;
    box-shadow: 0 10px 28px rgba(243, 160, 0, .24);
    outline: none;
    transform: translateY(-1px);
}

.gmc-md-home-link span {
    font-size: 19px;
    line-height: 1;
}

.gmc-md-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 46px 50px;
    border: 1px solid var(--gmc-line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 18%, rgba(243, 160, 0, .18), transparent 28%),
        linear-gradient(120deg, #ffffff 0%, #fffaf0 100%);
    box-shadow: 0 18px 50px rgba(31, 35, 41, .07);
}

.gmc-md-hero::after {
    content: "";
    position: absolute;
    right: 48px;
    bottom: -54px;
    width: 300px;
    height: 150px;
    border: 18px solid rgba(32, 35, 41, .055);
    border-left: 0;
    border-radius: 0 26px 26px 0;
    transform: rotate(-8deg);
}

.gmc-md-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #9a6500;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}

.gmc-md-eyebrow::before {
    content: "";
    width: 8px;
    height: 22px;
    border-radius: 8px;
    background: var(--gmc-gold);
}

.gmc-md-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 0 12px;
    color: var(--gmc-ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.gmc-md-hero p {
    position: relative;
    z-index: 1;
    max-width: 830px;
    margin: 0;
    color: #666a72;
    font-size: 18px;
}

.gmc-md-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 30px;
}

.gmc-md-builder {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.gmc-md-builder > [data-step="1"] { order: 1; }
.gmc-md-builder > [data-step="2"] { order: 2; }
.gmc-md-builder > [data-step="3"] { order: 3; }
.gmc-md-builder > [data-step="4"] { order: 4; }
.gmc-md-builder > [data-step="5"] { order: 5; }
.gmc-md-builder > [data-step="6"] { order: 6; }
.gmc-md-builder > .gmc-md-project-save-step { order: 6; }
.gmc-md-builder > .gmc-md-step--quote { order: 7; }

.gmc-md-step,
.gmc-md-summary-sticky {
    border: 1px solid var(--gmc-line);
    border-radius: 20px;
    background: var(--gmc-white);
    box-shadow: 0 14px 38px rgba(31, 35, 41, .055);
}

.gmc-md-step {
    padding: 30px;
    scroll-margin-top: 130px;
}

.gmc-md-step-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.gmc-md-step-head > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--gmc-ink);
    color: #fff;
    font-weight: 800;
    box-shadow: inset 0 -4px 0 var(--gmc-gold);
}

.gmc-md-step h2,
.gmc-md-step h3,
.gmc-md-step p {
    margin-top: 0;
}

.gmc-md-step-head h2 {
    margin: 0 0 3px;
    color: var(--gmc-ink);
    font-size: 25px;
    line-height: 1.2;
}

.gmc-md-step-head p {
    margin: 0;
    color: var(--gmc-muted);
}

.gmc-md-label {
    margin: 22px 0 10px;
    color: var(--gmc-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gmc-md-choice-grid,
.gmc-md-shape-grid {
    display: grid;
    gap: 12px;
}

.gmc-md-choice-grid--system {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gmc-md-shape-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gmc-md-choice-grid button,
.gmc-md-shape-grid button {
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--gmc-line) !important;
    border-radius: 14px !important;
    outline: 0;
    background: #fff !important;
    color: var(--gmc-ink) !important;
    text-align: left;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.gmc-md-choice-grid--system button {
    display: flex;
    min-height: 282px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.gmc-md-system-media {
    display: flex;
    width: 100%;
    aspect-ratio: 1200 / 760;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    background: #fff;
}

.gmc-md-system-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
}

/* Trimless kaynak görselindeki alt-sol teknik ölçü çizimini karttan ayır. */
.gmc-md-choice-grid--system button[data-system-choice="trimless"] .gmc-md-system-media img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 48% 100%, 48% 76%, 0 76%);
}

/* Tasarım sayfasında tema ve çerez eklentilerinin sabit köşe düğmelerini kaldır. */
body.gmc-md-designer-page .cky-btn-revisit-wrapper,
body.gmc-md-designer-page .cky-revisit-bottom-left,
body.gmc-md-designer-page #cookie-law-info-again,
body.gmc-md-designer-page #scrollUp,
body.gmc-md-designer-page #scroll-top,
body.gmc-md-designer-page #ast-scroll-top,
body.gmc-md-designer-page #back-to-top,
body.gmc-md-designer-page #toTop,
body.gmc-md-designer-page .back-to-top,
body.gmc-md-designer-page .scroll-top,
body.gmc-md-designer-page .scroll-to-top,
body.gmc-md-designer-page .go-to-top,
body.gmc-md-designer-page .to-top,
body.gmc-md-designer-page .topbutton,
body.gmc-md-designer-page .wd-scroll-top,
body.gmc-md-designer-page .ct-back-to-top,
body.gmc-md-designer-page .ast-scroll-top-icon,
body.gmc-md-designer-page [class*="scroll-to-top"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.gmc-md-choice-grid--system button.is-active .gmc-md-system-media {
    border-color: rgba(255, 168, 0, .45);
}

.gmc-md-system-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.gmc-md-system-copy strong,
.gmc-md-system-copy small {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.gmc-md-system-copy strong {
    font-size: 16px;
    line-height: 1.3;
}

.gmc-md-system-copy small {
    font-size: 13px;
    line-height: 1.4;
}

.gmc-md-choice-grid button:hover,
.gmc-md-shape-grid button:hover {
    border-color: #ffc34d !important;
    transform: translateY(-2px);
}

.gmc-md-choice-grid button.is-active,
.gmc-md-shape-grid button.is-active {
    border-color: var(--gmc-gold) !important;
    background: var(--gmc-gold-soft) !important;
    box-shadow: inset 0 -4px 0 var(--gmc-gold), 0 10px 24px rgba(243, 160, 0, .12) !important;
}

.gmc-md-choice-grid strong,
.gmc-md-choice-grid small {
    display: block;
}

.gmc-md-choice-grid strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.gmc-md-choice-grid small {
    color: var(--gmc-muted);
}

.gmc-md-shape-grid button {
    text-align: center;
}

.gmc-md-shape-grid strong {
    display: block;
    margin-top: 7px;
    font-size: 13px;
}

.gmc-md-shape-icon {
    display: block;
    color: var(--gmc-gold);
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.gmc-md-layout-modes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 18px;
}

.gmc-md-layout-modes button {
    display: grid;
    gap: 4px;
    min-height: 72px;
    padding: 13px;
    border: 1px solid #d7dce1;
    border-radius: 12px;
    background: #fff;
    color: #17191c;
    text-align: left;
}

.gmc-md-layout-modes button small { color: #68717b; }
.gmc-md-layout-modes button.is-active { border-color: #f3a000; box-shadow: 0 0 0 2px rgba(243,160,0,.18); }

.gmc-md-smart-layout,
.gmc-md-free-layout {
    margin-top: 4px;
    padding: 16px;
    border: 1px solid #dfe3e7;
    border-radius: 14px;
    background: #f8f9fa;
}
.gmc-md-room-measurements { margin: 0 0 16px; padding: 14px; border: 1px solid #d9dee3; border-radius: 12px; background: #f8f9fa; }
.gmc-md-project-fields .gmc-md-room-measurements--compact { grid-column: 1 / -1; margin: 0; padding: 12px 14px; }
.gmc-md-room-measurements--compact .gmc-md-room-measurements__head small { font-size: 12px; }
.gmc-md-room-measurements--compact .gmc-md-room-actions { margin-top: 8px; }
.gmc-md-room-measurements--compact.is-disabled .gmc-md-room-measurements__fields { opacity: .45; }
.gmc-md-room-measurements__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.gmc-md-room-measurements__head div { display: grid; gap: 3px; }
.gmc-md-room-measurements__head small, .gmc-md-room-note { color: #68727d; }
.gmc-md-room-toggle { display: flex; align-items: center; gap: 7px; white-space: nowrap; font-weight: 700; }
.gmc-md-room-measurements__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) auto; gap: 10px; margin-top: 12px; }
.gmc-md-room-measurements__fields label { display: grid; gap: 6px; font-weight: 700; }
.gmc-md-room-measurements__fields span, .gmc-md-wall-distances span { display: flex; align-items: center; gap: 6px; }
.gmc-md-room-measurements__fields input, .gmc-md-wall-distances input { width: 100%; min-height: 42px; border: 1px solid #ccd2d8; border-radius: 8px; background: #fff; padding: 8px 10px; }
.gmc-md-room-note { margin: 10px 0 0; font-size: 13px; }
.gmc-md-room-area { display: grid; align-content: center; min-width: 112px; padding: 8px 14px; border-radius: 9px; background: #17191c; color: #fff; }
.gmc-md-room-area small { color: #f4c35b; }
.gmc-md-room-area strong { font-size: 21px; }
.gmc-md-room-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gmc-md-room-actions button, .gmc-md-wall-toggle { min-height: 42px; border: 1px solid #ccd2d8; border-radius: 8px; background: #fff; padding: 8px 13px; font-weight: 750; }
.gmc-md-room-actions button.is-active { border-color: #f3a000; background: #fff7e5; }
.gmc-md-wall-toggle { margin-top: 10px; border-color: #f3a000; }
.gmc-md-wall-distances { margin-top: 12px; padding: 12px; border: 1px solid #f3a000; border-radius: 10px; background: #fffaf0; }
.gmc-md-wall-distances > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.gmc-md-wall-distances label { display: grid; gap: 4px; font-size: 12px; font-weight: 700; }

.gmc-md-smart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gmc-md-smart-grid label { display: grid; gap: 6px; font-weight: 700; }
.gmc-md-smart-grid label span { display: flex; align-items: center; gap: 7px; }
.gmc-md-smart-grid input,
.gmc-md-smart-grid select,
.gmc-md-segment-row input { width: 100%; min-height: 43px; border: 1px solid #ccd2d8; border-radius: 8px; background: #fff; padding: 8px 10px; }
.gmc-md-smart-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gmc-md-smart-apply,
.gmc-md-smart-mirror { min-height: 44px; border-radius: 9px; padding: 10px 16px; font-weight: 800; }
.gmc-md-smart-apply { border: 0; background: #17191c; color: #fff; }
.gmc-md-smart-mirror { border: 1px solid #f3a000; background: #fff8e8; color: #17191c; }
.gmc-md-smart-feedback { margin: 10px 0 0; padding: 9px 11px; border-left: 3px solid #f3a000; background: #fff7e5; color: #4e4430; font-size: 13px; line-height: 1.4; }

.gmc-md-free-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.gmc-md-free-actions button { min-height: 42px; border: 1px solid #ccd2d8; border-radius: 8px; background: #fff; padding: 8px 11px; }
.gmc-md-free-actions button.is-active { border-color: #f3a000; background: #fff7e5; }
.gmc-md-free-actions button:disabled { opacity: .42; cursor: not-allowed; }
.gmc-md-junction-feedback { margin: 8px 0 10px; padding: 10px 13px; border: 1px solid #8bc8a5; border-radius: 9px; background: #edf9f2; color: #17643a; font-size: 14px; font-weight: 700; }
.gmc-md-junction-feedback.is-flex { border-color: #f3bd52; background: #fff7e5; color: #825300; }
.gmc-md-junction-feedback.is-straight { border-color: #9fc3e8; background: #eff7ff; color: #215a8c; }
.gmc-md-free-junction, .gmc-md-free-junction-label { pointer-events: none; }
.gmc-md-free-canvas { display: block; width: 100%; min-height: 270px; border: 1px solid #d9dee3; border-radius: 12px; background-color: #fff; background-image: linear-gradient(#edf0f2 1px, transparent 1px), linear-gradient(90deg, #edf0f2 1px, transparent 1px); background-size: 25px 25px; touch-action: none; }
.gmc-md-free-canvas:focus { outline: 2px solid rgba(243, 160, 0, .55); outline-offset: 2px; }
.gmc-md-free-canvas.is-room-scaled { background-image: none; }
.gmc-md-custom-segments { display: grid; gap: 8px; margin-top: 12px; }
.gmc-md-segment-row { display: grid; grid-template-columns: 1fr 120px auto; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid #e0e4e8; border-radius: 9px; background: #fff; }
.gmc-md-segment-row.is-selected { border-color: #f3a000; background: #fffaf0; }
.gmc-md-segment-row button { min-height: 38px; border: 1px solid #d5dade; border-radius: 7px; background: #fff; padding: 7px 10px; }
.gmc-md-segment-length { display: flex; align-items: center; gap: 6px; }
.gmc-md-segment-length b { color: #67717b; }

.gmc-md-dimensions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gmc-md-dimension > span:first-child {
    display: block;
    margin-bottom: 7px;
    color: var(--gmc-ink);
    font-weight: 700;
}

.gmc-md-dimension__input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--gmc-line);
    border-radius: 12px;
    background: #fff;
}

.gmc-md-dimension__input:focus-within {
    border-color: var(--gmc-gold);
    box-shadow: 0 0 0 3px rgba(243, 160, 0, .12);
}

.gmc-md-dimension input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 14px;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--gmc-ink);
    font-weight: 700;
}

.gmc-md-dimension__input strong {
    padding: 0 15px;
    color: var(--gmc-muted);
}

.gmc-md-help {
    margin: 14px 0 0 !important;
    padding: 12px 14px;
    border-left: 3px solid var(--gmc-gold);
    background: var(--gmc-gold-soft);
    color: #72551e;
    font-size: 13px;
}

.gmc-md-product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.gmc-md-product-filters button {
    min-height: 38px;
    padding: 7px 14px !important;
    border: 1px solid var(--gmc-line) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: var(--gmc-text) !important;
    box-shadow: none !important;
    font-size: 13px;
    font-weight: 700;
}

.gmc-md-product-filters button.is-active {
    border-color: var(--gmc-ink) !important;
    background: var(--gmc-ink) !important;
    color: #fff !important;
}

.gmc-md-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gmc-md-product {
    overflow: hidden;
    border: 1px solid var(--gmc-line);
    border-radius: 15px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gmc-md-product:focus-within,
.gmc-md-product:hover {
    border-color: var(--gmc-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 35, 41, .08);
}

.gmc-md-product-image {
    display: grid;
    height: 158px;
    place-items: center;
    border-bottom: 1px solid #eceef0;
    background: #f8f8f7;
}

.gmc-md-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gmc-md-product-image > span {
    color: #d5d6d8;
    font-weight: 700;
    letter-spacing: .08em;
}

.gmc-md-product-body {
    padding: 15px;
}

.gmc-md-product-type {
    color: #9a6500;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gmc-md-product h3 {
    min-height: 44px;
    margin: 5px 0 10px;
    color: var(--gmc-ink);
    font-size: 16px;
    line-height: 1.35;
}

.gmc-md-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--gmc-muted);
    font-size: 12px;
}

.gmc-md-product-meta strong {
    color: var(--gmc-ink);
}

.gmc-md-quantity {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    overflow: hidden;
    height: 40px;
    border: 1px solid var(--gmc-line);
    border-radius: 10px;
}

.gmc-md-quantity button {
    display: grid;
    min-width: 0;
    padding: 0 !important;
    place-items: center;
    border: 0 !important;
    border-radius: 0 !important;
    background: #f2f3f4 !important;
    color: var(--gmc-ink) !important;
    box-shadow: none !important;
    font-size: 22px;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

/* Hızlı art arda dokunma ürün adedini artırır; mobil tarayıcı sayfayı yakınlaştırmaz. */
.gmc-md [data-qty-minus],
.gmc-md [data-qty-plus] {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent;
}

.gmc-md-quantity button:hover {
    background: var(--gmc-gold) !important;
}

.gmc-md-quantity input {
    width: 100%;
    min-width: 0;
    padding: 0 4px;
    border: 0 !important;
    outline: 0;
    background: #fff !important;
    box-shadow: none !important;
    color: var(--gmc-ink);
    text-align: center;
    font-weight: 800;
    appearance: textfield;
}

.gmc-md-quantity input::-webkit-inner-spin-button,
.gmc-md-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.gmc-md-driver-row {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch;
    gap: 14px;
}

.gmc-md-project-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gmc-md-project-fields label {
    display: grid;
    gap: 7px;
    color: var(--gmc-ink);
    font-size: 12px;
    font-weight: 800;
}

.gmc-md-project-fields input,
.gmc-md-project-fields select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--gmc-line);
    border-radius: 10px;
    background: #fff;
    color: var(--gmc-ink);
}

.gmc-md-project-fields select {
    padding: 0 38px 0 12px;
    cursor: pointer;
}

/* Bazı WordPress temaları bütün select elemanlarını özel açılır menüye
 * dönüştürürken yerel alanı gizliyor. Oda seçimi tasarım akışının zorunlu
 * başlangıcı olduğu için bu alan tema kurallarından bağımsız tutulur. */
.gmc-md .gmc-md-project-fields .gmc-md-room-field {
    display: grid !important;
    visibility: visible !important;
    overflow: visible !important;
    min-width: 0 !important;
    opacity: 1 !important;
}

.gmc-md .gmc-md-project-fields select.gmc-md-room-select {
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0 38px 0 12px !important;
    clip: auto !important;
    clip-path: none !important;
    border: 1px solid var(--gmc-line) !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    color: var(--gmc-ink) !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
}

.gmc-md-project-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.gmc-md-project-add {
    min-height: 46px;
    border: 0 !important;
    border-radius: 11px !important;
    background: var(--gmc-gold) !important;
    color: #161719 !important;
    font-weight: 900 !important;
}

.gmc-md-project-actions > span {
    color: #217a42;
    font-size: 12px;
    font-weight: 800;
}

.gmc-md-project-top-feedback {
    margin: 16px 0 0;
    padding: 11px 13px;
    border-left: 4px solid #217a42;
    border-radius: 8px;
    background: #eef9f2;
    color: #176435;
    font-size: 13px;
    font-weight: 800;
}

.gmc-md-project-save-step {
    display: grid;
    gap: 18px;
    border: 2px solid #f4a300;
    background: linear-gradient(135deg, #fffaf0 0%, #fff 72%);
}

.gmc-md-project-save-copy h2 {
    margin: 5px 0 6px;
    color: var(--gmc-ink);
    font-size: 25px;
}

.gmc-md-project-save-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--gmc-muted);
    line-height: 1.55;
}

.gmc-md-project-save-step .gmc-md-project-actions {
    display: grid;
    margin-top: 0;
}

.gmc-md-project-save-step .gmc-md-project-add {
    width: 100%;
    min-height: 56px;
    padding: 12px 18px !important;
    font-size: 17px !important;
}

.gmc-md-project-summary {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid #e3d4b6;
    border-radius: 13px;
    background: #fffaf0;
}

.gmc-md-project-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.gmc-md-project-stats > div {
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 9px;
    background: #fff;
}

.gmc-md-project-stats small { color: var(--gmc-muted); font-size: 9px; }
.gmc-md-project-stats strong { color: var(--gmc-ink); font-size: 15px; }
.gmc-md-project-lines { display: grid; gap: 9px; margin-top: 12px; }

.gmc-md-project-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid var(--gmc-line);
    border-radius: 10px;
    background: #fff;
}

.gmc-md-project-line-copy { display: grid; gap: 3px; }
.gmc-md-project-line-copy strong { color: var(--gmc-ink); font-size: 13px; }
.gmc-md-project-line-copy span { color: var(--gmc-muted); font-size: 10px; }
.gmc-md-project-line-buttons { display: flex; gap: 6px; }
.gmc-md-project-line-buttons button { min-height: 32px; padding: 5px 9px !important; border-radius: 8px !important; font-size: 10px !important; }
.gmc-md-project-remove { color: #a62929 !important; }

.gmc-md-driver-recommendation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    padding: 18px;
    border: 1px solid #f4c568;
    border-radius: 13px;
    background: var(--gmc-gold-soft);
}

.gmc-md-driver-recommendation small {
    color: #856021;
}

.gmc-md-driver-recommendation strong {
    color: var(--gmc-ink);
    font-size: 21px;
}

.gmc-md-driver-recommendation span {
    margin-top: 5px;
    color: #b2212b;
    font-size: 12px;
}

.gmc-md-driver-row > label,
.gmc-md-form > label,
.gmc-md-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--gmc-ink);
    font-size: 13px;
    font-weight: 700;
}

.gmc-md-driver-row > label {
    justify-content: center;
}

.gmc-md select,
.gmc-md-form input,
.gmc-md-form textarea {
    width: 100%;
    border: 1px solid var(--gmc-line) !important;
    border-radius: 11px !important;
    outline: 0;
    background: #fff !important;
    color: var(--gmc-text) !important;
    box-shadow: none !important;
}

.gmc-md select,
.gmc-md-form input {
    height: 50px;
    padding: 0 13px;
}

.gmc-md-form textarea {
    min-height: 120px;
    padding: 13px;
    resize: vertical;
}

.gmc-md select:focus,
.gmc-md-form input:focus,
.gmc-md-form textarea:focus {
    border-color: var(--gmc-gold) !important;
    box-shadow: 0 0 0 3px rgba(243, 160, 0, .12) !important;
}

.gmc-md-step--quote {
    border-top: 4px solid var(--gmc-gold);
}

.gmc-md-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.gmc-md-consent {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 9px !important;
    margin: 16px 0;
    color: var(--gmc-muted) !important;
    font-weight: 500 !important;
}

.gmc-md-consent input {
    width: 20px !important;
    height: 20px !important;
    margin: 1px 0 0;
    accent-color: var(--gmc-gold);
}

.gmc-md-consent > span {
    min-width: 0;
    line-height: 1.45;
}

.gmc-md .gmc-md-form .gmc-md-consent > span > .gmc-md-consent-error {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 7px 0 0 !important;
    padding: 8px 10px !important;
    border-left: 3px solid #b71c1c;
    border-radius: 5px;
    background: #fff3f3;
    color: #b71c1c !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

.gmc-md .gmc-md-delivery {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 18px 0 16px;
    padding: 0;
    border: 0;
}

.gmc-md-delivery legend {
    margin-bottom: 9px;
    color: var(--gmc-ink);
    font-size: 14px;
    font-weight: 800;
}

.gmc-md .gmc-md-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.gmc-md .gmc-md-delivery-grid > label {
    position: relative;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center;
    gap: 11px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 82px;
    margin: 0 !important;
    padding: 13px 15px;
    border: 1px solid var(--gmc-line);
    border-radius: 12px;
    background: #fff;
    color: var(--gmc-ink) !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: normal !important;
    text-align: left !important;
    white-space: normal !important;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gmc-md .gmc-md-delivery-grid > label:hover {
    border-color: var(--gmc-gold);
    transform: translateY(-1px);
}

.gmc-md .gmc-md-delivery-grid > label.is-active {
    border-color: var(--gmc-gold);
    background: var(--gmc-gold-soft);
    box-shadow: 0 8px 20px rgba(243, 160, 0, .13);
}

.gmc-md .gmc-md-delivery-grid input {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

.gmc-md-delivery-check {
    position: relative;
    display: grid !important;
    flex: 0 0 30px;
    place-items: center;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 50%;
    border: 2px solid #c8cbd0;
    background: #fff;
}

.gmc-md-delivery-check::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gmc-gold);
    content: '';
    opacity: 0;
    transform: scale(.55);
    transition: opacity .18s ease, transform .18s ease;
}

.gmc-md-delivery-grid label.is-active .gmc-md-delivery-check {
    border-color: var(--gmc-gold);
}

.gmc-md-delivery-grid label.is-active .gmc-md-delivery-check::after {
    opacity: 1;
    transform: scale(1);
}

.gmc-md-delivery-grid input:focus-visible + .gmc-md-delivery-check {
    outline: 3px solid rgba(243, 160, 0, .25);
    outline-offset: 3px;
}

.gmc-md-delivery-content {
    display: block !important;
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.gmc-md .gmc-md-delivery-content strong,
.gmc-md .gmc-md-delivery-content small {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    writing-mode: horizontal-tb !important;
}

.gmc-md .gmc-md-delivery-content strong {
    color: var(--gmc-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.gmc-md .gmc-md-delivery-content small {
    margin-top: 3px;
    color: var(--gmc-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}

.gmc-md-submit {
    width: 100%;
    min-height: 56px;
    padding: 13px 20px !important;
    border: 1px solid var(--gmc-gold) !important;
    border-radius: 11px !important;
    background: var(--gmc-gold) !important;
    color: #151515 !important;
    box-shadow: 0 12px 26px rgba(243, 160, 0, .22) !important;
    font-size: 16px;
    font-weight: 800;
}

.gmc-md-submit:hover {
    background: #ffb10e !important;
    transform: translateY(-1px);
}

.gmc-md-submit:disabled {
    cursor: wait;
    opacity: .7;
}

.gmc-md-whatsapp-note,
.gmc-md-delivery-note {
    margin: 10px 4px 0 !important;
    color: var(--gmc-muted);
    font-size: 11px;
    text-align: center;
}

.gmc-md-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.gmc-md-form-message {
    margin-top: 12px;
    padding: 0;
    border-radius: 10px;
    font-weight: 700;
}

.gmc-md-form-message.is-success,
.gmc-md-form-message.is-error {
    padding: 12px 14px;
}

.gmc-md-form-message.is-success {
    background: #eaf8ef;
    color: #176b37;
}

.gmc-md-form-message.is-error {
    background: #fff0f1;
    color: #a71d2a;
}

.gmc-md-form label.is-invalid input,
.gmc-md-form label.is-invalid textarea {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, .14) !important;
}

.gmc-md-form .gmc-md-consent.is-invalid {
    border-color: #c62828;
    background: #fff3f3;
}

.gmc-md-field-error {
    display: block;
    width: 100%;
    margin-top: 6px;
    color: #b71c1c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

@media (max-width: 820px) {
	.gmc-md-layout-modes,
	.gmc-md-smart-grid { grid-template-columns: 1fr; }
	.gmc-md-room-measurements__head { align-items: flex-start; flex-direction: column; }
	.gmc-md-room-measurements__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gmc-md-room-area { grid-column: 1 / -1; }
	.gmc-md-wall-distances > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gmc-md-segment-row { grid-template-columns: 1fr 92px auto; }
	/* Mobilde hiçbir alt öğe sayfa genişliğini büyütmesin. */
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
		overflow-x: clip;
	}

	.gmc-md {
		width: auto !important;
		max-width: calc(100vw - 12px) !important;
		margin-right: auto;
		margin-left: auto;
		overflow-x: hidden;
		overflow-x: clip;
	}

	.gmc-md-layout,
	.gmc-md-builder,
	.gmc-md-summary,
	.gmc-md-summary-sticky,
	.gmc-md-preview-stage,
	.gmc-md-3d-panel {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.gmc-md-step,
	.gmc-md-products,
	.gmc-md-product,
	.gmc-md-product-body,
	.gmc-md-choice-grid,
	.gmc-md-choice-grid button,
	.gmc-md-system-media,
	.gmc-md-preview-switch,
	.gmc-md-light-controls,
	.gmc-md-3d-panel canvas {
		max-width: 100%;
		min-width: 0;
	}

	.gmc-md-products,
	.gmc-md-choice-grid {
		width: 100%;
	}

    .gmc-md.has-mobile-form-error .gmc-md-summary.is-mobile-inline,
    .gmc-md.has-mobile-form-error .gmc-md-summary.is-mobile-inline .gmc-md-summary-sticky {
        position: relative !important;
        top: auto !important;
    }
}

.gmc-md-summary {
    min-width: 0;
}

.gmc-md-mobile-step-head,
.gmc-md-step-number--mobile {
    display: none;
}

.gmc-md-summary-sticky {
    position: sticky;
    top: 110px;
    overflow: hidden;
}

.gmc-md-summary-head {
    padding: 23px 26px;
    border-bottom: 3px solid var(--gmc-gold);
    background: var(--gmc-ink);
    color: #fff;
}

.gmc-md-summary-head span,
.gmc-md-summary-head strong {
    display: block;
}

.gmc-md-summary-head span {
    margin-bottom: 4px;
    color: #ffc65a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.gmc-md-summary-head strong {
    font-size: clamp(21px, 1.55vw, 27px);
}

.gmc-md-preview {
    display: block;
    width: 100%;
    height: auto;
    background: var(--gmc-surface);
}

.gmc-md-preview-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 9px;
    border-bottom: 1px solid var(--gmc-line);
    background: #fff;
}

.gmc-md-preview-switch button {
    min-height: 46px;
    padding: 7px 11px !important;
    border: 1px solid var(--gmc-line) !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: var(--gmc-text) !important;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: 800;
}

.gmc-md-preview-switch button span {
    margin-right: 4px;
    color: var(--gmc-gold);
    font-size: 17px;
    vertical-align: -1px;
}

.gmc-md-preview-switch button.is-active {
    border-color: var(--gmc-ink) !important;
    background: var(--gmc-ink) !important;
    color: #fff !important;
}

.gmc-md-light-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--gmc-line);
    background: #fbfbfc;
}

.gmc-md-light-control-group {
    min-width: 0;
}

.gmc-md-light-control-group > span {
    display: block;
    margin: 0 0 5px 2px;
    color: #70747b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gmc-md-light-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.gmc-md-light-buttons button {
    display: flex !important;
    min-width: 0;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 7px !important;
    border: 1px solid #dcdfe3 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #4f5359 !important;
    box-shadow: none !important;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.gmc-md-light-buttons button i {
    display: block;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border: 1px solid #a8abb0;
    border-radius: 50%;
    background: #d5d8dc;
}

.gmc-md-light-buttons button[data-light-power="on"] i,
.gmc-md-light-buttons button.is-3000k i {
    border-color: #f3a000;
    background: #ffd27a;
    box-shadow: 0 0 8px rgba(243, 160, 0, .58);
}

.gmc-md-light-buttons button.is-4000k i {
    border-color: #a8c7e8;
    background: #f3f8ff;
    box-shadow: 0 0 8px rgba(137, 188, 238, .55);
}

.gmc-md-light-buttons button.is-active {
    border-color: var(--gmc-gold) !important;
    background: var(--gmc-gold-soft) !important;
    color: var(--gmc-ink) !important;
    box-shadow: inset 0 -2px 0 var(--gmc-gold) !important;
}

.gmc-md-light-buttons button[data-light-power="off"].is-active i {
    border-color: #52565c;
    background: #25282d;
    box-shadow: none;
}

.gmc-md-preview-stage {
    position: relative;
    min-width: 0;
    background: var(--gmc-surface);
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.gmc-md-3d-panel {
    position: relative;
    width: 100%;
    height: clamp(520px, 43vw, 720px);
    min-height: 520px;
    overflow: hidden;
    background: #e9e6df;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 981px) {
    .gmc-md-summary {
        align-self: stretch;
        position: relative;
    }

    .gmc-md-summary-sticky {
        position: sticky !important;
        top: 92px;
        max-height: calc(100vh - 108px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-color: rgba(32, 35, 41, .28) transparent;
        scrollbar-width: thin;
    }

    body.admin-bar .gmc-md-summary-sticky {
        top: 50px;
        max-height: calc(100vh - 68px);
    }

    .gmc-md-summary-sticky::-webkit-scrollbar {
        width: 7px;
    }

    .gmc-md-summary-sticky::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(32, 35, 41, .24);
    }

    .gmc-md-3d-panel {
        height: clamp(440px, 56vh, 640px);
        min-height: 440px;
    }
}

.gmc-md-3d-panel canvas {
    display: block;
    width: 100%;
    height: 100%;
    outline: 0;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.gmc-md-preview-stage *,
.gmc-md-3d-panel * {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

.gmc-md-3d-panel canvas.is-fixture-hover {
	cursor: grab;
}

.gmc-md-3d-panel canvas.is-fixture-dragging {
	cursor: grabbing;
}

.gmc-md-3d-loading,
.gmc-md-3d-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    padding: 32px;
    background: linear-gradient(145deg, #f5f3ed, #e3ded4);
    color: #54575d;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.gmc-md-3d-loading span {
    width: 34px;
    height: 34px;
    margin: 0 auto 12px;
    border: 3px solid rgba(32, 35, 41, .15);
    border-top-color: var(--gmc-gold);
    border-radius: 50%;
    animation: gmc-md-spin .8s linear infinite;
}

.gmc-md-3d-controls {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 24px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 11px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 24px rgba(21, 24, 28, .12);
    backdrop-filter: blur(10px);
}

.gmc-md-3d-controls button {
    min-height: 31px;
    padding: 5px 9px !important;
    border: 1px solid #dbdce0 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: var(--gmc-ink) !important;
    box-shadow: none !important;
    font-size: 10px;
    font-weight: 800;
}

.gmc-md-3d-controls button:hover {
    border-color: var(--gmc-gold) !important;
    background: var(--gmc-gold-soft) !important;
}

.gmc-md-mobile-camera-controls {
    display: none;
}

.gmc-md-mobile-interaction-toggle {
    display: none;
}

.gmc-md-3d-save {
    position: absolute;
    z-index: 4;
    left: 12px;
    bottom: 52px;
    min-height: 38px;
    padding: 8px 13px !important;
    border: 1px solid var(--gmc-gold) !important;
    border-radius: 9px !important;
    background: var(--gmc-gold) !important;
    color: #17191c !important;
    box-shadow: 0 9px 24px rgba(23, 25, 28, .20) !important;
    font-size: 11px;
    font-weight: 900;
}

.gmc-md-3d-save span {
    margin-right: 5px;
    font-size: 17px;
    line-height: 1;
    vertical-align: -1px;
}

.gmc-md-3d-save:hover {
    background: #ffb10e !important;
    transform: translateY(-1px);
}

.gmc-md-3d-save:disabled {
    cursor: wait;
    opacity: .58;
}

.gmc-md-3d-hint {
    position: absolute;
    z-index: 5;
    right: 10px;
    bottom: 10px;
    left: 10px;
    margin: 0 !important;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(25, 28, 32, .92);
    color: #fff;
    box-shadow: 0 7px 20px rgba(17, 19, 22, .18);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    pointer-events: none;
	max-width: none;
	text-align: center;
}

.gmc-md-3d-hint span {
    margin: 0 4px;
    color: var(--gmc-gold);
}

@keyframes gmc-md-spin {
    to { transform: rotate(360deg); }
}

.gmc-md-svg-label,
.gmc-md-svg-help {
    fill: #7a7e84;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    paint-order: stroke;
    stroke: #f7f8f9;
    stroke-width: 4px;
}

.gmc-md-plan-fixture {
	cursor: grab;
	touch-action: none;
}

.gmc-md-fixture-hit-area {
	pointer-events: all;
}

.gmc-md-measure-label {
	fill: #30363d;
	font-size: 12px;
}

.gmc-md-cad-grid-minor { stroke: #e5e9ed; stroke-width: 1; }
.gmc-md-cad-grid-major { stroke: #d3d9df; stroke-width: 1.25; }
.gmc-md-cad-room-outline { fill: none; stroke: #5f6973; stroke-width: 2; }
.gmc-md-cad-room-label { fill: #5f6973; font: 700 12px Arial, sans-serif; paint-order: stroke; stroke: #f7f8f9; stroke-width: 4px; }
.gmc-md-dimension-extension { stroke: #aeb6bf; stroke-width: 1; stroke-dasharray: 3 3; }
.gmc-md-dimension-line { stroke: #f3a000; stroke-width: 1.5; }

.gmc-md-connector-marker {
	pointer-events: none;
}

.gmc-md-plan-fixture:hover {
	filter: drop-shadow(0 0 5px rgba(243, 160, 0, .72));
}

.gmc-md-plan-fixture.is-dragging {
	cursor: grabbing;
	filter: drop-shadow(0 0 8px rgba(243, 160, 0, .95));
}

.gmc-md-svg-help {
    fill: #9b9ea4;
    font-size: 13px;
    font-weight: 400;
}

.gmc-md-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--gmc-line);
    border-bottom: 1px solid var(--gmc-line);
}

.gmc-md-stats > div {
    min-width: 0;
    padding: 14px 17px;
    border-right: 1px solid var(--gmc-line);
    border-bottom: 1px solid var(--gmc-line);
}

.gmc-md-stats > div:nth-child(2n) {
    border-right: 0;
}

.gmc-md-stats > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.gmc-md-stats small,
.gmc-md-stats strong {
    display: block;
}

.gmc-md-stats small {
    color: var(--gmc-muted);
    font-size: 11px;
}

.gmc-md-stats strong {
    overflow: hidden;
    color: var(--gmc-ink);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gmc-md-bom {
    padding: 20px 22px 8px;
}

.gmc-md-bom h3 {
    margin: 0 0 12px;
    color: var(--gmc-ink);
    font-size: 17px;
}

.gmc-md-bom ul {
    display: grid;
    gap: 8px;
    max-height: 310px;
    margin: 0;
    padding: 0;
    overflow: auto;
    list-style: none;
}

.gmc-md-bom li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 9px 10px;
    border-radius: 9px;
    background: var(--gmc-surface);
    color: #4d5056;
    font-size: 12px;
}

.gmc-md-bom li strong {
    color: var(--gmc-ink);
}

.gmc-md-bom li small {
    color: #8c6a29;
    font-size: 10px;
    font-weight: 700;
}

.gmc-md-disclaimer {
    margin: 6px 22px 22px;
    padding: 11px 12px;
    border-left: 3px solid var(--gmc-gold);
    background: var(--gmc-gold-soft);
    color: #76633e;
    font-size: 11px;
}

@media (max-width: 980px) {
    .gmc-md-choice-grid--system {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gmc-md-layout {
        grid-template-columns: 1fr;
    }

    .gmc-md-summary {
        grid-row: 1;
    }

    .gmc-md-summary-sticky {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
    }

    .gmc-md-summary-head {
        grid-column: 1 / -1;
    }

    .gmc-md-preview-switch {
        grid-column: 1 / -1;
    }

    .gmc-md-light-controls {
        grid-column: 1 / -1;
    }

    .gmc-md-preview-stage {
        grid-row: 4 / span 3;
    }

    .gmc-md-stats {
        align-self: start;
    }

    .gmc-md-bom {
        min-width: 0;
    }

    .gmc-md-disclaimer {
        align-self: end;
    }
}

@media (max-width: 820px) {
	.gmc-md-step-number--desktop {
		display: none !important;
	}

	.gmc-md-step-number--mobile {
		display: grid;
	}

	.gmc-md-mobile-step-head {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		margin: 0;
		padding: 18px 18px 16px;
		border: 1px solid var(--gmc-line);
		border-radius: 15px;
		background: var(--gmc-white);
	}

	.gmc-md-builder > .gmc-md-mobile-summary-details {
		order: 6;
	}

	.gmc-md-builder > .gmc-md-project-save-step {
		order: 7;
	}

	.gmc-md-builder > .gmc-md-step--quote {
		order: 8;
	}

	.gmc-md-mobile-step-head > span {
		display: grid;
		flex: 0 0 46px;
		width: 46px;
		height: 46px;
		place-items: center;
		border-radius: 50%;
		background: var(--gmc-ink);
		box-shadow: 0 4px 0 var(--gmc-gold);
		color: var(--gmc-white);
		font-size: 18px;
		font-weight: 800;
	}

	.gmc-md-mobile-step-head h2 {
		margin: 0;
		font-size: 21px;
		line-height: 1.2;
	}

	.gmc-md-mobile-step-head p {
		margin: 5px 0 0;
		color: var(--gmc-muted);
		font-size: 13px;
		line-height: 1.4;
	}

    .gmc-md {
        width: min(100% - 22px, 1760px);
        margin-top: 24px;
    }

    .gmc-md-hero {
        padding: 34px 28px;
        border-radius: 18px;
    }

    .gmc-md-hero::after {
        display: none;
    }

    .gmc-md-hero p {
        font-size: 16px;
    }

    .gmc-md-step {
        padding: 22px;
    }

    .gmc-md-shape-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gmc-md-products {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gmc-md-summary.is-mobile-inline {
        display: block;
        position: sticky;
        z-index: 40;
        top: max(0px, env(safe-area-inset-top));
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-self: start;
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-summary-sticky {
        position: relative !important;
        z-index: auto;
        top: auto;
        display: block;
        width: 100%;
        max-width: 100%;
        max-height: min(84svh, 720px);
        overflow: hidden;
        border-color: rgba(255, 166, 0, .55);
        border-radius: 15px;
        box-shadow: 0 12px 30px rgba(17, 20, 24, .18);
        transition: border-color .18s ease, box-shadow .18s ease;
    }

    body.admin-bar .gmc-md-summary.is-mobile-inline {
        top: calc(46px + env(safe-area-inset-top));
    }

    .gmc-md-summary.is-mobile-preview-updated .gmc-md-summary-sticky {
        border-color: var(--gmc-gold);
        box-shadow: 0 18px 44px rgba(17, 20, 24, .25), 0 0 0 2px rgba(255, 166, 0, .18);
    }

    .gmc-md-mobile-summary-details {
        display: grid;
        gap: 12px;
        min-width: 0;
        border: 1px solid var(--gmc-line);
        border-radius: 15px;
        background: var(--gmc-white);
        box-shadow: 0 14px 38px rgba(31, 35, 41, .055);
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-summary-head {
        display: none;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-summary-head strong {
        font-size: 18px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-preview-switch {
        gap: 5px;
        padding: 5px 7px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-preview-switch button {
        min-height: 38px;
        padding: 5px 6px !important;
        font-size: 11px;
        line-height: 1.15;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-preview-switch button span {
        margin-right: 2px;
        font-size: 13px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-light-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 7px 9px 8px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-light-control-group > span {
        margin-bottom: 4px;
        font-size: 8px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-light-buttons {
        gap: 4px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-light-buttons button {
        min-height: 31px;
        padding: 4px 3px !important;
        font-size: 8px;
    }

    .gmc-md-summary.is-mobile-inline {
        grid-row: auto;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-panel {
        height: clamp(310px, 42svh, 390px);
        min-height: 310px;
        transition: height .22s ease;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-controls {
        top: 6px;
        left: 6px;
        gap: 3px;
        max-width: calc(100% - 12px);
        padding: 3px;
        border-radius: 7px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-controls button {
        min-height: 25px;
        padding: 3px 5px !important;
        border-radius: 5px !important;
        font-size: 8px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-save {
        bottom: 36px;
        left: 6px;
        min-height: 29px;
        padding: 4px 7px !important;
        border-radius: 6px !important;
        font-size: 7px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-save span {
        margin-right: 2px;
        font-size: 12px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-hint {
        left: auto;
        max-width: 55%;
        padding: 4px 6px;
        font-size: 6px;
        line-height: 1.2;
        text-align: right;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-mobile-interaction-toggle {
        position: absolute;
        z-index: 7;
        top: 6px;
        right: 6px;
        display: block;
        min-height: 25px;
        padding: 3px 6px !important;
        border: 1px solid var(--gmc-gold) !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, .92) !important;
        color: var(--gmc-ink) !important;
        font-size: 7px;
        font-weight: 900;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-panel.is-mobile-scroll-mode canvas {
        pointer-events: none !important;
        touch-action: pan-y !important;
        opacity: .92;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-panel.is-mobile-scroll-mode .gmc-md-mobile-interaction-toggle {
        background: var(--gmc-gold) !important;
    }
}

@media (max-width: 560px) {
    .gmc-md {
        width: auto !important;
        max-width: calc(100vw - 8px) !important;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 46px;
    }

    .gmc-md-hero {
        padding: 28px 21px;
    }

    .gmc-md-hero h1 {
        font-size: 36px;
    }

    .gmc-md-step {
        padding: 19px 16px;
        border-radius: 15px;
    }

    .gmc-md-step-head {
        gap: 11px;
    }

    .gmc-md-step-head > span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .gmc-md-step-head h2 {
        font-size: 21px;
    }

    .gmc-md-choice-grid--system,
    .gmc-md-driver-row,
    .gmc-md-form-grid,
    .gmc-md-dimensions,
    .gmc-md-delivery-grid {
        grid-template-columns: 1fr;
    }

    .gmc-md-project-fields { grid-template-columns: 1fr; }
    .gmc-md-project-actions { align-items: stretch; flex-direction: column; }
    .gmc-md-project-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gmc-md-project-line { grid-template-columns: 1fr; }
    .gmc-md-project-line-buttons { justify-content: stretch; }
    .gmc-md-project-line-buttons button { flex: 1; }

    .gmc-md-choice-grid--system button {
        min-height: 0;
        padding: 12px;
    }

    .gmc-md-system-media {
        max-height: 190px;
    }

    .gmc-md-shape-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gmc-md-products {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .gmc-md-product {
        display: grid;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 104px minmax(0, 1fr);
        min-height: 132px;
    }

    .gmc-md-product-image {
        height: 100%;
        min-height: 132px;
        border-right: 1px solid #eceef0;
        border-bottom: 0;
    }

    .gmc-md-product-body {
        display: grid;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-content: center;
        gap: 5px;
        padding: 10px;
    }

    .gmc-md-product-type {
        font-size: 8px;
    }

    .gmc-md-product h3 {
        margin-bottom: 1px;
        font-size: 15px;
        line-height: 1.2;
    }

    .gmc-md-product-meta {
        margin-bottom: 3px;
        font-size: 10px;
    }

    .gmc-md-quantity {
        grid-template-columns: 44px minmax(44px, 1fr) 44px;
        min-height: 44px;
    }

    .gmc-md-quantity button {
        min-height: 44px;
        font-size: 23px;
    }

    .gmc-md-quantity input {
        min-height: 44px;
        font-size: 17px;
    }

    .gmc-md-product h3 {
        min-height: 0;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-panel {
        height: clamp(300px, 40svh, 370px);
        min-height: 300px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-save {
        bottom: 34px;
        left: 6px;
        min-height: 28px;
        padding: 3px 6px !important;
        font-size: 6.5px;
    }

    .gmc-md-summary.is-mobile-inline .gmc-md-3d-hint {
        right: 8px;
        bottom: 8px;
        left: auto;
        display: block;
        max-width: 55%;
        padding: 4px 5px;
        font-size: 6px;
        line-height: 1.2;
    }

    .gmc-md-bom li {
        grid-template-columns: auto 1fr;
    }

    .gmc-md-bom li small {
        grid-column: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gmc-md *,
    .gmc-md *::before,
    .gmc-md *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

.gmc-md-preview-switch:has([data-preview-mode="ceiling"]) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gmc-md-ceiling-panel {
    position: relative;
    overflow: visible;
    background: #15171a;
}

.gmc-md-ceiling-stage {
    position: relative;
    width: 100%;
    height: clamp(520px, 64vh, 780px);
    min-height: 430px;
    overflow: hidden;
    background: #15171a;
    touch-action: none;
}

.gmc-md-ceiling-stage canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    cursor: grab;
    touch-action: none;
}

.gmc-md-ceiling-photo {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #15171a;
    visibility: visible;
    opacity: 1;
}

.gmc-md-ceiling-panel[hidden],
.gmc-md-preview-panel[hidden] {
    display: none !important;
}

.gmc-md-ceiling-empty {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 28px;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #25292f, #121416);
}

.gmc-md-ceiling-empty span { color: #c7cbd0; font-size: 13px; }
.gmc-md-own-ceiling-overlay { z-index: 8; }
.gmc-md-own-ceiling-toolbar { z-index: 9; }
.gmc-md-ceiling-upload,
.gmc-md-ceiling-toolbar button {
    border: 1px solid #f4a300;
    border-radius: 10px;
    padding: 10px 13px;
    color: #17191c;
    font-weight: 800;
    background: #ffb000;
    cursor: pointer;
}
.gmc-md-ceiling-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gmc-md-ceiling-toolbar {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    padding: 8px;
    border-radius: 0;
    background: #17191c;
    backdrop-filter: blur(8px);
}
.gmc-md-ceiling-toolbar label { color: #fff; font-size: 11px; font-weight: 700; }
.gmc-md-ceiling-toolbar input { width: 52px; margin-left: 4px; padding: 7px 5px; border: 1px solid #666; border-radius: 7px; color: #fff; background: #292c31; }
.gmc-md-ceiling-toolbar button { padding: 7px 9px; font-size: 10px; }
.gmc-md-ceiling-help { position: absolute; z-index: 4; right: 12px; bottom: 10px; left: 12px; margin: 0; padding: 8px 10px; border-radius: 9px; color: #fff; font-size: 11px; text-align: center; background: rgba(0,0,0,.72); }

@media (max-width: 560px) {
    .gmc-md-preview-switch:has([data-preview-mode="ceiling"]) { gap: 5px; }
    .gmc-md-preview-switch [data-preview-mode="ceiling"] { font-size: 10px; padding-inline: 5px; }
    .gmc-md-ceiling-stage,
    .gmc-md-ceiling-stage canvas {
        height: clamp(280px, 40svh, 350px);
        min-height: 280px;
    }
    .gmc-md-ceiling-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 6px;
        padding: 7px;
        border-radius: 11px;
    }
    .gmc-md-ceiling-toolbar label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
        padding: 4px 7px;
        border-radius: 7px;
        white-space: nowrap;
        background: rgba(255,255,255,.07);
    }
    .gmc-md-ceiling-toolbar input {
        width: 58px;
        min-width: 0;
        margin-left: 6px;
        padding: 6px 4px;
        text-align: center;
    }
    .gmc-md-ceiling-toolbar button {
        width: 100%;
        min-height: 36px;
        padding: 7px 8px;
        font-size: 10px;
        line-height: 1.15;
    }
    .gmc-md-ceiling-help { bottom: 8px; font-size: 10px; }
}

/* v3.9.24 - mobile 3D touch ergonomics */
.gmc-md-mobile-touch-hint { display: none; }
@media (max-width: 820px), (pointer: coarse) {
    .gmc-md-3d-panel {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .gmc-md-3d-panel canvas {
        touch-action: none !important;
        overscroll-behavior: contain;
        -webkit-user-drag: none;
    }
    .gmc-md-mobile-touch-hint { display: inline; }
    .gmc-md-desktop-touch-hint { display: none; }
}

/* MasiaLux Email Provider Modal (consistent with product-detail.html) */
.masia-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masia-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.masia-modal-content {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    width: 92%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
}

.masia-modal-overlay.active .masia-modal-content {
    transform: translateY(0);
}

.masia-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.masia-modal-close:hover {
    color: #ffffff;
}

.masia-email-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.masia-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    box-sizing: border-box;
}

.masia-gmail-btn {
    background: #ea4335;
}
.masia-gmail-btn:hover {
    background: #d93025;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.35);
}

.masia-outlook-btn {
    background: #0078d4;
}
.masia-outlook-btn:hover {
    background: #106ebe;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.35);
}

.masia-yahoo-btn {
    background: #6001d2;
}
.masia-yahoo-btn:hover {
    background: #5000b8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(96, 1, 210, 0.35);
}

.masia-default-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f8fafc !important;
}
.masia-default-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.masia-copy-btn {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24 !important;
}
.masia-copy-btn:hover {
    background: rgba(245, 158, 11, 0.22);
    border-color: #f59e0b;
    transform: translateY(-1px);
}

.masia-modal-divider {
    margin: 0.35rem 0;
    color: #64748b;
    font-size: 0.85rem;
    position: relative;
    font-weight: 500;
}
