/* ===== AI BUSINESS NAME GENERATOR CSS ===== */
.biz-wrapper { margin-bottom: 28px; }
.biz-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.biz-input-card, .biz-output-card {
    background: #fff; border: 2px solid #e5e7eb; border-radius: 20px; padding: 24px;
}
.biz-output-card { border-color: #fcd34d; }
.biz-card-title  { font-size: 16px; font-weight: 800; color: #1f2937; margin-bottom: 20px; }

.biz-field     { margin-bottom: 18px; }
.biz-label     { display: block; font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 8px; }

.biz-textarea {
    width: 100%; min-height: 130px; border: 2px solid #e5e7eb; border-radius: 12px;
    padding: 12px 14px; font-size: 14px; font-family: inherit; resize: vertical;
    outline: none; transition: border-color 0.2s; box-sizing: border-box;
    color: #1f2937; line-height: 1.6;
}
.biz-textarea:focus { border-color: #f59e0b; }
.biz-char-count { font-size: 11px; color: #9ca3af; text-align: right; margin-top: 4px; }

.biz-input {
    width: 100%; border: 2px solid #e5e7eb; border-radius: 10px;
    padding: 10px 14px; font-size: 14px; outline: none; font-family: inherit;
    transition: border-color 0.2s; box-sizing: border-box; color: #1f2937;
}
.biz-input:focus { border-color: #f59e0b; }
.biz-hint { font-size: 11px; color: #9ca3af; margin-top: 4px; }

/* Style Grid */
.biz-style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.biz-style-btn {
    background: #f8fafc; border: 2px solid #e5e7eb; border-radius: 12px;
    padding: 12px 8px; cursor: pointer; transition: all 0.2s;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 20px;
}
.biz-style-btn span  { font-size: 12px; font-weight: 700; color: #374151; }
.biz-style-btn small { font-size: 10px; color: #9ca3af; }
.biz-style-btn:hover { border-color: #f59e0b; transform: translateY(-2px); }
.biz-style-btn.active { background: linear-gradient(135deg,#f59e0b,#d97706); border-color: #d97706; }
.biz-style-btn.active span, .biz-style-btn.active small { color: #fff; }

/* Lang */
.biz-lang-group { display: flex; gap: 8px; }
.biz-lang-btn {
    background: #f8fafc; border: 2px solid #e5e7eb; border-radius: 10px;
    padding: 8px 16px; font-size: 13px; font-weight: 700; color: #374151;
    cursor: pointer; transition: all 0.2s;
}
.biz-lang-btn:hover  { border-color: #f59e0b; }
.biz-lang-btn.active { background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; border-color: #d97706; }

/* Examples */
.biz-examples  { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.biz-ex-label  { font-size: 12px; font-weight: 700; color: #6b7280; }
.biz-ex-btn {
    background: #fffbeb; border: 1.5px solid #fde68a; border-radius: 20px;
    padding: 5px 12px; font-size: 12px; font-weight: 600; color: #92400e;
    cursor: pointer; transition: all 0.2s;
}
.biz-ex-btn:hover { background: #fef3c7; border-color: #f59e0b; }

/* Generate Btn */
.biz-generate-btn {
    width: 100%; background: linear-gradient(135deg,#f59e0b,#d97706);
    color: #fff; border: none; border-radius: 14px; padding: 16px;
    font-size: 17px; font-weight: 800; cursor: pointer; transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.biz-generate-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); }
.biz-generate-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Placeholder */
.biz-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; text-align: center; gap: 10px; }
.biz-ph-icon    { font-size: 52px; }
.biz-ph-title   { font-size: 16px; font-weight: 800; color: #374151; }
.biz-ph-sub     { font-size: 13px; color: #9ca3af; margin-bottom: 16px; }
.biz-ph-preview { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 260px; }
.biz-ph-card {
    background: #fffbeb; border: 2px solid #fde68a; border-radius: 12px;
    padding: 10px 14px; text-align: left; font-size: 13px; color: #374151;
    display: flex; align-items: center; gap: 8px;
}
.biz-ph-card span { color: #9ca3af; font-size: 11px; }

/* Loading */
.biz-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; gap: 16px; }
.biz-loading-dots { display: flex; gap: 8px; }
.biz-loading-dots span { width: 10px; height: 10px; background: #f59e0b; border-radius: 50%; animation: biz-bounce 1.2s infinite; }
.biz-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.biz-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes biz-bounce { 0%,80%,100%{transform:scale(0.7);opacity:0.5} 40%{transform:scale(1.2);opacity:1} }
.biz-loading-text { font-size: 14px; color: #6b7280; font-weight: 500; }

/* Results */
.biz-results-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid #fef3c7;
}
.biz-results-count  { font-size: 14px; font-weight: 800; color: #92400e; }
.biz-copy-all-btn {
    background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff;
    border: none; border-radius: 8px; padding: 8px 16px;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.biz-copy-all-btn:hover { transform: translateY(-1px); }

/* Name Cards */
.biz-names-list { display: flex; flex-direction: column; gap: 10px; }
.biz-name-card {
    background: #fff; border: 2px solid #fde68a; border-radius: 14px;
    overflow: hidden; transition: all 0.2s;
}
.biz-name-card:hover { border-color: #f59e0b; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,158,11,0.15); }

.biz-name-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: #fffbeb;
}
.biz-name-num {
    background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff;
    font-size: 12px; font-weight: 900; width: 26px; height: 26px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.biz-name-main   { flex: 1; }
.biz-name-text   { font-size: 18px; font-weight: 900; color: #1f2937; }
.biz-name-tagline { font-size: 12px; color: #92400e; font-style: italic; margin-top: 2px; }

.biz-name-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.biz-domain-badge {
    font-size: 11px; font-weight: 800; padding: 3px 10px;
    border-radius: 20px; border: 1.5px solid;
}
.biz-copy-name-btn {
    background: #fff; border: 2px solid #fde68a; border-radius: 8px;
    padding: 6px 10px; font-size: 14px; cursor: pointer; transition: all 0.2s;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
}
.biz-copy-name-btn:hover { border-color: #f59e0b; background: #fef3c7; }

.biz-name-reason {
    padding: 10px 16px; font-size: 12px; color: #6b7280;
    border-top: 1px solid #fef3c7; line-height: 1.5;
    background: #fff;
}

/* Error */
.biz-error { display: flex; align-items: center; gap: 8px; padding: 20px; background: #fff5f5; border-radius: 12px; color: #dc2626; font-size: 14px; }

/* Info Box */
.info-box { background: linear-gradient(135deg,#fffbeb,#fef3c7); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
.info-box h4 { color: #78350f; font-size: 20px; margin-bottom: 18px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 14px; }
.info-item { background: #fff; border-radius: 12px; padding: 16px; font-size: 14px; color: #374151; line-height: 1.6; }
.info-item strong { display: block; color: #d97706; font-size: 14px; font-weight: 700; margin-bottom: 4px; }

@media (max-width: 860px) { .biz-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .biz-style-grid { grid-template-columns: repeat(2,1fr); } .biz-lang-group { flex-wrap: wrap; } }