/* ========================================
   헤더 버튼 그룹
   ======================================== */
.header-buttons {
    position: absolute;
    right: 150px;
    top: 150px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

/* 톡문의 버튼 (노란색) */
.header-kakao-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #FEE500;
    color: #3C1E1E;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-kakao-btn:hover {
    background-color: #FDD835;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* 도어견적 버튼 (파란색) */
.header-door-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-door-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.header-kakao-btn svg,
.header-door-btn svg {
    width: 20px;
    height: 20px;
}


/* ========================================
   도어견적 섹션
   ======================================== */
.estimate-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.estimate-container {
    background-color: white;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.estimate-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.estimate-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1rem;
}


/* ========================================
   견적 폼
   ======================================== */
.estimate-form {
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #007bff;
}

.size-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-inputs .form-input {
    flex: 1;
}

.size-separator {
    font-size: 20px;
    color: #666;
    font-weight: bold;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}


/* ========================================
   견적 결과
   ======================================== */
.estimate-result {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #007bff;
}

.result-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.result-details {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 150px;
}

.result-notice {
    text-align: center;
    color: #999;
    padding: 50px 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item-label {
    font-size: 15px;
    color: #666;
}

.result-item-value {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.total-price {
    color: #007bff;
    font-size: 2rem;
}

.result-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-inquiry,
.btn-print {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-inquiry {
    background-color: #007bff;
    color: white;
}

.btn-inquiry:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-print {
    background-color: white;
    color: #333;
    border: 2px solid #007bff;
}

.btn-print:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.result-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #999;
}


/* ========================================
   반응형 디자인
   ======================================== */
@media (max-width: 768px) {
    .header-buttons {
        right: 15px;
        top: 110px;
        flex-direction: column;
        gap: 5px;
    }
    
    .header-kakao-btn,
    .header-door-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .header-kakao-btn svg,
    .header-door-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .estimate-container {
        padding: 30px 20px;
    }
    
    .estimate-title {
        font-size: 2rem;
    }
    
    .size-inputs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .size-separator {
        text-align: center;
        padding: 5px 0;
    }
    
    .result-total {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
     .header-kakao-btn,
    .header-door-btn {
        padding: 3px 6px;
        font-size: 10px;
    }
}