:root {
--jomo-quote-sheet-width: 440px;
--jomo-quote-border: rgba(23, 20, 17, .12);
--jomo-quote-muted: rgba(23, 20, 17, .62);
--jomo-quote-bg: #fffdfa;
--jomo-quote-panel: #f3eee7;
--jomo-quote-ink: #171411;
--jomo-quote-green: #006b3f;
--jomo-quote-safe-bottom: max(18px, env(safe-area-inset-bottom));
}
.jomo-quote-drawer,
.jomo-quote-modal,
.jomo-quote-drawer *,
.jomo-quote-modal * {
box-sizing: border-box;
}
.jomo-sr-only {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.jomo-quote-icon-btn {
position: relative;
display: inline-grid;
place-items: center;
width: 44px;
height: 44px;
min-width: 44px;
min-height: 44px;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
color: var(--jomo-quote-ink);
cursor: pointer;
}
.jomo-quote-icon-btn:focus-visible,
.jomo-quote-btn:focus-visible,
.jomo-quote-stepper__btn:focus-visible,
.jomo-quote-stepper__input:focus-visible,
.jomo-quote-remove-btn:focus-visible,
.jomo-quote-add:focus-visible {
outline: 2px solid rgba(23, 20, 17, .82);
outline-offset: 2px;
}
.jomo-quote-badge {
position: absolute;
top: 2px;
right: 0;
display: inline-grid;
place-items: center;
min-width: 18px;
height: 18px;
padding: 0 5px;
border-radius: 999px;
background: var(--jomo-quote-green);
color: #fff;
font: 800 10px/1 var(--jomo-font-ui, Manrope, Arial, sans-serif);
}
.jomo-quote-badge[hidden] {
display: none;
}
.jomo-quote-add,
.jomo-quote-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 16px;
border: 1px solid var(--jomo-quote-ink);
border-radius: 0;
background: var(--jomo-quote-ink);
color: #fff;
font: 800 10px/1.15 var(--jomo-font-ui, Manrope, Arial, sans-serif);
letter-spacing: .13em;
text-align: center;
text-decoration: none;
text-transform: uppercase;
cursor: pointer;
transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.jomo-quote-add {
width: 100%;
margin-top: 10px;
}
.jomo-quote-add:hover,
.jomo-quote-btn:hover {
background: var(--jomo-quote-green);
border-color: var(--jomo-quote-green);
color: #fff;
}
.jomo-quote-btn:disabled,
.jomo-quote-btn[aria-disabled="true"] {
opacity: .44;
cursor: not-allowed;
} .jomo-quote-overlay[data-quote-overlay] {
position: fixed;
inset: 0;
z-index: 100100;
background: rgba(17, 17, 17, .58);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .22s ease, visibility .22s ease;
}
.jomo-quote-overlay[data-quote-overlay].is-open {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.jomo-quote-overlay[data-quote-overlay][hidden] {
display: block;
}
.jomo-quote-drawer {
position: fixed;
top: 0;
right: 0;
bottom: 0;
z-index: 100110;
display: grid;
grid-template-rows: auto minmax(0, 1fr) auto;
width: min(var(--jomo-quote-sheet-width), 94vw);
height: 100dvh;
max-height: 100dvh;
overflow: hidden;
overscroll-behavior: contain;
background: var(--jomo-quote-bg);
color: var(--jomo-quote-ink);
box-shadow: -24px 0 64px rgba(17, 17, 17, .16);
opacity: 0;
visibility: hidden;
transform: translate3d(100%, 0, 0);
transition: transform .28s cubic-bezier(.22, .61, .36, 1), opacity .2s ease, visibility .28s ease;
}
.jomo-quote-drawer.is-open {
opacity: 1;
visibility: visible;
transform: translate3d(0, 0, 0);
}
.jomo-quote-drawer__head {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 72px;
padding: 12px 16px 12px 22px;
border-bottom: 1px solid var(--jomo-quote-border);
background: var(--jomo-quote-bg);
}
.jomo-quote-drawer__head .jomo-quote-icon-btn,
.jomo-quote-modal__head .jomo-quote-icon-btn {
width: 48px;
height: 48px;
min-width: 48px;
min-height: 48px;
}
.jomo-quote-drawer__head strong {
margin: 0;
font-family: var(--jomo-font-serif, "Instrument Serif", Georgia, serif);
font-size: clamp(26px, 2.2vw, 34px);
font-weight: 400;
line-height: 1;
letter-spacing: -.035em;
}
.jomo-quote-drawer__body {
min-height: 0;
padding: 8px 22px 20px;
overflow-x: hidden;
overflow-y: auto;
overscroll-behavior: contain;
scrollbar-width: thin;
-webkit-overflow-scrolling: touch;
}
.jomo-quote-drawer__foot {
display: grid;
gap: 12px;
padding: 16px 22px var(--jomo-quote-safe-bottom);
border-top: 1px solid var(--jomo-quote-border);
background: var(--jomo-quote-bg);
box-shadow: 0 -14px 34px rgba(23, 20, 17, .06);
isolation: isolate;
}
.jomo-quote-drawer__summary {
display: grid;
grid-template-columns: 1fr auto;
gap: 8px 16px;
align-items: center;
margin: 0;
}
.jomo-quote-drawer__summary dt,
.jomo-quote-drawer__summary dd {
margin: 0;
font-size: 12px;
line-height: 1.35;
}
.jomo-quote-drawer__summary dt {
color: var(--jomo-quote-muted);
}
.jomo-quote-drawer__summary dd {
font-weight: 800;
text-align: right;
}
body.skin-comercial .jomo-quote-drawer__foot .jomo-quote-btn {
width: 100%;
max-width: none;
min-height: 50px;
background: var(--jomo-cta, #44524c);
border-color: var(--jomo-cta, #44524c);
}
body.skin-comercial .jomo-quote-drawer__foot .jomo-quote-btn:hover {
background: var(--jomo-cta-hover, #35423d);
border-color: var(--jomo-cta-hover, #35423d);
}
body.skin-comercial .jomo-quote-drawer__disclaimer {
margin: 4px 0 0;
color: var(--jomo-quote-muted);
font-family: var(--jomo-font-ui, Manrope, Arial, sans-serif);
font-size: 12px;
font-weight: 400;
line-height: 1.5;
}
.jomo-quote-help {
margin: 10px 0 0;
color: var(--jomo-quote-muted);
font-size: 12px;
line-height: 1.5;
}
.jomo-quote-drawer__body > .jomo-quote-help {
padding: 18px 0;
}
.jomo-quote-item {
position: relative;
display: grid;
grid-template-columns: 92px minmax(0, 1fr);
gap: 16px;
align-items: start;
padding: 20px 0;
border-bottom: 1px solid var(--jomo-quote-border);
}
.jomo-quote-item:first-child {
padding-top: 18px;
}
.jomo-quote-item__thumb {
display: block;
width: 92px;
height: 92px;
padding: 8px;
border: 1px solid rgba(23, 20, 17, .08);
background: var(--jomo-white, #fff);
object-fit: contain;
}
.jomo-quote-item__content,
.jomo-quote-item__text {
min-width: 0;
}
.jomo-quote-item__content {
display: grid;
gap: 14px;
}
.jomo-quote-item__top {
display: grid;
grid-template-columns: minmax(0, 1fr) 44px;
gap: 8px;
align-items: start;
}
.jomo-quote-item__title {
margin: 0 0 6px;
color: var(--jomo-quote-ink);
font-family: var(--jomo-font-ui, Manrope, Arial, sans-serif);
font-size: 15px;
font-weight: 800;
line-height: 1.25;
overflow-wrap: anywhere;
}
.jomo-quote-item__meta {
margin: 0;
color: var(--jomo-quote-muted);
font-size: 12px;
line-height: 1.48;
overflow-wrap: anywhere;
}
.jomo-quote-remove-btn {
display: inline-grid;
place-items: center;
width: 44px;
height: 44px;
min-width: 44px;
min-height: 44px;
padding: 0;
border: 0;
background: transparent;
color: rgba(23, 20, 17, .54);
cursor: pointer;
}
.jomo-quote-remove-btn:hover {
background: rgba(23, 20, 17, .05);
color: var(--jomo-quote-ink);
}
.jomo-quote-remove-icon {
width: 17px;
height: 17px;
fill: currentColor;
}
.jomo-quote-qty-block {
display: grid;
gap: 7px;
}
.jomo-quote-qty-label {
color: rgba(23, 20, 17, .54);
font: 800 9px/1.2 var(--jomo-font-ui, Manrope, Arial, sans-serif);
letter-spacing: .12em;
text-transform: uppercase;
}
.jomo-quote-qty-inline {
display: grid;
grid-template-columns: 46px minmax(90px, 1fr) 46px;
align-items: stretch;
width: 100%;
max-width: 260px;
border: 1px solid var(--jomo-quote-border);
background: rgba(255, 255, 255, .68);
}
.jomo-quote-stepper__btn,
.jomo-quote-stepper__input {
height: 44px;
min-height: 44px;
border: 0;
border-radius: 0;
background: transparent;
color: var(--jomo-quote-ink);
}
.jomo-quote-stepper__btn {
display: grid;
place-items: center;
padding: 0;
font: 500 22px/1 var(--jomo-font-ui, Manrope, Arial, sans-serif);
cursor: pointer;
}
.jomo-quote-stepper__btn:first-child {
border-right: 1px solid var(--jomo-quote-border);
}
.jomo-quote-stepper__btn:last-child {
border-left: 1px solid var(--jomo-quote-border);
}
.jomo-quote-stepper__btn:hover {
background: rgba(23, 20, 17, .05);
}
body.skin-comercial input.jomo-quote-stepper__input {
width: 100%;
min-width: 0;
padding: 0 8px;
border: 0;
background: transparent;
box-shadow: none;
font: 800 13px/1 var(--jomo-font-ui, Manrope, Arial, sans-serif);
letter-spacing: .03em;
text-align: center;
outline: none;
}
.jomo-quote-qty-help {
color: rgba(23, 20, 17, .52);
font-size: 11px;
line-height: 1.35;
} .jomo-quote-modal {
position: fixed;
inset: 0;
z-index: 100200;
display: none;
isolation: isolate;
}
.jomo-quote-modal.is-open {
display: block;
}
.jomo-quote-modal [data-quote-modal-overlay] {
position: fixed;
inset: 0;
z-index: 100201;
background: rgba(17, 17, 17, .62);
}
.jomo-quote-modal__panel {
position: fixed;
top: 50%;
left: 50%;
z-index: 100202;
width: min(620px, calc(100vw - 32px));
max-height: calc(100dvh - 32px);
padding: 24px;
overflow: auto;
overscroll-behavior: contain;
background: var(--jomo-quote-bg);
transform: translate(-50%, -50%);
-webkit-overflow-scrolling: touch;
}
.jomo-quote-modal__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px;
}
.jomo-quote-modal__title {
margin: 0 0 8px;
font-family: var(--jomo-font-serif, "Instrument Serif", Georgia, serif);
font-size: clamp(30px, 4vw, 44px);
font-weight: 400;
line-height: .98;
letter-spacing: -.035em;
}
.jomo-quote-form {
margin-top: 20px;
}
.jomo-quote-field {
display: grid;
gap: 7px;
margin-bottom: 14px;
}
.jomo-quote-field label,
.jomo-quote-field > span {
font: 800 10px/1.2 var(--jomo-font-ui, Manrope, Arial, sans-serif);
letter-spacing: .1em;
text-transform: uppercase;
}
.jomo-quote-field input,
.jomo-quote-field textarea {
width: 100%;
min-height: 46px;
padding: 11px 12px;
border: 1px solid var(--jomo-quote-border);
border-radius: 0;
background: #fff;
color: var(--jomo-quote-ink);
font-size: 14px;
}
.jomo-quote-field textarea {
min-height: 120px;
resize: vertical;
}
.jomo-quote-form-status {
min-height: 20px;
margin: 10px 0 0;
font-size: 12px;
line-height: 1.45;
}
.request-quote__quantity-error {
margin: 8px 0 0;
color: #812b22;
font-size: 12px;
line-height: 1.45;
}
@media (max-width: 430px) {
.jomo-quote-drawer {
left: 0;
right: 0;
width: 100%;
max-width: 100%;
height: 100dvh;
max-height: 100dvh;
box-shadow: none;
}
.jomo-quote-drawer__head {
min-height: 72px;
padding: 10px 12px 10px 18px;
}
.jomo-quote-drawer__head strong {
font-size: clamp(29px, 8.5vw, 34px);
}
.jomo-quote-drawer__body {
padding: 4px 16px 18px;
}
.jomo-quote-drawer__foot {
gap: 10px;
padding: 13px 16px max(16px, env(safe-area-inset-bottom));
}
.jomo-quote-item {
grid-template-columns: 74px minmax(0, 1fr);
gap: 12px;
padding: 15px 0;
}
.jomo-quote-item__thumb {
width: 74px;
height: 74px;
padding: 5px;
}
.jomo-quote-item__content {
gap: 11px;
}
.jomo-quote-item__top {
grid-template-columns: minmax(0, 1fr) 46px;
gap: 6px;
}
.jomo-quote-item__title {
font-size: 15px;
line-height: 1.22;
}
.jomo-quote-item__meta {
font-size: 11.5px;
line-height: 1.42;
}
.jomo-quote-remove-btn {
width: 46px;
height: 46px;
min-width: 46px;
min-height: 46px;
}
.jomo-quote-remove-icon {
width: 18px;
height: 18px;
}
.jomo-quote-qty-inline {
grid-template-columns: 46px minmax(74px, 1fr) 46px;
max-width: none;
}
.jomo-quote-stepper__btn,
.jomo-quote-stepper__input {
height: 46px;
min-height: 46px;
}
.jomo-quote-drawer__foot .jomo-quote-btn {
min-height: 52px;
}
.jomo-quote-modal__panel {
inset: 0;
width: 100vw;
height: 100dvh;
max-height: 100dvh;
padding: 18px 16px var(--jomo-quote-safe-bottom);
transform: none;
}
}
@media (max-width: 340px) {
.jomo-quote-drawer__body,
.jomo-quote-drawer__foot {
padding-inline: 12px;
}
.jomo-quote-item {
grid-template-columns: 66px minmax(0, 1fr);
gap: 10px;
}
.jomo-quote-item__thumb {
width: 66px;
height: 66px;
}
.jomo-quote-qty-inline {
grid-template-columns: 42px minmax(64px, 1fr) 42px;
}
}
@media (max-height: 620px) {
.jomo-quote-drawer__head {
min-height: 60px;
}
.jomo-quote-drawer__head strong {
font-size: 25px;
}
.jomo-quote-item {
padding-block: 13px;
}
.jomo-quote-drawer__foot {
gap: 8px;
padding-top: 10px;
}
}
@media (prefers-reduced-motion: reduce) {
.jomo-quote-overlay[data-quote-overlay],
.jomo-quote-drawer {
transition-duration: .01ms !important;
}
}