/* =====================================================
   QUOTATION - Request Quotation Flow
   4 steps: Client Info → Files → Garments → Review
   ===================================================== */

/* ============================================
   APP LAYOUT
============================================ */
.app {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.app-main {
    flex: 1;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
}

/* ============================================
   HEADER - Matching sample/bulk structure
============================================ */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
    z-index: 100;
}

.app-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-header__back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.app-header__back:hover {
    border-color: var(--glass-border-hover);
    color: var(--text-primary);
}

.app-header__back svg {
    width: 18px;
    height: 18px;
}

.app-header__info h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.app-header__step {
    font-size: 12px;
    color: var(--text-muted);
}

.app-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* User Badge - Hidden on quotation page */

/* Step Progress */
.step-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-progress__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border: 2px solid var(--glass-border);
    transition: all 0.3s var(--ease-out);
}

.step-progress__dot.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.step-progress__dot.completed {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.step-progress__line {
    width: 40px;
    height: 2px;
    background: var(--glass-border);
}

.step-progress__line.completed {
    background: var(--accent-green);
}

/* Old progress-dots classes removed - now using step-progress */

/* ============================================
   STEP LAYOUT
============================================ */
.step-container {
    display: none;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    gap: 16px;
}

.step-container.active {
    display: flex;
}

@media (min-width: 900px) {
    .step-container {
        max-width: 800px;
    }
}

.step-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 32px;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-content--narrow {
    max-width: 700px;
}

/* ============================================
   SECTION CARDS (Matching accessories)
============================================ */
.section-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
}

.section-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-card__title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.section-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* ============================================
   BUTTON VARIANTS
============================================ */
.btn--icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn--icon:hover {
    background: var(--bg-tertiary);
    border-color: var(--glass-border-hover);
}

.btn--icon svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FORM ROWS & GROUPS
============================================ */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group--full {
    grid-column: 1 / -1;
}

/* ============================================
   UPLOAD ZONE
============================================ */
.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.upload-zone:hover {
    border-color: var(--glass-border-hover);
    background: var(--bg-secondary);
}

.upload-zone.dragover {
    border-color: var(--accent-blue);
    background: var(--accent-blue-dim);
}

.upload-zone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-zone__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-zone__icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
}

.upload-zone__text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.upload-zone__hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* File Browser (matching sample/bulk design) */
.file-browser {
    display: none;
}

.file-browser.visible {
    display: block;
}

.file-browser__empty {
    padding: 32px;
    text-align: center;
    color: var(--text-muted);
}

.file-browser__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    max-height: 250px;
    overflow-y: auto;
    padding: 4px;
}

.file-browser__item {
    padding: 12px;
    background: var(--bg-secondary);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.file-browser__item:hover {
    border-color: var(--glass-border-hover);
}

.file-browser__item.selected {
    border-color: var(--accent-green);
    background: var(--accent-green-dim);
}

.file-browser__item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-browser__item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

.file-browser__item-name {
    font-size: 11px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-browser__item-size {
    font-size: 10px;
    color: var(--text-muted);
}

/* Legacy file browser classes (for backwards compatibility) */
.file-browser__meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* File List */
.file-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.file-item__icon {
    width: 40px;
    height: 40px;
    background: var(--accent-blue-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

.file-item__info {
    flex: 1;
    min-width: 0;
}

.file-item__name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-item__size {
    font-size: 11px;
    color: var(--text-muted);
}

.file-item__remove {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.file-item__remove:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.file-item__remove svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   TIPS LIST
============================================ */
.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.tips-list li::before {
    content: '→';
    color: var(--accent-green);
    font-weight: bold;
}

/* Section Card Tips Variant */
.section-card--tips {
    background: var(--bg-secondary);
}

.section-card--tips .section-card__title svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 24px;
}

.step-header__title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px;
}

.step-header__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FORM SECTIONS
============================================ */
.form-section {
    margin-bottom: 24px;
}

.form-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.form-section__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section__title svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.form-section__content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
}

.form-section__desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 16px;
    line-height: 1.5;
}

.form-section--terms .form-section__content {
    background: transparent;
    border: none;
    padding: 0;
}

/* Form Elements */
.form-row {
    margin-bottom: 16px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row--2col {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.required {
    color: var(--accent-red);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    transition: border-color 0.2s, background 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--bg-tertiary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 24px 0;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--primary,
.badge--required {
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
}

.badge--muted,
.badge--optional {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox__input {
    position: absolute;
    opacity: 0;
}

.checkbox__box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: var(--bg-input);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox__input:checked + .checkbox__box {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.checkbox__input:checked + .checkbox__box::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.checkbox__text a {
    color: var(--accent-blue);
    text-decoration: none;
}

.checkbox__text a:hover {
    text-decoration: underline;
}

/* ============================================
   NOTICE BANNERS
============================================ */
.notice {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.notice--warning {
    background: var(--accent-amber-dim);
    border: 1px solid var(--accent-amber);
}

.notice--warning .notice__icon {
    color: var(--accent-amber);
}

.notice--muted {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.notice--muted .notice__icon {
    color: var(--text-muted);
}

.notice__icon {
    flex-shrink: 0;
}

.notice__icon svg {
    width: 20px;
    height: 20px;
}

.notice__content {
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   GARMENT CARDS (Step 3)
============================================ */
.garment-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.garment-card-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.2s;
}

.garment-card-row:hover {
    border-color: var(--glass-border-hover);
}

.garment-card-row__image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    overflow: hidden;
}

.garment-card-row__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.garment-card-row__content {
    flex: 1;
    min-width: 0;
}

.garment-card-row__number {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.garment-card-row__name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.garment-card-row__fabric {
    font-size: 13px;
    color: var(--text-secondary);
}

.garment-card-row__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.garment-card-row__btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.garment-card-row__btn:hover {
    border-color: var(--glass-border-hover);
    color: var(--text-primary);
}

.garment-card-row__btn--danger:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
}

/* Add Card Button */
.add-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 20px;
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 24px;
}

.add-card:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.add-card__icon {
    font-size: 20px;
    font-weight: 300;
}

/* Empty State */
.empty-card {
    text-align: center;
    padding: 48px 24px;
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    margin-bottom: 24px;
}

.empty-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.empty-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* ============================================
   REVIEW SECTION (Step 4)
============================================ */
.review-section {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.review-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.review-section__title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-section__title svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.review-section__content {
    padding: 20px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.review-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
    .review-grid,
    .review-grid--3col {
        grid-template-columns: 1fr;
    }
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-item--full {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.review-item__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.review-item__value {
    font-size: 14px;
    font-weight: 500;
}

/* Review Files */
.review-files {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-file {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 12px;
}

.review-file svg {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

/* Garments Summary */
.garments-summary {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.garments-summary__count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 700;
}

.garments-summary__label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Garments Preview */
.garments-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.garment-preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.garment-preview-card__image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
}

.garment-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.garment-preview-card__info {
    flex: 1;
}

.garment-preview-card__name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.garment-preview-card__details {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   SUCCESS INLINE
============================================ */
.success-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.success-inline__content {
    max-width: 500px;
    text-align: center;
}

.success-inline__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    color: var(--accent-green);
}

.success-inline__icon svg {
    width: 100%;
    height: 100%;
    animation: success-draw 0.8s ease-out forwards;
}

@keyframes success-draw {
    0% { stroke-dasharray: 300; stroke-dashoffset: 300; }
    100% { stroke-dasharray: 300; stroke-dashoffset: 0; }
}

.success-inline__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
}

.success-inline__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 32px;
}

.success-inline__details {
    margin-bottom: 32px;
}

.success-inline__detail-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
}

.success-inline__detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.success-inline__detail-row:last-child {
    border-bottom: none;
}

.success-inline__detail-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.success-inline__detail-value {
    font-size: 13px;
    font-weight: 500;
}

.success-inline__detail-value--highlight {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-green);
}

.success-inline__next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.success-inline__next-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    text-align: center;
}

.success-inline__steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-inline__step-item {
    display: flex;
    gap: 12px;
}

.success-inline__step-number {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.success-inline__step-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}

.success-inline__step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.success-inline__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ============================================
   MODALS
============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal__container {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
}

.modal__container--wide {
    max-width: 900px;
    max-height: 95vh;
}

/* Fabric modal - proper modal size, not fullscreen */
.modal__container--fabric {
    max-width: 900px;
    max-height: 85vh;
}

@media (max-width: 960px) {
    .modal__container--fabric {
        max-width: 95vw;
    }
}

.modal__container--small {
    max-width: 400px;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.modal__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.modal__back,
.modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal__back:hover,
.modal__close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal__back svg,
.modal__close svg {
    width: 20px;
    height: 20px;
}

.modal__subtitle {
    padding: 12px 24px;
    background: var(--bg-secondary);
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.modal__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
}

/* ============================================
   UNIFIED SELECTION MODAL (50% bigger)
============================================ */
.modal__container--selection {
    max-width: 1020px;
    max-height: 90vh;
}

@media (max-width: 1100px) {
    .modal__container--selection {
        max-width: 95vw;
    }
}

/* GSM modal no longer used - GSM selection is now inline inside fabric cards */

.modal__header-spacer {
    width: 36px;
}

/* Selection Grid - Base */
.selection-grid {
    display: grid;
    gap: 12px;
}

/* Garments Grid - 5 columns for larger modal */
.selection-grid--garments {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .selection-grid--garments {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .selection-grid--garments {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Fabrics Grid - 5 columns for larger modal */
.selection-grid--fabrics {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .selection-grid--fabrics {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .selection-grid--fabrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Selection Card - Unified style for both */
.selection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s ease;
}

.selection-card:hover {
    border-color: var(--text-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.selection-card:active {
    transform: translateY(0);
}

/* Garment Card - Larger image for bigger modal */
.selection-card--garment .selection-card__image {
    width: 120px;
    height: 120px;
}

/* Fabric Card - Square image */
.selection-card--fabric .selection-card__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 8px;
}

.selection-card__image {
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.selection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selection-card__name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.2;
}

.selection-card__desc {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2px;
}

/* GSM Selection - Now inline inside fabric cards (see fabric-card__gsm-overlay) */

/* Legacy classes - keep for backwards compatibility */
.type-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s;
}

.type-card:hover {
    border-color: var(--text-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.type-card__image {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}

.type-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.type-card__name {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* Fabric Grid - Compact */
.fabric-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .fabric-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fabric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.fabric-card:hover {
    border-color: var(--text-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.fabric-card.selected {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 2px var(--text-primary);
}

.fabric-card__image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 10px;
}

.fabric-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fabric-card:hover .fabric-card__image img {
    transform: scale(1.05);
}

.fabric-card__image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-muted);
}

.fabric-card__content {
    text-align: center;
    width: 100%;
}

.fabric-card__name {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.fabric-card__desc {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* ============================================
   GSM OVERLAY (Inside Fabric Card)
============================================ */
.fabric-card__gsm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fabric-card.show-gsm .fabric-card__gsm-overlay {
    display: flex;
}

.fabric-card__gsm-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.fabric-card__gsm-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fabric-card__gsm-close svg {
    width: 12px;
    height: 12px;
}

.fabric-card__gsm-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.fabric-card__gsm-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.gsm-btn {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gsm-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.gsm-btn.selected {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ============================================
   SUBMISSION MODAL (Matching sample-request)
============================================ */
.submit-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
}

.submit-modal.active {
    opacity: 1;
    visibility: visible;
}

.submit-modal__box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 48px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s var(--ease-out);
}

.submit-modal.active .submit-modal__box {
    transform: scale(1) translateY(0);
}

.submit-modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.submit-modal__icon--loading {
    background: var(--accent-blue-dim);
}

.submit-modal__icon--loading::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 3px solid transparent;
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.submit-modal__icon--loading svg {
    width: 36px;
    height: 36px;
    color: var(--accent-blue);
}

.submit-modal__icon--success {
    background: var(--accent-green-dim);
}

.submit-modal__icon--success svg {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

.submit-modal__icon--error {
    background: rgba(239, 68, 68, 0.15);
}

.submit-modal__icon--error svg {
    width: 40px;
    height: 40px;
    color: #ef4444;
}

.submit-modal__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.submit-modal__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.submit-modal__message {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Progress Bar */
.submit-progress {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin: 16px 0;
}

.submit-progress__bar {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: width 0.3s;
    width: 0%;
}

/* Order ID Display */
.order-id-display {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.order-id-display__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.order-id-display__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-green);
}

/* Modal Actions */
.submit-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.submit-modal__actions .btn {
    width: 100%;
    justify-content: center;
}

.submit-modal__actions .btn--primary {
    padding: 14px 24px;
}

.submit-modal__actions .btn--ghost {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.submit-modal__actions .btn--ghost:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* ============================================
   FOOTER COUNTER
============================================ */
.footer-counter {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   AUTOSAVE INDICATOR
============================================ */
.autosave-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.autosave-indicator svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   CHECKBOX FIELDS (Matching accessories)
============================================ */
.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-field input {
    display: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-field:hover .checkbox-box {
    border-color: var(--glass-border-hover);
}

.checkbox-field input:checked + .checkbox-box {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.checkbox-box svg {
    width: 12px;
    height: 12px;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.checkbox-field input:checked + .checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.4;
}

.checkbox-label a {
    color: var(--accent-blue);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER STATS (Matching accessories)
============================================ */
.footer-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   QUANTITY SLIDER (Step 1)
============================================ */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.quantity-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -2px;
    min-width: 110px;
    text-align: right;
}

.quantity-unit {
    font-size: 13px;
    color: var(--text-muted);
}

.quantity-slider-wrap {
    flex: 1;
}

.quantity-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: var(--glass-border);
    border-radius: 3px;
    cursor: pointer;
}

.quantity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.quantity-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.quantity-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

/* ============================================
   EDIT BUTTON (Review Section)
============================================ */
.btn--edit {
    padding: 6px 12px;
    font-size: 11px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn--edit:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ============================================
   APP FOOTER (ensure visibility)
============================================ */
.app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    flex-shrink: 0;
}

/* ============================================
   EXIT BUTTON
============================================ */
.btn-exit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.btn-exit:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.btn-exit svg {
    width: 16px;
    height: 16px;
}

[data-theme="light"] .btn-exit {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

[data-theme="light"] .btn-exit:hover {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.25);
}

/* ============================================
   EXIT MODAL
============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 28px;
    height: 28px;
    color: #ef4444;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-btn--cancel {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.modal-btn--cancel:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.modal-btn--confirm {
    background: #ef4444;
    border: 1px solid #ef4444;
    color: white;
}

.modal-btn--confirm:hover {
    background: #dc2626;
}

/* ============================================
   AUTH LOADING OVERLAY
============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-box {
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--accent-amber);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   AUTH REQUIRED MESSAGE
============================================ */
.auth-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 24px;
}

.auth-required__icon {
    width: 80px;
    height: 80px;
    background: var(--accent-amber-dim, rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-required__icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-amber, #f59e0b);
}

.auth-required__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-required__text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
}

.auth-required .btn {
    padding: 14px 32px;
}

/* ============================================
   AUTH MODAL (Account Required Popup)
============================================ */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-modal__container {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    margin: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s var(--ease-out);
}

.auth-modal.active .auth-modal__container {
    transform: scale(1) translateY(0);
}

.auth-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.auth-modal__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.auth-modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-modal__close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.auth-modal__close svg {
    width: 20px;
    height: 20px;
}

.auth-modal__body {
    padding: 32px 24px;
}

.auth-modal__content {
    text-align: center;
}

.auth-modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent-amber-dim, rgba(245, 158, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal__icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-amber, #f59e0b);
}

.auth-modal__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.6;
}

.auth-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-modal__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-modal__btn svg {
    width: 18px;
    height: 18px;
}

.auth-modal__btn--primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
}

.auth-modal__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.auth-modal__btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.auth-modal__btn--secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--glass-border-hover);
}

.auth-modal__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    font-size: 12px;
    color: var(--text-muted);
}

.auth-modal__footer svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
