/* ТК-Удачный Mini App - Стиль Ozon */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #005bff;
    --primary-light: #e8f0ff;
    --secondary-color: #00a1ff;
    --success-color: #00b92d;
    --danger-color: #f93d3d;
    --warning-color: #ff9800;
    --text-color: #1f1f1f;
    --text-secondary: #787878;
    --border-color: #e5e5e5;
    --bg-color: #f0f0f0;
    --card-bg: #ffffff;
    --shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.4;
}

#app {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
}

/* Loading Screen */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 16px;
    color: var(--primary-color);
}

.loading-screen .el-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Mini App Container */
.mini-app {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-color);
    min-height: 100vh;
    padding-bottom: 70px;
}

/* Header - Ozon Style */
.app-header {
    background: white;
    padding: 8px 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.header-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    cursor: pointer;
}

.logo-icon {
    font-size: 20px;
}

.cart-icon {
    margin-left: auto;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-color);
}

/* Search Bar - Ozon Style */
.search-bar {
    padding: 0 12px 8px;
    background: white;
}

.search-bar .el-input {
    --el-input-border-radius: 8px;
}

.search-bar .el-input__wrapper {
    background-color: #f6f6f6;
    border: none;
    box-shadow: none;
}

.search-bar .el-input__inner {
    background-color: transparent;
    font-size: 14px;
}

/* Content Area */
.app-content {
    padding: 0;
}

.page {
    animation: fadeIn 0.2s ease;
}

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

/* Home Page */
.home-page {
    padding-bottom: 16px;
}

/* Welcome Banner - Ozon Style */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 16px;
    margin: 12px;
    border-radius: 12px;
}

.welcome-banner h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.welcome-banner p {
    font-size: 13px;
    opacity: 0.9;
}

/* Quick Actions - Ozon Style */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px;
    margin-bottom: 16px;
}

.action-card {
    background: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.action-card:active {
    transform: scale(0.97);
    border-color: var(--primary-color);
}

.action-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.action-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-color);
}

/* Categories - Grid Layout */
.categories-section {
    margin-bottom: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.section-link {
    color: var(--primary-color);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.categories-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 12px 12px;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-card-horizontal {
    background: white;
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
}

.category-card-horizontal:active {
    transform: scale(0.95);
    border-color: var(--primary-color);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 24px;
}

.category-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Banner Slider */
.banner-slider {
    margin: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
}

/* Products Section */
.products-section {
    margin-bottom: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 12px;
}

/* Product Card - Ozon Style */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
}

.product-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    font-size: 48px;
    color: var(--text-secondary);
}

.badge-new,
.badge-hit {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--success-color);
    color: white;
}

.badge-hit {
    background: var(--warning-color);
    color: white;
}

.product-info {
    padding: 8px;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    min-height: 34px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.current-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.old-price {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-stock {
    font-size: 11px;
    color: var(--success-color);
}

.product-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 6px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart-btn:active {
    background: var(--secondary-color);
}

/* Bottom Navigation - Ozon Style */
.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    z-index: 100;
    max-width: 600px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
    flex: 1;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item:active {
    opacity: 0.7;
}

.nav-icon {
    font-size: 22px;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
}

.nav-badge {
    position: relative;
}

.nav-badge .el-badge {
    position: absolute;
    top: -4px;
    right: -8px;
}

/* Category Page */
.category-page {
    padding-bottom: 16px;
}

.page-header-category {
    background: white;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.breadcrumb-item {
    cursor: pointer;
}

.breadcrumb-item:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--border-color);
}

.category-header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.subcategories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    background: white;
    margin-bottom: 8px;
}

.subcategories::-webkit-scrollbar {
    display: none;
}

.subcategory-chip {
    flex: 0 0 auto;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.subcategory-chip:active {
    background: var(--primary-color);
    color: white;
}

/* Product Detail Page */
.product-detail-page {
    background: white;
    min-height: 100vh;
}

.product-detail-images {
    width: 100%;
    aspect-ratio: 1;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 16px;
}

.product-detail-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.product-detail-price .current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--danger-color);
}

.product-detail-price .old-price {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-detail-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-detail-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--primary-light);
    border-radius: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 24px;
    text-align: center;
}

.add-to-cart-main {
    flex: 1;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.add-to-cart-main:active {
    background: var(--secondary-color);
}

/* Cart Page */
.cart-page {
    padding: 12px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.cart-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.cart-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f6f6f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.3;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-control .quantity {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.cart-footer {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

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

.cart-total-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.total-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--danger-color);
}

.cart-total-final {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 8px;
}

.cart-total-final .cart-total-value {
    font-size: 20px;
    color: var(--danger-color);
}

/* Multi-Point Cart Styles */
.multi-point-warning {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #e65100;
}

.warning-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.pickup-point-group {
    margin-bottom: 16px;
}

.pickup-point-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.pickup-point-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pickup-point-info {
    flex: 1;
    min-width: 0;
}

.pickup-point-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pickup-point-address {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pickup-point-summary {
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}

.cart-items-group {
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 8px;
}

.cart-items-group .cart-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    padding: 12px;
}

.cart-items-group .cart-item:last-child {
    border-bottom: none;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
}

.checkout-btn:active {
    background: var(--secondary-color);
}

/* Profile Page */
.profile-page {
    padding: 12px;
}

.profile-header {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.profile-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-page h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.profile-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.profile-bonus-card {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.profile-bonus-card .bonus-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.profile-bonus-card .bonus-value {
    font-size: 28px;
    font-weight: 700;
}

/* User Card */
.user-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.user-avatar:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.user-avatar:active {
    transform: scale(0.95);
}

.user-avatar::after {
    content: '✏️';
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 14px;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    word-break: break-word;
}

.user-phone {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.user-email {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Form Hint */
.form-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Orders Section */
.orders-section {
    margin-top: 20px;
}

.orders-section .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.order-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 91, 255, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-id {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.order-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.order-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-amount {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

.empty-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-orders .empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

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

/* Order Details Page */
.order-details-page {
    padding: 12px;
}

.order-details-header {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.order-details-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.order-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-info-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

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

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

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

.order-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.pickup-points-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

.pickup-points-section .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pickup-points-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pickup-point-card {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.pickup-point-card.picked-up {
    background: #f0fdf4;
    border-color: #86efac;
}

.pickup-point-card.code-sent {
    background: #fffbeb;
    border-color: #fcd34d;
}

.pickup-point-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.pickup-point-card.picked-up .pickup-point-card-header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.point-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.point-info {
    flex: 1;
    min-width: 0;
}

.point-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.point-address {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.point-items {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.point-items-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.point-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
}

.item-name {
    color: var(--text-color);
}

.item-quantity {
    font-weight: 600;
    color: var(--primary-color);
}

.pickup-code-section {
    padding: 12px;
}

.code-display {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
}

.code-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.code-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.code-hint {
    font-size: 11px;
    color: var(--text-secondary);
}

.code-request {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attempts-info {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
}

.picked-up-badge {
    text-align: center;
    padding: 12px;
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
}

.no-points-info {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.order-items-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

.order-items-section .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

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

.order-item-mini .item-name {
    flex: 1;
    color: var(--text-color);
}

.order-item-mini .item-quantity {
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 8px;
}

.order-item-mini .item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.loading-state .el-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.profile-menu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

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

.profile-menu-item:active {
    background: #f6f6f6;
}

.profile-menu-icon {
    font-size: 20px;
}

.profile-menu-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-color);
}

.profile-menu-arrow {
    color: var(--text-secondary);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 16px;
    margin-bottom: 8px;
}

.empty-state-subtext {
    font-size: 13px;
    opacity: 0.8;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 16px;
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f6f6f6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo-counter {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.photo-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
}

.photo-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

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

/* Gallery Arrows */
.gallery-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    color: #1f1f1f;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.gallery-arrow:active {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-arrow-left {
    left: 8px;
}

.gallery-arrow-right {
    right: 8px;
}

/* Swipe hint animation */
@keyframes swipeHint {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

.main-image:hover .gallery-arrow-left {
    animation: swipeHint 0.5s ease-in-out;
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 20px;
    color: var(--text-secondary);
}

.empty-cart .empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 24px;
}

/* Auth Dialog */
.auth-intro {
    text-align: center;
    padding: 16px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-steps {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    padding: 16px;
    background: var(--primary-light);
    border-radius: 8px;
}

.auth-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.step-text {
    font-size: 11px;
    color: var(--text-secondary);
    max-width: 80px;
}

.auth-resend {
    text-align: center;
    padding: 16px;
    color: var(--text-secondary);
    font-size: 13px;
}

.auth-not-found {
    text-align: center;
    padding: 20px;
}

.not-found-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.auth-not-found h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.auth-not-found p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.not-found-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

/* Checkout Page */
.checkout-page {
    padding: 12px;
    padding-bottom: 100px;
}

.checkout-header {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.checkout-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.checkout-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-icon {
    font-size: 24px;
}

.checkout-section .section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* Delivery Type Cards */
.delivery-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-type-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.delivery-type-card:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.delivery-type-card.active {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.delivery-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.delivery-info {
    flex: 1;
}

.delivery-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.delivery-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.delivery-check {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--primary-color);
    font-size: 20px;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bonus-header-info {
    flex: 1;
}

.bonus-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 2px;
}

.bonus-subtitle {
    font-size: 12px;
    color: #666;
}

.bonus-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bonus-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
}

.bonus-detail-row.highlight {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
}

.bonus-amount {
    font-weight: 600;
}

.bonus-amount.discount {
    color: #00b92d;
}

/* Pickup Points Checkout Info */
.pickup-points-checkout-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.multi-point-checkout-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #e8f4ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.info-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.checkout-points-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.checkout-point-item .point-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.checkout-point-item .point-info {
    flex: 1;
}

.checkout-point-item .point-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.checkout-point-item .point-address {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.checkout-point-item .point-items-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Checkout Summary */
.checkout-summary {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.summary-header {
    margin-bottom: 12px;
}

.summary-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.summary-items-preview {
    margin-bottom: 12px;
}

.summary-preview-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.preview-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-color);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.preview-item-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.summary-preview-more {
    padding: 8px 0;
    font-size: 12px;
    color: var(--primary-color);
    text-align: center;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

.summary-rows {
    margin-bottom: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

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

.summary-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.summary-row.discount .summary-value {
    color: #00b92d;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.summary-total-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.summary-total-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--danger-color);
}

/* Checkout Submit Button */
.checkout-submit-btn {
    margin-bottom: 12px;
    height: 56px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.checkout-back {
    text-align: center;
}

.checkout-back .el-button {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pickup Point Option - старое определение закомментировано, используется новое ниже */
/*
.pickup-point-option {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.point-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.point-address {
    font-size: 12px;
    color: var(--text-secondary);
}
*/

/* Payment Methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.payment-method-card.active {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.payment-method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.payment-method-info {
    flex: 1;
}

.payment-method-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.payment-method-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.payment-method-check {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--primary-color);
    font-size: 20px;
}

.payment-method-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px;
    background: #e8f4fd;
    border-radius: 8px;
    font-size: 12px;
    color: #1976d2;
}

.payment-method-hint .el-icon {
    font-size: 14px;
}

/* ==================== PRODUCT STOCK BY LOCATION ==================== */

.stock-by-location {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stock-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.stock-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s;
}

.stock-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stock-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.stock-info {
    flex: 1;
    min-width: 0;
}

.stock-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stock-address {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stock-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #e8f5e9;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    flex-shrink: 0;
}

.quantity-number {
    font-size: 16px;
}

.stock-empty {
    margin-top: 20px;
    padding: 16px;
    background: #fff3e0;
    border-radius: 12px;
    text-align: center;
}

.stock-empty p {
    font-size: 14px;
    color: #e65100;
    margin: 0;
}

/* ==================== PRODUCT STOCK BY POINT ==================== */

/* Компактное отображение остатков в карточке товара */
.product-stock-mini {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.stock-point-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    flex-shrink: 0;
}

.stock-point-mini.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-point-mini.out-of-stock {
    background: #f5f5f5;
    color: #9e9e9e;
}

.point-icon {
    font-size: 12px;
}

.point-qty {
    font-weight: 600;
}

.stock-more {
    padding: 4px 8px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Остатки в карточке товара (выпадающий список) */
.pickup-point-selector {
    margin: 16px 0;
}

.pickup-point-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.pickup-point-select {
    width: 100%;
}

.stock-info-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 12px;
}

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

.stock-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--success-color);
}

.stock-info-value.zero {
    color: var(--text-secondary);
}

/* Точки в списке (выбор точки) */
.pickup-point-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.pickup-point-option .point-icon {
    font-size: 18px;
}

.pickup-point-option .point-name {
    flex: 1;
    font-size: 14px;
}

.pickup-point-option .point-stock {
    font-weight: 600;
    color: var(--success-color);
}

.pickup-point-option .point-stock.empty {
    color: var(--text-secondary);
}

/* Fix for Element Plus dropdown options */
.el-select-dropdown__item {
    padding: 0 !important;
    height: auto !important;
}

.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover {
    background-color: var(--el-fill-color-light) !important;
}

.el-select-dropdown__item.is-selected {
    color: var(--el-color-primary) !important;
    font-weight: 600;
}

.el-select-dropdown__item .pickup-point-option {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
}

.el-select-dropdown__item .pickup-point-option .point-icon {
    font-size: 18px !important;
    flex-shrink: 0;
}

.el-select-dropdown__item .pickup-point-option .point-name {
    flex: 1 !important;
    font-size: 14px !important;
    color: var(--text-color) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.el-select-dropdown__item .pickup-point-option .point-stock {
    font-weight: 600 !important;
    color: var(--success-color) !important;
    flex-shrink: 0;
}

.el-select-dropdown__item .pickup-point-option .point-stock.empty {
    color: var(--text-secondary) !important;
}

/* Order Success Page */
.order-success-page {
    padding: 20px 12px;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--success-color);
    margin-bottom: 24px;
}

.order-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.order-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.next-steps-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.next-steps-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.multi-point-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #e8f4ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    margin-bottom: 16px;
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-text {
    flex: 1;
}

.notice-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.notice-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-step {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.step-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.success-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==================== DIALOG: Киоск + Доставка ==================== */
.kiosk-delivery-dialog {
    text-align: center;
    padding: 20px;
}

.dialog-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.dialog-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.dialog-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #856404;
}

.dialog-info {
    background-color: #d1ecf1;
    border: 1px solid #17a2b8;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #0c5460;
}

.kiosk-items-list {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    text-align: left;
}

.kiosk-items-list h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: var(--text-color);
}

.kiosk-items-list ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.kiosk-items-list li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 14px;
    color: var(--text-color);
}

.kiosk-items-list li:last-child {
    border-bottom: none;
}

.item-point {
    color: var(--text-secondary);
    font-size: 13px;
}

.dialog-actions {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.dialog-actions .el-button {
    flex: 1;
    min-width: 200px;
}

.dialog-note {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 16px;
}
