@charset "UTF-8";

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

html {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #171717;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: #171717;
    color: #111;
    font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
}

button,
input {
    font: inherit;
}

.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;
}

.breast-page {
    width: min(450px, 100vw);
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 34px rgba(0, 0, 0, .28);
}

.breast-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.breast-section__visual {
    margin: 0;
    padding: 0;
}

.breast-section__visual img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

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

.breast-quick {
    position: fixed;
    z-index: 40;
    right: max(12px, calc((100vw - 450px) / 2 + 12px));
    bottom: 212px;
    display: grid;
    gap: 12px;
    pointer-events: none;
}

.breast-quick__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    pointer-events: auto;
}

.breast-quick__item--phone {
    background: #000;
}

.breast-quick__item--kakao {
    background: #ffdf00;
}

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

.breast-fixed-spacer {
    width: min(450px, 100vw);
    height: 150px;
    margin: 0 auto;
    background: #fff;
}

.breast-db-fixed {
    position: fixed;
    z-index: 50;
    left: 50%;
    bottom: 0;
    width: min(450px, 100vw);
    transform: translateX(-50%);
    padding: 14px 16px max(14px, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    background: #891114;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
}

.breast-db-form {
    display: grid;
    gap: 10px;
}

.breast-db-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.breast-db-form input[type="text"],
.breast-db-form input[type="tel"] {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    line-height: 42px;
    outline: none;
}

.breast-db-form input::placeholder {
    color: #111;
}

.breast-db-form__submit {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    color: #891114;
    font-size: 18px;
    font-weight: 800;
    line-height: 44px;
    cursor: pointer;
}

.breast-db-form__submit:enabled:hover {
    background: #f7eeee;
    color: #891114;
}

.breast-db-form__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.2;
}

.breast-db-form__privacy input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.breast-db-form__privacy button {
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.breast-db-form__message {
    min-height: 0;
    margin: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.35;
}

.breast-db-form__message.is-error {
    color: #b00020;
}

.breast-db-form__message.is-ok {
    color: #056f35;
}

.breast-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.breast-privacy-modal,
.breast-consult-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 22px;
}

.breast-privacy-modal[hidden],
.breast-consult-modal[hidden] {
    display: none;
}

.breast-privacy-modal__backdrop,
.breast-consult-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .56);
}

.breast-privacy-modal__panel,
.breast-consult-modal__panel {
    position: relative;
    z-index: 1;
    width: min(390px, 100%);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    color: #111;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}

.breast-privacy-modal__panel h2,
.breast-consult-modal__panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.28;
}

.breast-privacy-modal__panel p,
.breast-privacy-modal__panel dd,
.breast-consult-modal__panel p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
}

.breast-privacy-modal__panel dt {
    margin: 12px 0 4px;
    font-weight: 800;
}

.breast-privacy-modal__panel dl {
    margin: 0;
}

.breast-privacy-modal__panel button,
.breast-consult-modal__panel button {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    border: 0;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.breast-consult-modal {
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
}

.breast-consult-modal__backdrop {
    background: rgba(24, 0, 4, .68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.breast-consult-modal__panel {
    width: min(390px, calc(100vw - 44px));
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(255, 190, 196, .24);
    border-radius: 22px;
    padding: 0;
    background: radial-gradient(circle at 50% 20%, rgba(170, 28, 36, .42), rgba(75, 5, 10, .98) 58%, #200004 100%);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .13);
    animation: breast-consult-pop .46s cubic-bezier(.2, .9, .25, 1.08) both;
}

.breast-consult-modal__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
}

.breast-consult-modal__glow {
    position: absolute;
    inset: auto 44px 42px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 100, 112, .22);
    filter: blur(24px);
}

.breast-consult-modal__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px 24px 30px;
    text-align: center;
    color: #fff;
}

.breast-consult-modal__eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 218, 222, .88);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
}

.breast-consult-modal__panel h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-shadow: 0 3px 18px rgba(255, 120, 130, .34), 0 2px 10px rgba(0, 0, 0, .34);
}

.breast-consult-modal__panel .breast-consult-modal__message {
    margin: 14px 0 26px;
    color: rgba(255, 242, 244, .88);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.breast-consult-modal__panel .breast-consult-modal__confirm {
    display: inline-flex;
    width: auto;
    min-width: 132px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 0;
    border: 1px solid rgba(255, 198, 204, .48);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(170, 17, 24, .96), rgba(104, 4, 10, .96));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(150, 15, 24, .34), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.breast-consult-modal__confirm:disabled {
    cursor: wait;
    opacity: .72;
}

.breast-consult-modal__keep-time {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, .46);
    border-top-color: #ffe0a6;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 155, 165, .36);
    animation: breast-keep-time-spin 1s linear infinite;
}

.breast-consult-modal__keep-time-hand {
    position: absolute;
    left: 9px;
    top: 4px;
    width: 2px;
    height: 7px;
    border-radius: 999px;
    background: #ffe0a6;
    transform-origin: 1px 7px;
}

@keyframes breast-keep-time-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes breast-consult-pop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.breast-modal-open {
    overflow: hidden;
}

@media (max-width: 390px) {
    .breast-quick {
        right: 10px;
        bottom: 166px;
        gap: 10px;
    }

    .breast-quick__item {
        width: 48px;
        height: 48px;
    }

    .breast-db-fixed {
        padding-inline: 12px;
    }
}
