@charset "utf-8";

.comm3 .sub_section {margin: 0 auto; --maincolor: var(--maincolor); }
.inquiry-wizard { position: relative; background: #fff; overflow: hidden; padding-top: 80px; padding-bottom: 0px; }
.inquiry-wizard .step-container { display: none; }
.inquiry-wizard .step-container.active { display: block; animation: wizardFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1); }

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title { margin-bottom: 50px; text-align: center; }
.step-title h2 { font-size: 36px; font-weight: 800; color: #111; line-height: 1.3; word-break: keep-all; letter-spacing: -1px; }
.step-title p { font-size: 20px; color: #777; margin-top: 18px; font-weight: 500; }

.wizard-content { margin-bottom: 60px; }

.input-group { margin-bottom: 35px; text-align: left; }
.input-group label { display: block; font-size: 19px; font-weight: 800; color: #111; margin-bottom: 15px; letter-spacing: -0.5px; }
.input-group input[type="text"], 
.input-group input[type="email"], 
.input-group select, 
.input-group textarea { width: 100%; padding: 20px 25px; border: 2px solid #edeff2; border-radius: 18px; font-size: 18px; background: #f9fafb; transition: .3s; outline: none; box-sizing: border-box; color: #333; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--maincolor); background: #fff; box-shadow: 0 0 0 4px rgba(48, 105, 224, 0.08); }

/* File Upload Style */
.input-group input[type="file"] { padding: 15px; background: #fff; border: 2px dashed #d1d8e0; cursor: pointer; width: 100%;}
.input-group input[type="file"]::file-selector-button { background: var(--maincolor); color: #fff; border: none; padding: 10px 20px; border-radius: 10px; margin-right: 15px; cursor: pointer; font-weight: 700; transition: .3s; }
.input-group input[type="file"]:hover { border-color: var(--maincolor); background: #f8faff; }

/* Card selection for Step 2 & 3 */
.card-selection { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.card-item { position: relative; border: 2px solid #edeff2; padding: 50px; border-radius: 24px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; text-align: center; background: #fff; }
.card-item:hover { border-color: #cbd5e0; transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* Recommended Badge */
.card-item .recom-badge { display: none; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--maincolor); color: #fff; padding: 8px 24px; border-radius: 30px; font-size: 15px; font-weight: 800; box-shadow: 0 6px 20px rgba(48, 105, 224, 0.3); z-index: 2; }
.card-item.recommended { border: 2px solid #d0deff; background: #fbfdff; }
.card-item.recommended .recom-badge { display: block; }

/* The "Selected" state */
.card-item.selected { 
    border: 3px solid var(--maincolor) !important; 
    background: #f4f8ff !important; 
    box-shadow: 0 20px 40px rgba(48, 105, 224, 0.12) !important; 
    transform: translateY(-8px);
}
.card-item.selected h4 { color: var(--maincolor); }

.card-item input[type="radio"] { position: absolute; opacity: 0; }
.card-item .icon { font-size: 48px; margin-bottom: 25px; display: block; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1)); }
.card-item h4 { font-size: 26px; font-weight: 800; color: #111; line-height: 1.2; margin-bottom: 18px; transition: .3s; letter-spacing: -0.5px; }
.card-item p { font-size: 17px; color: #555; line-height: 1.6; font-weight: 500; }

/* Plan-style List */
.card-item .features { margin-top: 30px; padding-top: 30px; border-top: 1px solid #edf2f7; text-align: left; list-style: none; }
.card-item .features li { position: relative; padding-left: 28px; font-size: 18px; color: #4a5568; margin-bottom: 15px; line-height: 1.5; word-break: keep-all; }
.card-item .features li::before { content: '✓'; position: absolute; left: 0; color: var(--maincolor); font-weight: 900; font-size: 18px; }

/* Wizard-specific Template Selection (Modern Gallery Style) */
.template-select-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.template-select-container .template-card { width: 100%; border: none; padding: 0; background: none; border-radius: 0; text-align: left; position: relative; cursor: pointer;}

.template-select-container .imgBox { position: relative; width: 100%; border-radius: 20px; background: #fff; transition: .4s; border: 4px solid transparent; }
.template-select-container .template-card.selected .imgBox { border-color: var(--maincolor); box-shadow: 0 15px 40px rgba(48, 105, 224, 0.2); }

.template-select-container .imgBox > span { display: block; width: 100%; aspect-ratio: 16/10; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0px 5px 18px rgba(0,0,0,0.1); }
.template-select-container .imgBox img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 0s; display: block; }
.template-select-container .template-card.selected .imgBox img { filter: brightness(0.9); }
.template-select-container .imgBox:hover img { object-position: bottom; transition: 4s linear; }

/* Remove Hover Overlay as per user request */
.template-select-container .divHover { display: none !important; }

.template-select-container .select-check { position: absolute; top: 15px; left: 15px; width: 34px; height: 34px; background: #fff; border: 2px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 5; transition: .3s; opacity: 0.8; }
.template-select-container .select-check i { display: none; } /* Hide icon if FontAwesome is missing */
.template-select-container .select-check::after { content: ''; width: 11px; height: 6px; border-left: 2.5px solid #ddd; border-bottom: 2.5px solid #ddd; transform: rotate(-45deg); margin-top: -3px; transition: .3s; }

.template-select-container .template-card.selected .select-check { background: var(--maincolor); border-color: var(--maincolor); opacity: 1; transform: scale(1.1); box-shadow: 0 5px 15px rgba(48, 105, 224, 0.4); }
.template-select-container .template-card.selected .select-check::after { border-color: #fff; }

.template-select-container .txt_box { margin: 15px 0 35px; padding: 0 5px; }
.template-select-container .txt_box p { font-size: 16px; font-weight: 600; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left; }
.template-select-container .template-card.selected .txt_box p { color: var(--maincolor); }

.template-select-container .txt_btn_box_wizard { display: flex !important; justify-content: center !important; margin-top: 20px !important; visibility: visible !important; opacity: 1 !important; }
.template-select-container .txt_btn_box_wizard .btn { flex: 1; height: 46px; line-height: 46px; text-align: center; border-radius: 6px; font-size: 15px; font-weight: 700; transition: .3s; cursor: pointer; text-decoration: none !important; border: 1px solid #ddd; color: #555 !important; background: #fff; }
.template-select-container .txt_btn_box_wizard .btn:hover { background-color: #f8f9fa; border-color: #ccc; }

@media all and (max-width:1280px) {
    .template-select-container { grid-template-columns: repeat(3, 1fr); }
}

@media all and (max-width:768px) {
    .template-select-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .template-select-container .select-check { width: 28px; height: 28px; top: 10px; left: 10px; }
    .template-select-container .select-check i { font-size: 12px; }
}

@media all and (max-width:500px) {
    .template-select-container { grid-template-columns: 1fr; }
}

@media all and (max-width:500px) {
    .template-select-container .template-card { width: 100%; }
}

/* Recommendation box (deprecated but keeping for safety) */
.recommend-box { background: #f0f5ff; border: 2px solid var(--maincolor); padding: 30px; border-radius: 20px; margin-top: 30px; text-align: left; position: relative; }

/* Wizard Footer */
.wizard-footer { display: flex; flex-direction: column; align-items: center; margin-top: 50px; gap: 0; }
.wizard-footer .wizard-btn-row { display: flex; justify-content: center; align-items: center; gap: 10px; }
.wizard-go-home { margin-top: 30px; }
.wizard-go-home a { color: #adb5bd; font-size: 14px; text-decoration: underline; cursor: pointer; transition: color .2s; }
.wizard-go-home a:hover { color: #6c757d; }
.wizard-footer button { line-height: 64px; display: inline-block; padding: 0 50px; font-size: 18px; color:#fff; font-weight: 800; border-radius: 35px; border: none; cursor: pointer; transition: .3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.wizard-footer .btn-prev { background: #fff; color: #4d5561; border: 2px solid #edeff2; display: none; box-shadow: none; }
.wizard-footer .btn-prev:hover { background: #f1f3f5; border-color: #cbd5e0; }
.wizard-footer .btn-next { background: var(--maincolor); color: #fff; }
.wizard-footer .btn-next:hover { opacity: 0.95; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(48, 105, 224, 0.25); }
.wizard-footer .btn-submit { background: #1a202c; color: #fff; display: none; }
.wizard-footer .btn-submit:hover { background: #000; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* Progress bar */
.wizard-progress { height: 8px; background: #f1f3f5; position: absolute; top: 0; left: 0; width: 100%; }
.wizard-progress-bar { height: 100%; background: var(--maincolor); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); width: 10%; box-shadow: 0 0 10px rgba(48, 105, 224, 0.4); }

/* Completion screen */
.complete-screen { text-align: center; padding: 60px 0; }
.complete-screen .icon { font-size: 40px; margin-bottom: 35px; display: block; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.complete-screen h2 { font-size: 42px; font-weight: 800; margin-bottom: 25px; color: #111; letter-spacing: -1.5px; }
.complete-screen p { font-size: 20px; color: #666; line-height: 1.7; font-weight: 500; }

@media all and (max-width:768px){
    .inquiry-wizard {padding-top: 50px; }
    .wizard-progress{height: 5px;}
    .step-title h2 { font-size: 28px; }
    .step-title p { font-size: 17px; }
    .card-selection { grid-template-columns: 1fr; gap: 20px; }
    .card-selection .recommended{order:-1;}
    .card-item { padding: 30px; }
    .wizard-content{margin-bottom: 40px;}
    .wizard-footer { margin-top: 30px; gap:12px;}
    .wizard-footer button { padding: 0 35px; font-size: 16px; line-height: 56px; min-width: 120px; }
    .complete-screen h2 { font-size: 30px; }
    .input-group label{font-size: 17px; margin-bottom: 12px;}
    .step-title{margin-bottom: 40px;}
    .input-group{margin-bottom: 25px;}
    .input-group input[type="text"], .input-group input[type="email"], .input-group select, .input-group textarea{padding: 15px 20px; font-size: 16px;}
    .card-item .icon{font-size: 40px; margin-bottom: 20px;}
    .card-item h4{font-size: 22px; margin-bottom: 13px;}
    .card-item p{font-size: 16px;}
    .card-item .features li::before{font-size: 16px;}
    .card-item .features{margin-top: 20px; padding-top: 20px;}
    .card-item .features li{font-size: 16px; margin-bottom: 10px; padding-left: 23px;}
}

@media all and (max-width:500px){
    .step-title h2{font-size: 24px;}
}


.step-container[data-step="4b"] {
    height: calc(100dvh - 180px);
    min-height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.step-container[data-step="4c"] {
    height: calc(100dvh - 180px);
    min-height: 500px;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}
.step-container[data-step="4b"].active,
.step-container[data-step="4c"].active {
    animation: none;
}

.split-layout {
    display: flex;
    gap: 0;
    height: 100%;
    overflow: hidden;
}

.split-left {
    flex: 0 0 55%;
    width: 55%;
    max-width: 55%;
    border-right: 1px solid #eee;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.split-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.template-preview-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.preview-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.preview-ai-badge {
    background: var(--maincolor);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.preview-scroll-area {
    flex: 1;
    min-height: 0;   /* flex 자식이 축소될 수 있도록 */
    overflow-y: auto;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.preview-scroll-area::-webkit-scrollbar { width: 6px; }
.preview-scroll-area::-webkit-scrollbar-track { background: #f1f1f1; }
.preview-scroll-area::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.preview-scroll-area > img,
#selectedTemplatePreview {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.preview-hero-section {
    position: relative;
    overflow: hidden;
}

.preview-hero-section > img {
    width: 100%;
    display: block;
}

.preview-color-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, background 0.6s ease;
    mix-blend-mode: multiply;
}

.preview-unsplash-section {
    border-top: 1px solid #eee;
    padding: 14px;
    animation: fadeInUp 0.4s ease;
}

.unsplash-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--maincolor);
    margin-bottom: 8px;
}

.preview-unsplash-section img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.preview-color-chip-section {
    border-top: 1px solid #eee;
    padding: 14px;
    animation: fadeInUp 0.4s ease;
}

.color-chip-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.color-chip-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-chip {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.color-chip-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.choice-panel {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.choice-back-btn {
    font-size: 16px;
    color: #999;
    cursor: pointer;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    font-weight: 500;
}
.choice-back-btn:hover { color: #555; }

.choice-panel h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.choice-subtitle {
    font-size: 17px;
    color: #777;
    margin: 0 0 30px;
    font-weight: 500;
}

.choice-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choice-card {
    position: relative;
    border: 2px solid #edeff2;
    border-radius: 24px;
    padding: 30px 28px;
    cursor: pointer;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.choice-card:hover {
    border-color: var(--maincolor);
    box-shadow: 0 6px 24px rgba(48,105,224,0.15);
    transform: translateY(-2px);
}

.choice-card.ai-choice:hover { border-color: #1a52c0; }
.choice-card.ai-choice { border-color: #c8d9f8; background: #fbfdff; }

.choice-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--maincolor);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(48,105,224,0.3);
}

.choice-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.choice-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.choice-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.choice-panel {
    overflow-y: auto;
    min-height: 0;
}

.ai-builder-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 0px;
    background: #fff;
    flex-shrink: 0;
}

.topbar-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s;
}
.topbar-back-btn:hover { background: #f4f4f4; color: #111; }

.topbar-devices {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 4px;
    margin-left: 10px;
}

.topbar-device-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    background: none;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    color: #999;
    transition: all 0.15s;
}
.topbar-device-btn:hover { color: #333; }
.topbar-device-active { background: #fff !important; color: #111 !important; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

.topbar-status-badge {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    background: #f4f4f4;
    padding: 4px 10px;
    border-radius: 20px;
}

.step-container[data-step="4c"] .split-layout {
    height: calc(100% - 52px);
}

.ai-split-left {
    flex: 0 0 36% !important;
    width: 36% !important;
    max-width: 36% !important;
    border: 1px solid #e8eaed;
    background: #fff;
}

.ai-split-right {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    background: #f5f5f5;
}

.ai-chat-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.ai-chat-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
}

.ai-chat-messages::-webkit-scrollbar { width: 4px; }
.ai-chat-messages::-webkit-scrollbar-track { background: transparent; }
.ai-chat-messages::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 2px; }

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: fadeInUp 0.25s ease;
}

.bot-message { justify-content: flex-start; }
.user-message { justify-content: flex-end; }

.bot-avatar {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}

.bot-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 78%;
}

.bot-name {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    padding-left: 2px;
}

.message-bubble {
    padding: 11px 15px;
    border-radius: 4px 16px 16px 16px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: #222;
    background: #f4f4f4;
    display: inline-block;
}

.bot-message .bot-content .message-bubble {
    background: #f4f4f4;
    color: #222;
    border-radius: 4px 16px 16px 16px;
}

.user-message .message-bubble {
    background: #1a1a1a;
    color: #fff;
    border-radius: 16px 4px 16px 16px;
    font-size: 15px;
}

.summary-list {
    margin: 6px 0 6px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.8;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: #f4f4f4;
    border-radius: 4px 16px 16px 16px;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    animation: typing-bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.ai-chat-options {
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
    min-height: 52px;
}

.option-btn {
    border: 1px solid #e0e0e0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1.3;
    background: #fff;
    color: #333;
}
.option-btn:hover { border-color: #aaa; background: #f8f8f8; }

.color-btn {
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #e0e0e0;
}
.color-btn:hover { border-color: #333; background: #f8f8f8; }

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.12);
}

.confirm-btn {
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}
.confirm-btn:hover { background: #333 !important; }

.skip-btn {
    background: transparent;
    color: #bbb;
    border: 1px dashed #d8d8d8;
    font-weight: 400;
}
.skip-btn:hover { color: #888; border-color: #aaa; background: #fafafa; }

.custom-color-btn {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}
.custom-color-btn:hover { border-color: #333; background: #f8f8f8; }
.custom-color-btn input[type="color"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: none;
    padding: 0;
}
.custom-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
    border: 1px solid rgba(0,0,0,0.1);
    display: inline-block;
    transition: background 0.3s;
}

.preview-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #ececec;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    display: inline-block;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.template-preview-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.preview-iframe-container {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f5f5f5;
}
.preview-iframe-container::-webkit-scrollbar { width: 5px; }
.preview-iframe-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

#previewScaleOuter { position: relative; overflow: hidden; }
#previewScaleInner { position: absolute; top: 0; left: 0; transform-origin: top left; }
#templatePreviewIframe { display: block; border: none; }

.preview-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    z-index: 5;
    gap: 14px;
}

.preview-loading-icon {
    font-size: 42px;
    animation: floatIcon 2s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.preview-loading p {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.hospital-info-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    box-sizing: border-box;
}
.h-info-input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
}
.h-info-input:focus { border-color: #333; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Gemini 전체 홈페이지 생성 UI ── */
.cw-url-bar {
    flex: 1;
    background: #fff;
    color: #888;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    margin-left: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cw-ai-empty {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f5f5f5;
}
.cw-ai-empty-icon {
    width: 64px; height: 64px;
    background: #e8eaed;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #aaa;
}
.cw-ai-empty p { font-size: 15px; color: #888; font-weight: 500; margin: 0; }

.cw-ai-gen-loading {
    position: absolute !important;
    inset: 0;
    background: #f5f5f5 !important;
    gap: 20px;
}
.cw-gen-dots { display: flex; gap: 8px; }
.cw-gen-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--maincolor);
    animation: cwDotBounce 1.2s infinite ease-in-out;
}
.cw-gen-dots span:nth-child(2) { animation-delay: 0.2s; }
.cw-gen-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cwDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}
.cw-gen-loading-msg { font-size: 16px; color: #333; font-weight: 600; margin: 0; }
.cw-gen-loading-sub { font-size: 14px; color: #888; margin: 0; }

.cw-ai-regen-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    background: #fff;
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-left: 5px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-weight: 500;
}
.cw-ai-regen-btn:hover { border-color: #aaa; background: #f8f8f8; color: #222; }

#cwAiIframe { background: #fff; }

.cw-text-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: #f9f9f9;
    resize: none;
    min-height: 42px;
    max-height: 42px;
}
.cw-text-input:focus { border-color: #000; background: #fff; }

.step4c-mobile-tab { display: none; }

.topbar-status-badge { display: none !important; }

.mobile-preview-actions {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid #eee;
    background: #fff;
}

@media (max-width: 1024px) {
    .topbar-devices { display: none !important; }
    .step4c-mobile-tab {
        display: flex;
        gap: 2px;
        background: #f0f0f0;
        border-radius: 8px;
        padding: 3px;
    }
    .mob-tab-btn {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 500;
        color: #888;
        background: none;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
    }
    .mob-tab-btn.mob-tab-active {
        background: #fff;
        color: #1a1a2e;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }

    /* ── step 4c: 전체화면 고정 (inquiry-wizard padding 무시) ── */
    .step-container[data-step="4c"].active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: unset !important;
        z-index: 500;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff;
        animation: none !important;
        box-sizing: border-box;
    }

    .step-container[data-step="4c"].active .ai-builder-topbar {
        position: static !important;
        flex-shrink: 0;
    }

    .step-container[data-step="4c"].active .split-layout {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        flex-direction: row !important;
        position: relative !important;
        gap: 0 !important;
    }

    .step-container[data-step="4c"].active .ai-split-left,
    .step-container[data-step="4c"].active .ai-split-right {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        border: none !important;
        transition: transform 0.35s ease, opacity 0.2s ease;
    }

    .step-container[data-step="4c"].active .ai-chat-panel {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    .step-container[data-step="4c"].active .ai-chat-messages {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .step-container[data-step="4c"].active .ai-chat-options {
        flex-shrink: 0 !important;
        background: #fff;
    }

    /* ── 기본: 채팅 보임, 미리보기 오른쪽에 숨김 ── */
    .step-container[data-step="4c"].active .ai-split-left {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
        pointer-events: auto;
    }
    .step-container[data-step="4c"].active .ai-split-right {
        transform: translateX(100%);
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }

    .step-container[data-step="4c"].active .split-layout.mobile-show-preview .ai-split-left {
        transform: translateX(-100%);
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }
    .step-container[data-step="4c"].active .split-layout.mobile-show-preview .ai-split-right {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
        pointer-events: auto;
    }

    .mobile-preview-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        border-top: 1px solid #eee;
        background: #fff;
        flex-shrink: 0;
    }
    .mobile-preview-actions:empty { display: none; }
    .mobile-preview-actions .option-btn {
        width: 100%;
        justify-content: center;
    }

    .step-container[data-step="4c"] .ai-split-right .template-preview-panel {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .step-container[data-step="4c"] .ai-split-right #previewIframeContainer {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .step-container[data-step="4b"] {
        height: auto;
        min-height: 100dvh;
        overflow-y: auto;
    }
    .ai-builder-topbar {
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .split-layout {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    .split-left, .split-right {
        max-width: 100% !important;
        width: 100% !important;
        flex: none !important;
        height: auto;
        overflow: visible;
        border-right: none;
    }
    .step-container[data-step="4b"] .split-left{display: none;}
    .split-left {
        border-bottom: 1px solid #eee;
        height: 45dvh;
        overflow: hidden;
    }
    .choice-panel {
        padding: 20px 16px;
        height: 100%;
        overflow-y: auto;
    }
    .ai-chat-panel { height: 100%; }
    .choice-panel h3{font-size: 25px; margin-bottom: 8px;}
    .choice-card h4 {
        font-size: 20px;
    }
}


.inquiry-wizard.cw-mode {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible;
}

#cwWrap {
    height: calc(100dvh - 120px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    position: relative;
}

#cwWrap .wizard-progress {
    display: none !important;
}

#cwWrap .split-layout {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    position: relative;
    justify-content: center; /* 채팅 패널 중앙 정렬 (미리보기 없을 때) */
}

/* 채팅 패널: 미리보기 없을 때 중앙, 최대 너비 제한 */
#cwWrap .ai-split-left {
    flex: 0 0 580px !important;
    width: 580px !important;
    max-width: 100% !important;
}
/* AI 체험 활성 시: 좌측 고정 비율로 복귀 */
#cwWrap.preview-active .ai-split-left {
    flex: 0 0 36% !important;
    width: 36% !important;
    max-width: 36% !important;
}

#cwWrap .ai-split-right { display: none !important; }

#cwWrap.preview-active .ai-split-right {
    display: flex !important;
}
#cwWrap.preview-active .ai-split-left {
    flex: 0 0 36% !important;
    width: 36% !important;
    max-width: 36% !important;
}

.cw-topbar .topbar-back-btn { display: none; }
#cwWrap.preview-active .cw-topbar .topbar-back-btn { display: flex; }

.cw-topbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
#cwWrap.preview-active .cw-topbar-brand { display: none; }

#cwTopbarDevices { display: none !important; }
#cwMobileTab { display: none !important; }

.cw-input-row {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: flex-end;
    padding-bottom: 4px;
}
.cw-text-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 15px;
    outline: none;
    background: #f9f9f9;
    color: #333;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.cw-text-input:focus { border-color: #000; background: #fff; }
.cw-textarea { border-radius: 12px; resize: none; min-height: 68px; line-height: 1.5; }
.cw-send-btn {
    flex-shrink: 0;
    padding: 14px 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cw-send-btn:hover { background: #333; }

.cw-card-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    line-height: 1.5 !important;
    width: 100%;
    gap: 3px;
}
.cw-card-btn small { font-size: 13px; color: #888; font-weight: 400; margin-top: 2px; }
.cw-card-btn strong { font-size: 15px; color: #222; }
.cw-card-btn.ai-choice { border-color: #c8d9f8 !important; background: #fbfdff !important; }

.cw-badge {
    display: inline-block;
    background: var(--maincolor);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

.cw-template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px 2px;
    box-sizing: border-box;
}
.cw-template-grid::-webkit-scrollbar { width: 4px; }
.cw-template-grid::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.cw-tmpl-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.cw-tmpl-card:hover { border-color: #aaa; transform: translateY(-2px); }
.cw-tmpl-card.cw-tmpl-selected { border-color: var(--maincolor); box-shadow: 0 3px 12px rgba(48,105,224,0.2); }
.cw-tmpl-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; display: block; }
.cw-tmpl-name { font-size: 11px; font-weight: 600; color: #333; padding: 5px 7px 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cw-tmpl-preview { display: block; font-size: 10px; color: var(--maincolor); padding: 1px 7px 5px; text-decoration: none; }
.cw-tmpl-preview:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    #cwWrap {
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        height: 100dvh !important;
        min-height: unset !important;
        z-index: 200;
    }
    /* 모바일: 채팅 패널 full-width */
    #cwWrap .ai-split-left {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #cwWrap .split-layout { justify-content: flex-start; }

    #cwWrap.preview-active .split-layout {
        flex: 1 1 0 !important; min-height: 0 !important; height: auto !important;
        overflow: hidden !important; flex-direction: row !important; position: relative !important; gap: 0 !important;
    }
    #cwWrap.preview-active .ai-split-left,
    #cwWrap.preview-active .ai-split-right {
        position: absolute !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        width: auto !important; max-width: none !important; height: auto !important;
        flex: none !important; display: flex !important; flex-direction: column !important;
        overflow: hidden !important; border: none !important;
        transition: transform 0.35s ease, opacity 0.2s ease;
    }
    #cwWrap.preview-active .ai-chat-panel { height: 100% !important; display: flex !important; flex-direction: column !important; overflow: hidden !important; }
    #cwWrap.preview-active .ai-chat-messages { flex: 1 1 0 !important; min-height: 0 !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch; }
    #cwWrap.preview-active .ai-chat-options { flex-shrink: 0 !important; background: #fff; }
    #cwWrap.preview-active .ai-split-left  { transform: translateX(0);    opacity: 1; z-index: 2; pointer-events: auto; }
    #cwWrap.preview-active .ai-split-right { transform: translateX(100%); opacity: 0; z-index: 1; pointer-events: none; }
    #cwWrap.preview-active .split-layout.mobile-show-preview .ai-split-left  { transform: translateX(-100%); opacity: 0; z-index: 1; pointer-events: none; }
    #cwWrap.preview-active .split-layout.mobile-show-preview .ai-split-right { transform: translateX(0);     opacity: 1; z-index: 2; pointer-events: auto; }
    #cwWrap.preview-active #cwMobileTab { display: flex !important; margin-left: 10px;}
    #cwTopbarDevices { display: none !important; }
    #cwWrap.preview-active .ai-split-right .template-preview-panel { display: flex; flex-direction: column; height: 100%; }
    #cwWrap.preview-active .ai-split-right #previewIframeContainer { flex: 1; min-height: 0; overflow: hidden; }
    .cw-template-grid { grid-template-columns: repeat(2, 1fr); max-height: 240px; }
}

@media (min-width: 1025px) {
    #cwWrap.preview-active #cwTopbarDevices { display: flex !important; }
}

.cw-quit-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    margin-left: auto;
}
.cw-quit-btn:hover { background: #f3f6ff; color: var(--maincolor); border-color: #c6daf5; }

#cwQuitModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cw-quit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.cw-quit-dialog {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 24px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: fadeInUp 0.2s ease;
}
.cw-quit-msg {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.6;
    margin: 0 0 20px;
}
.cw-quit-msg span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}
.cw-quit-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.cw-quit-cancel, .cw-quit-confirm {
    flex: 1;
    padding: 12px 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s;
}
.cw-quit-cancel { background: #f1f3f5; color: #555; }
.cw-quit-cancel:hover { background: #e9ecef; }
.cw-quit-confirm { background: var(--maincolor); color: #fff; }
.cw-quit-confirm:hover { opacity: 0.88; }

/* ── 어댑티브 탑바: 채팅 패널 너비에 맞춤 ── */
#cwWrap .cw-topbar {
    width: 580px;
    max-width:94%;
    margin: 0 auto;
    align-self: center;
    box-sizing: border-box;
}
#cwWrap.preview-active .cw-topbar {
    width: 100%;
    max-width: none;
    align-self: stretch;
}
@media (max-width: 1024px) {
    #cwWrap .cw-topbar {
        width: 100%;
        align-self: stretch;
    }
}

/* ── 오른쪽 템플릿 선택 패널 ── */
#cwTemplatePanelRight {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #e8eaed;
    border-left: 0;
}
.cw-tpl-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
#cwTplPanelTitle { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cw-tpl-panel-header .cw-tpl-site-link { flex-shrink: 0; margin-left: auto; font-size: 12px; }
#cwTplGridView {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}
#cwTplGridView::-webkit-scrollbar { width: 4px; }
#cwTplGridView::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.cw-tpl-grid-right {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-content: start;
    box-sizing: border-box;
}
/* 오른쪽 그리드 카드: 이름 없이 썸네일만 */
.cw-tpl-grid-right .cw-tmpl-card { border-radius: 8px; }
.cw-tpl-grid-right .cw-tmpl-card img { aspect-ratio: 3/4; object-position: top; border-radius: 6px; }

/* ── 템플릿 상세 뷰 ── */
#cwTplDetailView {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.cw-tpl-detail-img-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: #f0f0f0;
}
.cw-tpl-detail-img-wrap::-webkit-scrollbar { width: 4px; }
.cw-tpl-detail-img-wrap::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
#cwTplDetailImg { width: 100%; height: auto; display: block; }
.cw-tpl-detail-footer {
    flex-shrink: 0;
    padding: 14px 16px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cw-tpl-site-link { font-size: 12px; color: var(--maincolor); text-decoration: none;}
.cw-tpl-site-link:hover { text-decoration: underline; }
.cw-tpl-detail-btns { display: flex; gap: 8px; justify-content: center; }
.cw-tpl-detail-btns .option-btn { flex: 0 0 auto; }
.cw-tpl-detail-btns .confirm-btn { flex: 0 0 auto; min-width: 140px; text-align: center; }

/* 템플릿 선택 중: device 버튼 숨김 */
#cwWrap.tpl-select-active #cwTopbarDevices { display: none !important; }

/* ── 모바일 상단바 최적화: 텍스트 숨기고 아이콘만 표시 ── */
@media all and (max-width: 768px) {
    /* 버튼 내 텍스트 숨기기 (채팅, 미리보기 버튼만) */
    .mob-tab-btn span {
        display: none !important;
    }

    /* 아이콘만 남았을 때 버튼 크기 조정 (채팅, 미리보기 버튼만) */
    .mob-tab-btn {
        width: 34px;
        height: 34px;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        min-width: auto !important;
    }

    /* 이전으로 버튼 최적화: preview-active 상태일 때만 보이도록 기본 display 제거 */
    .topbar-back-btn span {
        display: none !important;
    }
    .topbar-back-btn {
        width: 34px;
        height: 34px;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        /* display: inline-flex !important; <-- 이 부분을 제거하여 기본 display:none이 작동하게 함 */
    }
    #cwWrap.preview-active .topbar-back-btn {
        display: inline-flex !important;
    }
    
    /* 모바일 탭 버튼 간 여백 미세 조정 */
    #cwMobileTab { gap: 4px; }

    /* 브랜드명 텍스트 조금 더 작게 */
    .cw-topbar-brand span {
        font-size: 13px;
    }

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

@media all and (max-width: 480px) {
    /* 아주 좁은 화면에서는 브랜드 텍스트까지 숨김 */
    .cw-topbar-brand span {
        display: none !important;
    }
}
