/* 现代化Header样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
    min-width: 200px;
    min-height: 48px;
    height: 80px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-sizing: content-box;
    display: block;
    max-width: 180px;
}

.logo span {
    white-space: nowrap;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    display: none;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-link:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 24px;
    min-width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
    z-index: 1001;
}

.dropdown-section {
    margin-bottom: 20px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f7fafc;
    color: #667eea;
    transform: translateX(4px);
}

.dropdown-item img {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.badge {
    background: #ff4757;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    margin-left: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    padding: 8px 20px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.gift-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 4px;
    position: relative;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.gift-icon::before {
    content: '🎁';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* 移动端菜单 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #4a5568;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #4a5568;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 16px;
}

.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: none;
    border: none;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
}

.toggle-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-nav-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

.mobile-nav-content a {
    display: block;
    padding: 8px 0;
    color: #2d3748;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.mobile-nav-content a:hover {
    color: #667eea;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-link .badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.mobile-actions .btn-login,
.mobile-actions .btn-register {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-actions .btn-login {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.mobile-actions .btn-login:hover {
    background: #edf2f7;
}

.mobile-actions .btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-actions .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.mobile-actions .gift-icon {
    width: 20px;
    height: 20px;
}

/* 客服悬浮按钮 */
.side-btnBox {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.side-service-btn {
    position: relative;
}

.side-service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.side-service:hover {
    background: #5a67d8;
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-service-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.side-service-icon::before {
    content: '💬';
    font-size: 16px;
}

.service-pulse {
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-text {
    white-space: nowrap;
    font-weight: 600;
}

.customer-box {
    position: absolute;
    right: 0;
    bottom: 70px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    display: none;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-box-active {
    display: block;
}

.customer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.customer-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.customer-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.customer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.customer-content {
    padding: 20px;
}

.customer-qr {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.customer-desc {
    text-align: center;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.customer-info {
    background: #f7fafc;
    border-radius: 8px;
    padding: 12px;
}

.customer-time,
.customer-phone {
    color: #2d3748;
    font-size: 0.8rem;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-time::before {
    content: '🕒';
    font-size: 0.75rem;
}

.customer-phone::before {
    content: '📞';
    font-size: 0.75rem;
}

/* Footer样式 */
.footer {
    background: #2d3748;
    color: white;
}

.footer-content {
    padding: 40px 0 30px;
}

.footer-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.company-logo {
    margin-bottom: 16px;
}

.company-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: #fff;
}

.contact-info .contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.certifications {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.cert-icon {
    display: none;
}

.cert-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cert-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.cert-label {
    color: rgba(255, 255, 255, 0.6);
}

.cert-text {
    color: rgba(255, 255, 255, 0.6);
}

.cert-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-actions {
        display: flex;
        gap: 8px;
    }
    
    .header-actions .btn-login {
        padding: 6px 12px;
        font-size: 0.875rem;
    }
    
    .header-actions .btn-register {
        padding: 6px 12px;
        font-size: 0.875rem;
    }
    
    .header-actions .gift-icon {
        width: 16px;
        height: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .ad-title {
        font-size: 2rem;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        gap: 16px;
    }
    
    .logo {
        min-width: 120px;
    }
    
    .logo span {
        display: none;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-actions .btn-login {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .header-actions .btn-register {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .ad-title {
        font-size: 1.75rem;
    }
    
    .ad-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .footer-content {
        padding: 60px 0 40px;
    }
    
    .certifications {
        flex-direction: column;
        gap: 8px;
    }
}

/* 全局优化 */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 按钮样式优化 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a67d8;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* 卡片样式优化 */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 输入框样式 */
.input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 工具提示 */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #2d3748;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.75rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #4a5568;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2d3748;
}

/* 通知样式 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

.notification.success {
    background: #48bb78;
}

.notification.error {
    background: #f56565;
}

.notification.warning {
    background: #ed8936;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 选择文本样式 */
::selection {
    background: rgba(102, 126, 234, 0.2);
    color: #2d3748;
}

/* 焦点样式 */
:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 禁用状态 */
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 隐藏元素 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 

/* 移动端菜单优化 */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-nav {
        flex: 1;
        overflow-y: auto;
    }
    
    .mobile-nav-content {
        background: #f7fafc;
        margin: 0 -20px;
        padding: 0 20px 0 36px;
    }
    
    .mobile-nav-content a {
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-nav-content a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-header .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-menu-header .logo img {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-header .logo span {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2d3748;
    }
}

@media (max-width: 480px) {
    .mobile-menu-header {
        padding: 16px;
    }
    
    .mobile-nav {
        padding: 16px;
    }
    
    .mobile-actions {
        padding: 16px;
    }
    
    .mobile-nav-content {
        margin: 0 -16px;
        padding: 0 16px 0 32px;
    }
    
    .mobile-menu-header .logo span {
        font-size: 1.125rem;
    }
} 

/* 移动端客服按钮优化 */
@media (max-width: 768px) {
    .side-btnBox {
        right: 16px;
        bottom: 16px;
    }
    
    .side-service {
        padding: 12px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .side-service-icon {
        width: 20px;
        height: 20px;
    }
    
    .service-pulse {
        width: 28px;
        height: 28px;
    }
    
    .service-text {
        font-size: 0.8rem;
    }
    
    .customer-box {
        right: 0;
        bottom: 60px;
        max-width: 240px;
    }
    
    .customer-header {
        padding: 12px 16px;
    }
    
    .customer-title {
        font-size: 0.9rem;
    }
    
    .customer-close {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }
    
    .customer-content {
        padding: 16px;
    }
    
    .customer-qr {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }
    
    .customer-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .customer-info {
        padding: 10px;
    }
    
    .customer-time,
    .customer-phone {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .side-btnBox {
        right: 12px;
        bottom: 12px;
    }
    
    .side-service {
        padding: 10px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .side-service-icon {
        width: 18px;
        height: 18px;
    }
    
    .service-pulse {
        width: 24px;
        height: 24px;
    }
    
    .service-text {
        font-size: 0.75rem;
    }
    
    .customer-box {
        right: 0;
        bottom: 55px;
        max-width: 200px;
    }
    
    .customer-header {
        padding: 10px 14px;
    }
    
    .customer-title {
        font-size: 0.85rem;
    }
    
    .customer-close {
        width: 18px;
        height: 18px;
        font-size: 1.1rem;
    }
    
    .customer-content {
        padding: 12px;
    }
    
    .customer-qr {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    
    .customer-desc {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .customer-info {
        padding: 8px;
    }
    
    .customer-time,
    .customer-phone {
        font-size: 0.7rem;
    }
} 