/* 菜单小程序 H5 版本样式 */
/* 基础重置和变量 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-light: #f8f9fe;
    --text-primary: #333333;
    --text-secondary: #999999;
    --border-radius: 12px;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(102, 126, 234, 0.15);
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.page {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
}

/* ===== 登录页面 ===== */
.login-page {
    background: var(--bg-light);
}

.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--primary-gradient);
    border-radius: 0 0 60px 60px;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s infinite ease-in-out;
}

.bg-circle.circle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle.circle-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.bg-circle.circle-3 {
    width: 50px;
    height: 50px;
    bottom: 40%;
    left: 20%;
    animation-delay: 4s;
}

.bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8f9fe" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.logo-area {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
    text-align: center;
}

.logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-ring.ring-2 {
    width: 120%;
    height: 120%;
    animation-delay: 0.5s;
}

.logo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.logo-emoji {
    font-size: 36px;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.app-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.login-card {
    position: relative;
    z-index: 1;
    margin: 0 20px;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0);
}

.header-title {
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.header-line:last-child {
    background: linear-gradient(90deg, #e0e0e0, transparent);
}

.user-section {
    text-align: center;
    margin-bottom: 24px;
}

.user-avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.badge-icon {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.user-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-status {
    font-size: 13px;
    color: #4ade80;
}

.btn-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.login-btn {
    position: relative;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-btn.primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.login-btn.secondary {
    background: #f0f2ff;
    color: #667eea;
}

.login-btn.outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-primary);
}

.login-btn:active {
    transform: scale(0.98);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    60%, 100% {
        left: 100%;
    }
}

.features {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== 主页面 ===== */
.page-container {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    padding-bottom: 80px;
}

.header-section {
    position: relative;
    padding-bottom: 15px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: var(--primary-gradient);
    border-radius: 0 0 30px 30px;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 15px 15px 0;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 0 15px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.search-icon {
    font-size: 16px;
    margin-right: 8px;
    color: #aaa;
}

.search-input {
    flex: 1;
    font-size: 14px;
    color: #333;
    border: none;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #aaa;
}

.add-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fff 0%, #f0f2ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    cursor: pointer;
}

.add-icon {
    font-size: 24px;
    font-weight: 300;
    color: #667eea;
    line-height: 1;
}

.category-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-list {
    display: inline-flex;
    gap: 10px;
    padding: 5px 0;
}

.category-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item.active {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-emoji {
    font-size: 20px;
    margin-bottom: 4px;
}

.category-name {
    font-size: 12px;
    color: #666;
}

.category-item.active .category-name {
    color: #667eea;
    font-weight: 600;
}

/* ===== 菜品列表 ===== */
.cp-section {
    padding: 0 15px;
}

.section-header {
    padding: 20px 0 15px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-line {
    width: 4px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.title-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.title-count {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.cp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-bottom: 20px;
}

.cp-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cp-card:active {
    transform: scale(0.98);
}

.cp-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.cp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.cp-fl-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 11px;
    border-radius: 12px;
}

.cp-content {
    padding: 12px;
}

.cp-header {
    margin-bottom: 8px;
}

.cp-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cp-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.add-to-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-illustration {
    margin-bottom: 20px;
}

.empty-basket {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #f0f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-icon {
    font-size: 40px;
}

.empty-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.empty-dots .dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.empty-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.empty-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.empty-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-desc {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.empty-btn {
    padding: 12px 32px;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
}

/* 底部标签栏 */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    z-index: 100;
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-item.active {
    color: #667eea;
}

.tab-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.tab-text {
    font-size: 10px;
}

.tab-badge {
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translateX(10px);
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    background: #ff4757;
    color: #ffffff;
    border-radius: 9px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

/* ===== 购物车页面 ===== */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
}

.deco-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 0 0 30px 30px;
}

.deco-pattern {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cl-content {
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.title-section {
    padding: 40px 0 15px;
}

.title-wrap {
    display: flex;
    align-items: center;
}

.title-icon {
    font-size: 28px;
    margin-right: 10px;
}

.title-text {
    display: flex;
    flex-direction: column;
}

.title-main {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.title-sub {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

.cl-list {
    padding-bottom: 80px;
}

.cl-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.card-left {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.cl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-index {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-weight: 600;
}

.card-center {
    flex: 1;
    padding: 0 12px;
}

.cl-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-right {
    display: flex;
    align-items: center;
}

.remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff1f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.remove-icon {
    font-size: 18px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #667eea;
    background: #ffffff;
    color: #667eea;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.bottom-bar {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    z-index: 99;
}

.bar-left {
    flex: 1;
}

.select-all {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    color: #ffffff;
    font-size: 12px;
    display: none;
}

.select-all.active .checkbox {
    background: #667eea;
    border-color: #667eea;
}

.select-all.active .check-icon {
    display: block;
}

.select-text {
    font-size: 14px;
    color: var(--text-primary);
}

.bar-center {
    flex: 1;
    text-align: center;
}

.total-count-text {
    font-size: 14px;
    color: var(--text-primary);
}

.bar-right {
    flex: 1;
    text-align: right;
}

.checkout-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* ===== 添加菜品页面 ===== */
.add-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--primary-gradient);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.back-icon {
    font-size: 24px;
    color: #ffffff;
}

.add-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 36px;
}

.add-form {
    padding: 20px 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.image-upload {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    border: 2px dashed #ddd;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.image-upload:hover {
    border-color: #667eea;
}

#preview-image {
    width: 100%;
    height: auto;
    display: none;
}

.upload-hint {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #999;
}

.upload-icon {
    font-size: 32px;
}

.upload-hint span {
    font-size: 14px;
}

..form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* 手机号登录表单 */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.phone-input {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
}

.phone-input:focus {
    outline: none;
    border-color: #667eea;
}

/* 适配不同屏幕 */
@media screen and (max-width: 360px) {
    .cp-list {
        grid-template-columns: 1fr;
    }
    
    .logo-area {
        padding: 60px 0 30px;
    }
}

@media screen and (min-width: 768px) {
    body {
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .page {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* 防止点击穿透 */
* {
    -webkit-tap-highlight-color: transparent;
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 模态框 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin: 20px;
    max-width: 300px;
    width: 100%;
    transform: scale(0.9);
    animation: scaleIn 0.3s forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

.modal-btn.secondary {
    background: #f0f0f0;
    color: #666;
}

.modal-btn.primary {
    background: var(--primary-gradient);
    color: #ffffff;
}