/* Kinoko Line 2.0 Custom Styles */

/* Color Variables */
:root {
    --kinoko-yellow: #E8D68C;
    --kinoko-yellow-light: #F5EED6;
    --kinoko-brown: #8B7355;
    --kinoko-brown-dark: #6B5A45;
    --kinoko-text: #333333;
    --kinoko-gray: #666666;
    --kinoko-light-gray: #F5F5F5;
    --kinoko-border: #E0E0E0;
    --kinoko-success: #4CAF50;
    --kinoko-danger: #F44336;
    --kinoko-warning: #FF9800;
}

/* Base Styles */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #FFFFFF;
    color: var(--kinoko-text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
.kinoko-header {
    background-color: #E8D68C;
    background-color: var(--kinoko-yellow, #E8D68C);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 50px;
}

.kinoko-header .logo {
    height: 40px;
    max-width: 200px;
}

.kinoko-header .logo-text {
    font-weight: bold;
    font-size: 18px;
    color: #8B7355;
    color: var(--kinoko-brown, #8B7355);
}

/* Hide logo-text when logo image loads */
.kinoko-header .logo:not([src=""]) + .logo-text {
    display: none;
}

.kinoko-header .back-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B7355;
    color: var(--kinoko-brown, #8B7355);
    font-size: 20px;
    text-decoration: none;
}

/* Page Title */
.page-title {
    background-color: var(--kinoko-yellow-light);
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--kinoko-text);
    border-bottom: 1px solid var(--kinoko-border);
}

/* Container */
.kinoko-container {
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Card */
.kinoko-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.kinoko-card-header {
    background-color: var(--kinoko-yellow-light);
    padding: 12px 15px;
    font-weight: bold;
    border-bottom: 1px solid var(--kinoko-border);
}

.kinoko-card-body {
    padding: 15px;
}

/* Info Card (Reservation Summary) */
.info-card {
    background-color: var(--kinoko-light-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.info-card-title {
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--kinoko-border);
}

.info-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid var(--kinoko-border);
}

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

.info-label {
    width: 100px;
    color: var(--kinoko-gray);
    font-size: 13px;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    font-size: 14px;
}

/* Form Elements */
.kinoko-form-group {
    margin-bottom: 15px;
}

.kinoko-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.kinoko-label .required {
    color: var(--kinoko-danger);
    font-size: 12px;
    margin-left: 5px;
}

.kinoko-input,
.kinoko-select,
.kinoko-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--kinoko-border);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.kinoko-input:focus,
.kinoko-select:focus,
.kinoko-textarea:focus {
    outline: none;
    border-color: var(--kinoko-brown);
}

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

/* Radio & Checkbox */
.kinoko-radio-group,
.kinoko-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kinoko-radio,
.kinoko-checkbox {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--kinoko-light-gray);
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    min-width: calc(50% - 5px);
}

.kinoko-radio input,
.kinoko-checkbox input {
    margin-right: 8px;
}

.kinoko-radio.active,
.kinoko-checkbox.active {
    background-color: var(--kinoko-yellow-light);
    border: 2px solid var(--kinoko-brown);
}

/* Tabs */
.kinoko-tabs {
    display: flex;
    border-bottom: 2px solid var(--kinoko-border);
    margin-bottom: 20px;
}

.kinoko-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    color: var(--kinoko-gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-weight: bold;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
}

.kinoko-tab.active {
    color: var(--kinoko-brown);
    border-bottom-color: var(--kinoko-brown);
}

/* Buttons */
.kinoko-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.kinoko-btn-primary {
    background-color: var(--kinoko-brown);
    color: #FFFFFF;
}

.kinoko-btn-primary:hover {
    background-color: var(--kinoko-brown-dark);
    color: #FFFFFF;
    text-decoration: none;
}

.kinoko-btn-secondary {
    background-color: var(--kinoko-light-gray);
    color: var(--kinoko-text);
    border: 1px solid var(--kinoko-border);
}

.kinoko-btn-secondary:hover {
    background-color: #EEEEEE;
    text-decoration: none;
}

.kinoko-btn-danger {
    background-color: var(--kinoko-danger);
    color: #FFFFFF;
}

.kinoko-btn-success {
    background-color: var(--kinoko-success);
    color: #FFFFFF;
}

.kinoko-btn-outline {
    background-color: transparent;
    color: var(--kinoko-brown);
    border: 2px solid var(--kinoko-brown);
}

.kinoko-btn-outline:hover {
    background-color: var(--kinoko-yellow-light);
}

.kinoko-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.kinoko-btn-small {
    padding: 10px 20px;
    font-size: 14px;
    width: auto;
    display: inline-block;
}

/* Button Group */
.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-group-horizontal {
    display: flex;
    gap: 10px;
}

.btn-group-horizontal .kinoko-btn {
    flex: 1;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 200px;
    background-color: var(--kinoko-light-gray);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Location Input */
.location-input-group {
    position: relative;
}

.location-input-group .kinoko-input {
    padding-right: 45px;
}

.location-input-group .map-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--kinoko-brown);
    font-size: 20px;
    cursor: pointer;
}

/* Date/Time Picker */
.datetime-group {
    display: flex;
    gap: 10px;
}

.datetime-group .kinoko-input {
    flex: 1;
}

/* Price Display */
.price-display {
    text-align: center;
    padding: 20px;
    background-color: var(--kinoko-yellow-light);
    border-radius: 8px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 14px;
    color: var(--kinoko-gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--kinoko-brown);
}

.price-value small {
    font-size: 16px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending {
    background-color: var(--kinoko-warning);
    color: #FFFFFF;
}

.status-confirmed {
    background-color: var(--kinoko-success);
    color: #FFFFFF;
}

.status-cancelled {
    background-color: var(--kinoko-danger);
    color: #FFFFFF;
}

.status-completed {
    background-color: var(--kinoko-gray);
    color: #FFFFFF;
}

/* Waiting Animation */
.waiting-container {
    text-align: center;
    padding: 40px 20px;
}

.waiting-icon {
    font-size: 60px;
    color: var(--kinoko-brown);
    margin-bottom: 20px;
}

.waiting-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.waiting-subtext {
    font-size: 14px;
    color: var(--kinoko-gray);
}

/* Driver Info Card */
.driver-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--kinoko-light-gray);
    border-radius: 8px;
    margin-bottom: 15px;
}

.driver-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #CCCCCC;
    margin-right: 15px;
    overflow: hidden;
}

.driver-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.driver-info {
    flex: 1;
}

.driver-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.driver-detail {
    font-size: 13px;
    color: var(--kinoko-gray);
}

/* Vehicle Info */
.vehicle-info {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.vehicle-icon {
    font-size: 24px;
    color: var(--kinoko-brown);
    margin-right: 10px;
}

/* List Item */
.list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--kinoko-border);
    cursor: pointer;
}

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

.list-item-content {
    flex: 1;
}

.list-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.list-item-subtitle {
    font-size: 13px;
    color: var(--kinoko-gray);
}

.list-item-arrow {
    color: var(--kinoko-gray);
}

/* MyPage Menu */
.mypage-menu {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mypage-menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--kinoko-border);
    text-decoration: none;
    color: var(--kinoko-text);
}

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

.mypage-menu-item:hover {
    background-color: var(--kinoko-light-gray);
    text-decoration: none;
}

.mypage-menu-icon {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: var(--kinoko-brown);
}

.mypage-menu-text {
    flex: 1;
}

.mypage-menu-arrow {
    color: var(--kinoko-gray);
}

/* History List */
.history-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.history-date {
    font-size: 12px;
    color: var(--kinoko-gray);
    margin-bottom: 5px;
}

.history-route {
    font-weight: bold;
    margin-bottom: 5px;
}

.history-price {
    color: var(--kinoko-brown);
    font-weight: bold;
}

/* Alert/Notice */
.kinoko-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.kinoko-alert-info {
    background-color: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

.kinoko-alert-warning {
    background-color: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFE0B2;
}

.kinoko-alert-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.kinoko-alert-danger {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

/* Divider */
.kinoko-divider {
    height: 1px;
    background-color: var(--kinoko-border);
    margin: 15px 0;
}

/* Spacing */
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }

/* Text */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--kinoko-gray); }
.text-small { font-size: 12px; }
.text-bold { font-weight: bold; }

/* Complete/Success Icon */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--kinoko-success);
    color: #FFFFFF;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.success-message {
    color: var(--kinoko-gray);
    font-size: 14px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.rating-star {
    font-size: 30px;
    color: #DDD;
    cursor: pointer;
}

.rating-star.active {
    color: #FFD700;
}

/* Footer */
.kinoko-footer {
    padding: 20px;
    text-align: center;
    color: var(--kinoko-gray);
    font-size: 12px;
    background-color: var(--kinoko-light-gray);
    margin-top: 30px;
}

/* Counter Input */
.counter-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1px solid var(--kinoko-border);
    background-color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.counter-value {
    width: 35px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

/* Table */
.kinoko-table {
    width: 100%;
    border-collapse: collapse;
}

.kinoko-table th,
.kinoko-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--kinoko-border);
}

.kinoko-table th {
    background-color: var(--kinoko-light-gray);
    font-weight: bold;
}

/* Countdown Timer */
.countdown-container {
    background: #fff;
    border: 2px dashed var(--kinoko-yellow);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.countdown-icon {
    font-size: 30px;
    color: var(--kinoko-brown);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 14px;
    color: var(--kinoko-gray);
    margin-bottom: 5px;
}

.countdown-timer {
    font-size: 32px;
    font-weight: bold;
    color: var(--kinoko-brown);
    font-family: monospace;
}

/* Cancel Policy Table */
.cancel-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.cancel-policy-table th,
.cancel-policy-table td {
    padding: 10px 12px;
    border: 1px solid var(--kinoko-border);
    text-align: left;
}

.cancel-policy-table th {
    background-color: var(--kinoko-light-gray);
    font-weight: bold;
    width: 60%;
}

.cancel-policy-table td {
    text-align: center;
    font-weight: bold;
}

/* Modal */
.kinoko-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.kinoko-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kinoko-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--kinoko-border);
    background: var(--kinoko-yellow-light);
}

.kinoko-modal-title {
    font-weight: bold;
    font-size: 16px;
}

.kinoko-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--kinoko-gray);
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.kinoko-modal-body {
    padding: 15px 20px;
    overflow-y: auto;
    flex: 1;
}

/* MyPage Section */
.mypage-section {
    margin-bottom: 20px;
}

.mypage-section-title {
    font-size: 13px;
    color: var(--kinoko-gray);
    padding: 10px 15px;
    background: var(--kinoko-light-gray);
    border-radius: 8px 8px 0 0;
}

.mypage-section-content {
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mypage-link {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--kinoko-border);
    text-decoration: none;
    color: var(--kinoko-text);
}

.mypage-link:last-child {
    border-bottom: none;
}

.mypage-link:hover {
    background-color: var(--kinoko-light-gray);
    text-decoration: none;
}

.mypage-link i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: var(--kinoko-brown);
}

.mypage-link span {
    flex: 1;
}

.mypage-link .fa-chevron-right {
    color: var(--kinoko-gray);
    font-size: 12px;
}

/* Location Type Grid */
.location-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.location-type-option {
    cursor: pointer;
}

.location-type-option input {
    display: none;
}

.location-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: var(--kinoko-light-gray);
    border: 2px solid var(--kinoko-border);
    border-radius: 12px;
    transition: all 0.2s;
}

.location-type-card i {
    font-size: 32px;
    color: var(--kinoko-brown);
    margin-bottom: 10px;
}

.location-type-card span {
    font-size: 14px;
    font-weight: bold;
    color: var(--kinoko-text);
}

.location-type-option input:checked + .location-type-card {
    background: var(--kinoko-yellow-light);
    border-color: var(--kinoko-yellow);
}

.location-type-option:hover .location-type-card {
    background: #f5f5f5;
}

/* Other Tab Info Section */
.other-info-section {
    background: var(--kinoko-yellow-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.other-info-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--kinoko-brown);
}

.other-info-subtitle {
    font-weight: bold;
    font-size: 13px;
    margin: 15px 0 10px;
    color: var(--kinoko-text);
}

.other-info-list {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.8;
}

.other-info-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--kinoko-text);
}

/* LINE Contact Button */
.line-contact-btn {
    display: block;
    background: #06C755;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 20px;
}

.line-contact-btn:hover {
    background: #05B04A;
    color: #fff;
    text-decoration: none;
}

.line-contact-btn i {
    margin-right: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.social-link {
    font-size: 24px;
    color: var(--kinoko-brown);
    text-decoration: none;
}

.social-link:hover {
    color: var(--kinoko-brown-dark);
}

/* Status Icon Container */
.status-icon-container {
    text-align: center;
    padding: 30px 20px;
}

.status-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.status-icon.success {
    color: var(--kinoko-success);
}

.status-icon.warning {
    color: var(--kinoko-warning);
}

.status-icon.danger {
    color: var(--kinoko-danger);
}

.status-icon.info {
    color: var(--kinoko-brown);
}

.status-message {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--kinoko-text);
}

.status-submessage {
    font-size: 14px;
    color: var(--kinoko-gray);
    line-height: 1.6;
}

/* Notice Box */
.notice-box {
    background: var(--kinoko-yellow-light);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 13px;
    color: var(--kinoko-text);
}

.notice-box.important {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    color: var(--kinoko-danger);
}

/* Optional Label */
.kinoko-label .optional {
    color: var(--kinoko-gray);
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
}

/* Receipt Item */
.receipt-item {
    padding: 15px;
    border-bottom: 1px solid var(--kinoko-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

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

.receipt-info {
    flex: 1;
}

.receipt-date {
    font-size: 12px;
    color: var(--kinoko-gray);
    margin-bottom: 3px;
}

.receipt-route {
    font-size: 14px;
    font-weight: bold;
    color: var(--kinoko-text);
    margin-bottom: 3px;
}

.receipt-amount {
    font-size: 14px;
    color: var(--kinoko-brown);
    font-weight: bold;
}

.receipt-btn {
    white-space: nowrap;
    padding: 8px 12px !important;
    font-size: 12px !important;
}

/* History Card (for new history layout) */
.history-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.history-card-content {
    padding: 15px;
}

.history-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.history-card-row:last-child {
    border-bottom: none;
}

.history-card-label {
    font-size: 12px;
    color: var(--kinoko-gray);
    flex-shrink: 0;
    width: 80px;
}

.history-card-value {
    font-size: 14px;
    color: var(--kinoko-text);
    text-align: right;
    flex: 1;
}

.history-card-actions {
    padding: 10px 15px 15px;
    text-align: center;
}

/* Location Item in Modal */
.location-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--kinoko-border);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.location-item:hover {
    background: var(--kinoko-light-gray);
    border-color: var(--kinoko-brown);
}

.location-item i {
    font-size: 20px;
    color: var(--kinoko-brown);
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.location-item-content {
    flex: 1;
}

.location-item-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
}

.location-item-address {
    font-size: 12px;
    color: var(--kinoko-gray);
}

/* Registered Location Button */
.registered-location-btn {
    display: inline-block;
    padding: 8px 15px;
    background: var(--kinoko-yellow);
    color: var(--kinoko-brown);
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    margin-top: 8px;
}

.registered-location-btn:hover {
    background: #DBC67A;
}

/* Route Map Display */
.route-map-container {
    background: var(--kinoko-light-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.route-map-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.route-map-item {
    text-align: center;
}

.route-map-item .label {
    font-size: 12px;
    color: var(--kinoko-gray);
    margin-bottom: 5px;
}

.route-map-item .value {
    font-size: 18px;
    font-weight: bold;
    color: var(--kinoko-brown);
}

/* Responsive */
@media (max-width: 480px) {
    .kinoko-container {
        padding: 10px;
    }

    .kinoko-btn {
        padding: 12px;
        font-size: 15px;
    }

    .price-value {
        font-size: 28px;
    }

    .countdown-timer {
        font-size: 28px;
    }

    .location-type-grid {
        gap: 10px;
    }

    .location-type-card {
        padding: 20px 10px;
    }

    .location-type-card i {
        font-size: 28px;
    }
}

/* ===== Step Indicator ===== */
.step-indicator {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15px 0 20px;
    padding: 0 10px;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}
.step-item.active .step-dot {
    background: #E8D68C;
    color: #333;
}
.step-item.done .step-dot {
    background: #8B7355;
    color: #fff;
}
.step-label {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}
.step-item.active .step-label {
    color: #333;
    font-weight: bold;
}
.step-item.done .step-label {
    color: #8B7355;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin-top: 14px;
    min-width: 20px;
}
.step-line.done {
    background: #8B7355;
}
