 :root {
    --bg: #f3f3f4;
    --panel: #ffffff;
    --muted: #8d8f95;
    --text: #23262f;
    --line: #e7e7ea;
    --soft: #f5f5f7;
    --primary: #2492f2;
    --success: #59c98d;
    --shadow: 0 12px 40px rgba(14, 18, 28, .08);
    --danger: #e5484d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

.app {
    height: 100vh;
    display: grid;
    grid-template-rows: 92px 1fr 78px;
    gap: 12px;
    padding: 12px;
}

.topbar,
.footerbar {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    gap: 14px;
}

.brand {
    width: clamp(220px, 22vw, 330px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.brand::before,
.brand b,
.brand small {
    display: none;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.tool {
    min-width: 82px;
    height: 58px;
    border: 0;
    background: transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    color: #2f3137;
    transition: .2s ease;
}

.tool:hover,
.tool.active {
    background: #f0f1f4;
}

.tool i {
    font-size: 16px;
}

.tool span {
    font-size: 12px;
    color: #43464d;
}

.divider {
    width: 1px;
    height: 44px;
    background: var(--line);
    margin: 0 4px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.publish {
    height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    color: white;
    background: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.play-btn,
.zoom-chip {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #d7d9df;
    background: #fff;
    display: grid;
    place-items: center;
    color: #50545d;
}

.zoom-chip {
    width: auto;
    border: none;
    background: transparent;
    padding: 0 4px;
    font-size: 12px;
}

.workspace {
    min-height: 0;
    display: grid;
    grid-template-columns: 345px minmax(400px, 1fr) 335px;
    gap: 14px;
}

.panel {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    min-height: 0;
}

.left-panel,
.right-panel {
    padding: 22px;
    overflow: auto;
}

.left-panel h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 26px;
    position: relative;
    padding-left: 34px;
}

.left-panel h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 32px;
    border-radius: 5px;
    background: #87d59f;
}

.template-btn {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #84d99d, #51c59a);
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 18px;
}

.templates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.template {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s ease;
    background: #eef1f7;
    position: relative;
}

.template:hover,
.template.active {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.template img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.center-panel {
    display: block;
    padding: 0;
    overflow: auto;
    background: #f1f2f4;
    position: relative;
    overscroll-behavior: contain;
    scrollbar-gutter: stable both-edges;
}

.stage-shell {
    width: max-content;
    height: max-content;
    min-width: 100%;
    min-height: 100%;
    padding: 22px;
    box-sizing: border-box;
    display: grid;
    place-items: center;
}

.stage-frame {
    display: inline-flex;
    background: #eceff3;
    border-radius: 16px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .03);
}

.canvas-holder {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(24, 33, 53, .12);
    transform: none !important;
    transform-origin: top left;
}

.canvas-holder .canvas-container,
.canvas-holder .canvas-container canvas,
#canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}

.status-banner {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    max-width: 420px;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    font-size: 13px;
    line-height: 1.45;
    display: none;
}

.status-banner.info {
    background: #fff;
    color: #2f3137;
    border: 1px solid #e6e7eb;
}

.status-banner.error {
    background: #fff5f5;
    color: #7a1f25;
    border: 1px solid #efc5c9;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #8d9097;
}

.tab {
    border: 0;
    background: transparent;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: inherit;
}

.tab.active {
    color: #262934;
    border-color: #262934;
    font-weight: 600;
}

.icon-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.icon-btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: #40434a;
}

.icon-btn:hover {
    background: #f3f4f7;
}

.panel-body {
    display: none;
}

.panel-body.active {
    display: block;
}

.block {
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    margin-bottom: 18px;
}

.block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.form-row label {
    font-size: 13px;
    color: #4c4f57;
}

.field,
.select,
.color-text {
    height: 32px;
    border: 1px solid transparent;
    background: #f1f2f4;
    border-radius: 8px;
    padding: 0 12px;
    color: #343740;
    outline: none;
    width: 100%;
}

.field:focus,
.select:focus,
.color-text:focus {
    border-color: #b9d9f7;
    background: #fff;
}

.split-2,
.split-3 {
    display: grid;
    gap: 8px;
}

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

.split-3 {
    grid-template-columns: 1fr 62px 58px;
}

.ghost-btn,
.solid-btn {
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
}

.ghost-btn {
    border: 1px solid #cfd3db;
    background: #fff;
    color: #30333b;
}

.solid-btn {
    border: 0;
    background: var(--primary);
    color: #fff;
}

.check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.check-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b4e56;
}

.checkbox {
    width: 17px;
    height: 17px;
    accent-color: #1877f2;
}

.mini-grid {
    width: 78px;
    height: 78px;
    border: 1px solid #d9dde4;
    border-radius: 10px;
    position: relative;
    background: radial-gradient(circle, #d9dde4 1px, transparent 1px);
    background-size: 18px 18px;
}

.mini-grid::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 4px;
    border-radius: 999px;
    background: #1577f2;
    left: 10px;
    top: 14px;
    box-shadow: 0 8px 0 #1577f2;
}

.align-controls {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: start;
}

.stack {
    display: grid;
    gap: 8px;
}

.quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.quick-actions button {
    border: 1px solid #d7dbe2;
    background: #fff;
    border-radius: 10px;
    height: 34px;
    padding: 0 12px;
    cursor: pointer;
}

.color-control {
    display: grid;
    grid-template-columns: 34px 1fr 58px 30px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.compact-color-control {
    grid-template-columns: 34px 1fr 86px;
}

.control-preset-btn {
    width: 100%;
    padding: 0 10px;
}

.selection-controls-note {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--muted);
}

.swatch-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #d6dae0;
    cursor: pointer;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.swatch-btn span {
    position: absolute;
    inset: 5px;
    border-radius: 7px;
    background: #000;
    border: 1px solid rgba(0, 0, 0, .06);
}

.shape-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.shape-add {
    height: 40px;
    border: 1px solid #d7dbe2;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.range-row {
    margin-bottom: 14px;
}

.range-row .range-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
    color: #484b53;
}

.range-row input[type="range"] {
    width: 100%;
    accent-color: #2492f2;
}

.footerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}

.logout {
    width: 150px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #dde1e7;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    font-size: 28px;
    color: #637082;
    cursor: pointer;
}

.logout span {
    font-size: 28px;
    line-height: 1;
}

.logout b {
    font-size: 15px;
    font-weight: 500;
    color: #20242d;
    text-transform: lowercase;
}

.copyright {
    font-size: 13px;
    color: #454952;
}

.floating-picker {
    position: fixed;
    width: 260px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    background: #fff;
    border: 1px solid #dddfe5;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(9, 15, 28, .18);
    display: none;
    z-index: 50;
    overflow: auto;
    overscroll-behavior: contain;
}

.picker-head {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fafafa;
}

.picker-head select {
    height: 30px;
    border: 0;
    background: #f1f1f1;
    border-radius: 8px;
    padding: 0 10px;
}

.picker-gradient {
    height: 210px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(128, 0, 0, 1) 100%);
    position: relative;
    cursor: crosshair;
}

.picker-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 55%);
}

.picker-target {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    position: absolute;
    left: 18%;
    top: 36%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.picker-controls {
    padding: 12px 14px 14px;
    position: relative;
}

.picker-row {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.picker-slider,
.opacity-slider {
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg, red, yellow, lime, cyan, blue, magenta, red);
}

.opacity-slider {
    background: linear-gradient(45deg, #d8d8d8 25%, transparent 25%), linear-gradient(-45deg, #d8d8d8 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #d8d8d8 75%), linear-gradient(-45deg, transparent 75%, #d8d8d8 75%), linear-gradient(90deg, transparent, #000);
    background-size: 12px 12px, 12px 12px, 12px 12px, 12px 12px, 100% 100%;
    background-position: 0 0, 0 6px, 6px -6px, -6px 0px, 0 0;
}

.picker-slider::-webkit-slider-thumb,
.opacity-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #111;
    cursor: pointer;
}

.picker-fields {
    display: grid;
    grid-template-columns: 70px 1fr 58px;
    gap: 8px;
    margin-bottom: 12px;
}

.picker-palette-title {
    height: 34px;
    border: 1px solid #e0e3e8;
    background: #f5f5f7;
    border-radius: 8px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 12px;
    margin-bottom: 10px;
}

.picker-swatches {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.picker-chip {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.muted {
    color: var(--muted);
}

@media (max-width: 1280px) {
    .workspace {
        grid-template-columns: 280px 1fr 300px;
    }
    .tool {
        min-width: 68px;
    }
}

.template-note {
    margin: -12px 0 14px;
    font-size: 12px;
    line-height: 1.45;
    color: #61646d;
}

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

.template-card {
    width: 100%;
    border: 1px solid #dde1e8;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.template-card:hover,
.template-card.active {
    border-color: #2492f2;
    box-shadow: 0 10px 24px rgba(36, 146, 242, .12);
    transform: translateY(-1px);
}

.template-card-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    background: #eef1f6;
    overflow: hidden;
}

.template-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.template-card-body {
    display: block;
    padding: 10px 12px 12px;
}

.template-card-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #242833;
    margin-bottom: 4px;
}

.template-card-meta {
    display: block;
    font-size: 11px;
    color: #747884;
    text-transform: capitalize;
}

.animation-timing {
    grid-template-columns: repeat(3, 1fr);
}

.animation-actions {
    margin-bottom: 8px;
}

.animation-actions button {
    min-width: calc(50% - 4px);
}

.animation-note {
    font-size: 12px;
    line-height: 1.45;
    color: #656a75;
}

.picker-gradient::before {
    display: none;
}

.picker-target {
    width: 16px;
    height: 16px;
}


.export-menu {
    position: fixed;
    z-index: 3000;
    min-width: 180px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
}

.export-menu[hidden] {
    display: none;
}

.export-menu-title {
    display: block;
    padding: 6px 10px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B7280;
}

.export-option {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    color: #1F2937;
    font-size: 14px;
    text-align: left;
}

.export-option:hover {
    background: #F3F4F6;
}

.export-option small {
    font-size: 11px;
    color: #6B7280;
}


.stock-library {
    margin-top: 12px;
    border: 1px solid #e2e6ec;
    border-radius: 12px;
    padding: 12px;
    background: #fafbfc;
}

.stock-library-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #5a6170;
    margin-bottom: 10px;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 260px;
    overflow: auto;
    padding-right: 2px;
}

.stock-card {
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.stock-card:hover,
.stock-card:focus-visible {
    border-color: #2492f2;
    box-shadow: 0 8px 18px rgba(36, 146, 242, .14);
    transform: translateY(-1px);
    outline: none;
}

.stock-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #eef1f5;
}

.stock-thumb.stock-thumb-missing {
    display: grid;
    place-items: center;
    color: #8a93a2;
    font-size: 12px;
    background: repeating-linear-gradient(45deg, #f2f4f7, #f2f4f7 10px, #e8ebf1 10px, #e8ebf1 20px);
}

.stock-card-label {
    display: block;
    padding: 8px 10px 10px;
    font-size: 12px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Custom scrollbar theme */
.left-panel,
.right-panel,
.center-panel,
.stock-grid,
.floating-picker,
.export-menu {
    scrollbar-width: thin;
    scrollbar-color: #50c299 #edf7f1;
}

.left-panel::-webkit-scrollbar,
.right-panel::-webkit-scrollbar,
.center-panel::-webkit-scrollbar,
.stock-grid::-webkit-scrollbar,
.floating-picker::-webkit-scrollbar,
.export-menu::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.left-panel::-webkit-scrollbar-track,
.right-panel::-webkit-scrollbar-track,
.center-panel::-webkit-scrollbar-track,
.stock-grid::-webkit-scrollbar-track,
.floating-picker::-webkit-scrollbar-track,
.export-menu::-webkit-scrollbar-track {
    background: #edf7f1;
    border-radius: 999px;
}

.left-panel::-webkit-scrollbar-thumb,
.right-panel::-webkit-scrollbar-thumb,
.center-panel::-webkit-scrollbar-thumb,
.stock-grid::-webkit-scrollbar-thumb,
.floating-picker::-webkit-scrollbar-thumb,
.export-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #baf8b7, #50c299, #50c299);
    border-radius: 999px;
    border: 2px solid #edf7f1;
}

.left-panel::-webkit-scrollbar-thumb:hover,
.right-panel::-webkit-scrollbar-thumb:hover,
.center-panel::-webkit-scrollbar-thumb:hover,
.stock-grid::-webkit-scrollbar-thumb:hover,
.floating-picker::-webkit-scrollbar-thumb:hover,
.export-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #c8fac5, #59cda3, #59cda3);
}

.left-panel::-webkit-scrollbar-corner,
.right-panel::-webkit-scrollbar-corner,
.center-panel::-webkit-scrollbar-corner,
.stock-grid::-webkit-scrollbar-corner,
.floating-picker::-webkit-scrollbar-corner,
.export-menu::-webkit-scrollbar-corner {
    background: #edf7f1;
}

.pricing-panel {
    margin-top: 18px;
    border: 1px solid #dde4ea;
    border-radius: 16px;
    background: #fbfcfd;
    padding: 16px;
}

.pricing-panel-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.pricing-panel-head h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.pricing-source {
    font-size: 11px;
    color: #6b7280;
}

.pricing-section + .pricing-section {
    margin-top: 16px;
}

.pricing-label,
.pricing-subtitle {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

.pricing-summary-card {
    margin-top: 16px;
    border: 1px solid #d9e4db;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
    padding: 12px 14px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #374151;
}

.pricing-row + .pricing-row {
    margin-top: 8px;
}

.pricing-row.total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dce8df;
    font-size: 14px;
    font-weight: 700;
}

.pricing-row.total strong {
    color: #166534;
}

.pricing-poa-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
    color: #92400e;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    padding: 8px 10px;
}

.extras-list {
    display: grid;
    gap: 10px;
}

.extra-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.extra-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.extra-toggle input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #2492f2;
}

.extra-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.extra-label {
    font-size: 12px;
    line-height: 1.4;
    color: #1f2937;
}

.extra-price {
    font-size: 12px;
    font-weight: 700;
    color: #166534;
}

.extra-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-left: 26px;
}

.extra-qty-row .field {
    width: 92px;
}

.extra-unit {
    font-size: 12px;
    color: #6b7280;
}

.included-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.included-list li {
    position: relative;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.45;
    color: #374151;
}

.included-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #2492f2;
    font-weight: 700;
}
