:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --accent: #0ea5e9;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    margin: 0;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
}

.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgb(233, 245, 255) 0%, rgb(255, 255, 255) 90.2%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header {
    margin-bottom: 2rem;
    text-align: center;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

/* Configurator (Left) */
.configurator {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.configurator h2 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #334155;
}

/* Radio Cards */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    background: #fff;
    transition: all 0.2s;
}

.radio-card input:checked+.card-content {
    border-color: var(--primary);
    background: #eff6ff;
}

.card-title {
    font-weight: 600;
}

.card-price {
    font-size: 0.9rem;
    color: var(--primary);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Select */
.select-wrapper select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    font-size: 1rem;
    background: #fff;
}

/* Parts List */
.parts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.5rem;
}

.part-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.part-item:hover {
    background: #f8fafc;
}

.part-item input {
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
}

.part-info {
    flex: 1;
}

.part-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.part-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Quote Preview (Right) */
.quote-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.sticky-wrapper {
    position: sticky;
    top: 2rem;
}

.quote-header {
    text-align: center;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.quote-header h3 {
    margin: 0;
    color: #475569;
}

.model-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

.quote-section {
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.line-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.line-item.total {
    font-weight: 600;
    border-top: 1px dashed #cbd5e1;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
}

.quote-total {
    background: #0f172a;
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.quote-total .label {
    font-size: 0.9rem;
}

.quote-total .amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.quote-footer-info {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.shop-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: left;
}

.shop-info strong {
    color: var(--primary);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.shop-info p {
    margin: 0.1rem 0;
}

.promotion-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.promotion-card h4 {
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-size: 1.1rem;
}

.promotion-card p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.95;
}

/* Chat Interface */
#chat-wrapper {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 600px;
    /* Fixed height for scroll */
    max-height: 80vh;
}

.chat-header {
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header .avatar {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.chat-title h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 4px;
}

.chat-history {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: fadeIn 0.3s ease-out;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-message.bot .message-content {
    background: #fff;
    color: var(--text-main);
    border-bottom-left-radius: 0.25rem;
    border: 1px solid var(--border);
}

.chat-message.user .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.chat-controls {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

/* Chat Options / Buttons */
.option-btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--primary);
    background: #fff;
    color: var(--primary);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
}

.option-btn:hover {
    background: var(--primary);
    color: white;
}

.option-btn.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Checkbox Cards for Options */
.option-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Lineup Page Styles --- */
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.model-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.model-card:not(.disabled):hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.model-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f5f9;
}

.model-image-placeholder {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.model-image-placeholder::after {
    content: "🏍️";
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-10deg);
}

.model-image-placeholder.disabled {
    background: #f8fafc;
    color: #cbd5e1;
}

.model-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.model-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem 0;
    flex: 1;
}

.btn-estimate {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.2s;
}

.model-card:not(.disabled):hover .btn-estimate {
    background: var(--primary-hover);
}

.model-card.disabled {
    cursor: default;
    opacity: 0.8;
}

.btn-disabled {
    background: #e2e8f0;
    color: #94a3b8;
}

/* --- Print Styles --- */
@media print {

    /* Hide non-quote elements */
    .header,
    /* Hide Main Title Header */
    .chat-container,
    .promotion-card,
    .app-background,
    #action-btn-container {
        display: none !important;
    }

    /* Standardize Print Page */
    @page {
        size: A4;
        margin: 15mm;
    }

    .quote-total {
        background: #fff !important;
        color: #000 !important;
        border: 2px solid #000;
        page-break-inside: avoid;
        margin-top: 2rem;
    }

    body {
        background: #fff;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #000;
        /* Ensure content is visible/reset on print */
        overflow: visible; 
    }

    .container,
    .main-content {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    aside.quote-preview {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .sticky-wrapper {
        position: static;
    }

    .quote-card {
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    /* Ensure text doesn't overflow */
    .line-item {
        break-inside: avoid;
    }

    .quote-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* Force black text */
    * {
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
/* End of print styles */

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 2rem;
        border-radius: 1rem;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        animation: fadeIn 0.3s;
    }

    .close-modal {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-modal:hover,
    .close-modal:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .modal h2 {
        margin-top: 0;
        color: var(--primary);
    }

    .modal .form-group input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .required {
        color: red;
    }

    .btn-save {
        width: 100%;
        padding: 1rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
    }

    .btn-save:hover {
        background: var(--primary-hover);
    }

    /* Save Button in Quote Preview */
    .btn-save-trigger {
        width: 100%;
        background: #10b981;
        color: white;
        margin-top: 0.5rem;
    }

    .btn-save-trigger:hover {
        background: #059669;
    }

/* --- Reservation Page (Air Reserve style) --- */
.reservation-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.reservation-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 2rem;
    background: #fff;
    border: 1px solid var(--border);
}

.reservation-steps .step.active {
    color: var(--primary);
    border-color: var(--primary);
    background: #eff6ff;
    font-weight: 600;
}

.reservation-steps .step.done {
    color: #059669;
    border-color: #a7f3d0;
    background: #ecfdf5;
}

.reservation-steps .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--border);
    font-size: 0.75rem;
    font-weight: 700;
}

.reservation-steps .step.active .step-num {
    background: var(--primary);
    color: #fff;
}

.reservation-steps .step.done .step-num {
    background: #10b981;
    color: #fff;
}

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .reservation-summary {
        order: -1;
    }
}

.reservation-main {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.reservation-panel {
    display: none;
}

.reservation-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.reservation-panel h2 {
    margin-top: 0;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.menu-select-lead {
    margin: -0.5rem 0 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.menu-select-group {
    margin-bottom: 1.5rem;
}

.menu-select {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    line-height: 1.5;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.purpose-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
}

.purpose-card:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.purpose-card.selected {
    border-color: var(--primary);
    background: #eff6ff;
}

.purpose-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.purpose-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.select-input,
.customer-form input[type="text"],
.customer-form input[type="tel"],
.customer-form input[type="email"],
.customer-form select,
.customer-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.customer-form textarea {
    resize: vertical;
}

.reservation-email-note {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.custom-question-field {
    padding-top: 0.25rem;
    border-top: 1px solid #e2e8f0;
}

.calendar-section {
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.cal-nav {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--primary);
}

.cal-nav:hover {
    background: #eff6ff;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.calendar-weekdays span:first-child {
    color: #ef4444;
}

.calendar-weekdays span:last-child {
    color: #2563eb;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.cal-day {
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.cal-day:not(.disabled):not(.empty):hover {
    border-color: var(--primary);
    background: #eff6ff;
}

.cal-day.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 700;
}

.cal-day.disabled {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
}

.cal-day.closed {
    text-decoration: line-through;
}

.cal-day.empty {
    border: none;
    background: transparent;
    cursor: default;
}

.calendar-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.time-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.15s;
}

.time-slot:not(.disabled):hover {
    border-color: var(--primary);
    background: #eff6ff;
}

.time-slot.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 600;
}

.time-slot.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    font-size: 0.8rem;
}

.loading-slots,
.no-slots {
    color: var(--text-muted);
    font-size: 0.9rem;
    grid-column: 1 / -1;
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.btn-next,
.btn-submit {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.btn-next:hover:not(:disabled),
.btn-submit:hover:not(:disabled) {
    background: var(--primary-hover);
}

.btn-next:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.btn-back {
    padding: 1rem 1.5rem;
    background: #fff;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.btn-back:hover {
    background: #f8fafc;
}

.btn-submit {
    background: #10b981;
}

.btn-submit:hover:not(:disabled) {
    background: #059669;
}

.reservation-summary .summary-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: sticky;
    top: 2rem;
}

.reservation-summary h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #475569;
}

.summary-list {
    margin: 0 0 1.5rem 0;
}

.summary-list dt {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.summary-list dt:first-child {
    margin-top: 0;
}

.summary-list dd {
    margin: 0.15rem 0 0 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.confirm-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.confirm-list {
    margin: 0;
}

.confirm-list dt {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.confirm-list dt:first-child {
    margin-top: 0;
}

.confirm-list dd {
    margin: 0.25rem 0 0 0;
    font-weight: 600;
}

.confirm-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.complete-card {
    text-align: center;
    padding: 2rem 1rem;
}

.complete-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.complete-card h2 {
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.complete-no {
    font-size: 1.1rem;
    color: var(--primary);
}

.complete-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}
