/**
 * Pocket-Sommelier - Component Styles
 * Wiederverwendbare UI-Komponenten
 */

/* ==================== Bento Grid ==================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* ==================== Bento Cards ==================== */
.bento-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    cursor: pointer;
}

.bento-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.1);
}

.bento-card:active {
    transform: scale(0.98);
}

.bento-card.featured {
    grid-column: span 2;
    background: var(--gold-gradient);
    color: white;
    border: none;
}

.bento-card.featured:hover {
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.bento-card.featured:active {
    transform: translateY(0) scale(0.99);
}

/* ==================== Badge / Tag ==================== */
.badge-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
}

/* ==================== Settings Card ==================== */
.settings-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.15s ease;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item:hover {
    background: var(--stone-50);
}

.settings-item:active {
    background: var(--gray-100);
}

/* ==================== Section Header ==================== */
.section-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.25rem;
    margin-bottom: 0.375rem;
}

/* ==================== Premium Banner ==================== */
.premium-banner {
    background: var(--gold-gradient);
    border-radius: 1rem;
    padding: 1rem;
    color: white;
}

/* ==================== Toggle Switch ==================== */
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.toggle-switch.active {
    background: var(--gold);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

/* ==================== Language Selector ==================== */
.lang-select {
    appearance: none;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-800);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    transition: border-color 0.2s ease;
}

.lang-select:hover {
    border-color: var(--gold);
}

.lang-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* ==================== Buttons ==================== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #92702D 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--gray-800);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-danger {
    background: #EF4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
}

.btn-danger.enabled {
    opacity: 1;
    pointer-events: auto;
}

.btn-danger.enabled:hover {
    background: #DC2626;
}

/* ==================== Notify Button ==================== */
.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.notify-btn.subscribed {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ==================== Placeholder Screen ==================== */
.placeholder-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    min-height: 60vh;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
}

/* ==================== Modal ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary, white);
    width: 100%;
    max-width: 32rem;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1.5rem;
    padding-bottom: calc(var(--safe-area-bottom) + 1.5rem);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

/* ==================== Sub-Screen ==================== */
.sub-screen {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 60;
    display: none;
    flex-direction: column;
}

.sub-screen.active {
    display: flex;
}

.sub-screen-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    padding-top: calc(var(--safe-area-top) + 1rem);
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.sub-screen-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem;
}

.back-btn:hover {
    color: var(--gold-dark);
}

/* ==================== Delete Input ==================== */
.delete-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1em;
    transition: border-color 0.2s ease;
}

.delete-input:focus {
    outline: none;
    border-color: #EF4444;
}

.delete-input.valid {
    border-color: #EF4444;
    background: #FEF2F2;
}

/* ==================== Toast ==================== */
.toast {
    position: fixed;
    bottom: calc(var(--nav-height) + var(--safe-area-bottom) + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 200;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==================== Input Fields ==================== */
.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    background: white;
    transition: all 0.2s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.input-field::placeholder {
    color: var(--gray-400);
}

/* ==================== Avatar ==================== */
.avatar {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar svg {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
}

/* ==================== Status Badge ==================== */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.free {
    background: var(--gray-100);
    color: var(--gray-600);
}

.status-badge.premium {
    background: var(--gold);
    color: white;
}

/* ==================== Premium Plan Selector ==================== */
.premium-modal-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Premium Modal Header */
.premium-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.premium-modal-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.premium-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.premium-modal-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 2px 0 0 0;
}

.premium-close-btn {
    color: var(--gray-400);
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem 0 0;
    cursor: pointer;
    line-height: 0;
}

/* Premium Subscribe Button */
.premium-subscribe-btn {
    width: 100%;
    padding: 0.875rem;
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #722F37 0%, #4B0D18 100%);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.35);
    transition: all 0.2s ease;
}

.premium-subscribe-btn:active {
    opacity: 0.9;
    transform: scale(0.98);
}

/* Premium Footer Notes */
.premium-cancel-note {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--gray-700);
}

.premium-restore-link {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--gray-500);
    cursor: pointer;
    text-decoration: underline;
}

.premium-fine-print {
    text-align: center;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.premium-terms-note,
.premium-privacy-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin: 0;
}

/* Impressum Modal */
.imprint-content {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-800);
}

.imprint-content p {
    margin: 0;
}

.imprint-content a {
    text-decoration: none;
}

.imprint-content a:hover {
    text-decoration: underline;
}

/* Privacy Modal */
.privacy-content {
    overflow-y: auto;
    max-height: calc(90vh - 5rem);
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--gray-800);
}

.privacy-content h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 1.5rem 0 0.5rem;
}

.privacy-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 1rem 0 0.375rem;
}

.privacy-content p {
    margin: 0.375rem 0;
}

.privacy-content ul {
    margin: 0.375rem 0;
    padding-left: 1.25rem;
}

.privacy-content li {
    margin: 0.2rem 0;
}

.privacy-content a {
    color: var(--gold);
    text-decoration: none;
}

.premium-plan-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Plan Card Base */
.plan-card {
    position: relative;
    width: 100%;
    background: var(--bg-secondary, white);
    border: 1.5px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1rem 1.125rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.plan-card.selected {
    border: 2px solid var(--gold);
    box-shadow:
        0 0 0 3px rgba(197, 160, 89, 0.12),
        0 4px 16px rgba(197, 160, 89, 0.10);
}

.plan-card:active {
    transform: scale(0.99);
}

/* Best Value Badge (floats above card) */
.plan-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
    display: none;
}

.plan-card.selected .plan-badge {
    display: block;
}

/* Plan Card Inner Layout */
.plan-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-card-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
}

.plan-card-right {
    text-align: right;
    flex-shrink: 0;
}

/* Radio Button */
.plan-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.plan-card.selected .plan-radio {
    border-color: var(--gold);
}

.plan-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    transform: scale(0);
    transition: transform 0.15s ease;
}

.plan-card.selected .plan-radio-dot {
    transform: scale(1);
}

/* Plan Card Typography */
.plan-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.plan-card-equivalent {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 1px;
}

.plan-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
}

#plan-monthly .plan-card-price {
    font-size: 1.125rem;
}

.plan-card-period {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Saving Badges Row */
.plan-badges-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.625rem;
    margin-left: 1.875rem; /* align with text after radio */
}

.plan-saving-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 650;
    padding: 3px 9px;
    border-radius: 9999px;
    letter-spacing: 0.01em;
}

/* ==================== Premium Modal Spacing ==================== */
.premium-content {
    padding: 1.75rem 1.5rem calc(var(--safe-area-bottom) + 1.75rem);
}

/* Yearly cards need extra top padding for the floating badge */
#plan-plus-yearly, #plan-premium-yearly {
    padding-top: 1.25rem;
    margin-top: 0.25rem;
}

/* ==================== Plan Tabs ==================== */
.premium-plan-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 3px;
    margin-bottom: 1.25rem;
}

.premium-plan-tab {
    flex: 1;
    padding: 10px 8px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.premium-plan-tab.active {
    background: var(--bg-primary, white);
    color: var(--gray-900);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.premium-plan-tab-badge {
    font-size: 0.625rem;
    font-weight: 700;
    background: var(--gold);
    color: white;
    padding: 2px 6px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Plan Details (tab content) */
.plan-details {
    display: none;
}
.plan-details.active {
    display: block;
}

/* Feature List */
.premium-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.premium-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.premium-feature-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--gold);
    margin-top: 2px;
}

.premium-feature-item span {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ==================== Home Scan Counter ==================== */
.home-scan-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--stone-50);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.home-scan-counter-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-scan-counter-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.home-scan-counter-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.home-scan-counter-fill.low {
    background: #ef4444;
}

.home-scan-counter-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.home-scan-counter-upgrade {
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* ==================== Scan Counter Badge (Camera View) ==================== */
.scan-counter-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    padding: 3px 8px;
    border-radius: 9999px;
    margin-top: 4px;
}

.scan-counter-badge.low {
    color: #fca5a5;
    background: rgba(239,68,68,0.25);
}

.scan-camera-topbar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* ==================== Scan Limit Reached Screen ==================== */
.scan-limit-reached {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 60vh;
}

.scan-limit-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.scan-limit-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.scan-limit-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 280px;
}

.scan-limit-upgrade-btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.75rem;
}

.scan-limit-back-btn {
    width: 100%;
    max-width: 280px;
}

/* ==================== Status Badge Variants ==================== */
.status-badge.trial {
    background: linear-gradient(135deg, var(--gold), #e8c065);
    color: white;
}

.status-badge.plus {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.status-badge.premium {
    background: linear-gradient(135deg, var(--gold), #d4a853);
    color: white;
}

/* ==================== FAQ Accordion ==================== */
.faq-item {
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.15s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: var(--stone-50);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-900);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 1rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

.faq-answer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ==================== Rate App Modal ==================== */
.rate-modal-body {
    padding: 0.5rem 0;
}

.rate-modal-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* Rate Steps (only active is visible) */
.rate-step {
    display: none;
}

.rate-step.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* Star Rating */
.rate-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.rate-star {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.rate-star svg {
    width: 40px;
    height: 40px;
    fill: var(--border-color, var(--gray-200));
    transition: fill 0.2s ease, transform 0.15s ease;
}

.rate-star:hover svg {
    transform: scale(1.15);
}

.rate-star:active {
    transform: scale(0.9);
}

.rate-star.active svg {
    fill: var(--gold);
}

.rate-star-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    min-height: 1.5rem;
    margin-top: 0.25rem;
    transition: opacity 0.2s ease;
}

/* Feedback Textarea */
.rate-feedback-textarea {
    resize: none;
    margin-bottom: 0.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.rate-feedback-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
