/**
 * Skin Suga Order Request Form
 * Base styles. Elementor Style controls override these per-widget.
 */

.ssof {
    --ssof-rose: #c79a91;
    --ssof-cream: #f2e8e2;
    --ssof-coffee: #6b5a50;
    --ssof-ink: #332c28;
    --ssof-paper: #fffaf7;
    --ssof-white: #fff;
    --ssof-line: rgba(107, 90, 80, .2);
    --ssof-shadow: 0 24px 60px rgba(107, 90, 80, .14);
}

.ssof,
.ssof *,
.ssof *::before,
.ssof *::after {
    box-sizing: border-box;
}

.ssof__field {
    margin-bottom: 14px;
}

.ssof__label {
    display: block;
    margin-bottom: 8px;
    color: var(--ssof-coffee);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ssof__select-wrap {
    position: relative;
}

.ssof__select-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--ssof-coffee);
    border-bottom: 2px solid var(--ssof-coffee);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.ssof__select,
.ssof__input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--ssof-line);
    border-radius: 4px;
    background: var(--ssof-white);
    color: var(--ssof-ink);
    font: inherit;
    line-height: 1.3;
    -webkit-appearance: none;
    appearance: none;
}

.ssof__select {
    padding-right: 44px;
    cursor: pointer;
}

.ssof__input:focus,
.ssof__select:focus {
    outline: none;
    border-color: var(--ssof-coffee);
}

.ssof__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ssof__contact .ssof__label {
    margin-top: 0;
}

.ssof__summary {
    display: grid;
    gap: 8px;
    margin: 8px 0 14px;
    padding: 18px;
    border: 1px solid rgba(107, 90, 80, .16);
    border-radius: 8px;
    background: var(--ssof-white);
}

.ssof__eyebrow {
    display: block;
    color: var(--ssof-rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ssof__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
    color: var(--ssof-ink);
    font-weight: 700;
}

.ssof__includes {
    margin: 0 0 8px;
    color: var(--ssof-coffee);
    font-size: 16px;
    line-height: 1.5;
}

.ssof__divider {
    height: 1px;
    background: var(--ssof-line);
}

.ssof__total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--ssof-coffee);
    font-weight: 700;
    font-size: 16px;
}

.ssof__total-label {
    color: var(--ssof-coffee);
    font-weight: 700;
}

.ssof__total-value {
    color: var(--ssof-coffee);
    font-weight: 700;
}

.ssof__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 4px;
    background: var(--ssof-coffee);
    color: var(--ssof-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(107, 90, 80, .22);
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--ssof-coffee);;
}

.ssof__button:hover {
    background: #fff;
    color: var(--ssof-coffee);
}

.ssof__button:disabled {
    opacity: .7;
    cursor: default;
}

.ssof__note {
    margin: 8px 0 0;
    color: var(--ssof-coffee);
    font-size: 13px;
    line-height: 1.5;
}

.ssof__status {
    margin-top: 12px;
    font-size: 15px;
}

.ssof__status.is-success {
    color: #3f7d4e;
}

.ssof__status.is-error {
    color: #b23b3b;
}

.ssof__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width:520px) {
    .ssof__contact {
        grid-template-columns: 1fr;
    }
}