/* Global Fonts */
body { 
    font-family: 'Frutiger', 'Noto Sans SC', sans-serif; 
}

/* Custom Button Styles - Converted from Tailwind @apply for standalone CSS */
.btn-primary {
    background-color: #e16824;
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(225, 104, 36, 0.2);
    font-size: 0.875rem;
    display: inline-block;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 1rem;
    }
}

.btn-primary:hover {
    background-color: #e23022;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #848484;
    color: #848484;
    padding: 10px 30px; /* adjusted for border */
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-block;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-outline {
        font-size: 1rem;
    }
}

.btn-outline:hover {
    border-color: #e16824;
    color: #e16824;
}

/* Product Shadow */
.product-shadow {
    filter: drop-shadow(0 20px 30px rgba(225, 104, 36, 0.15));
}

/* Animation Utilities */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Wechat QR Code Section */
.qr-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.qr-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.qr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    color: #848484;
    transition: color 0.2s;
}

.qr-modal-close:hover {
    color: #1F2937;
}

/* Show class for JS toggling */
.show-modal {
    display: flex !important;
}
