/* QR Code Ordering - Common Styles */

/* Common color variables and typography */
:root {
    --qr-primary: #2C5F41;
    --qr-primary-light: #4CAF50;
    --qr-gradient: linear-gradient(135deg, #4CAF50, #81C784);
    --qr-text-primary: #2C5F41;
    --qr-text-secondary: #666;
    --qr-background-light: #f8f9fa;
    --qr-border-radius: 15px;
    --qr-shadow: 0 5px 20px rgba(0,0,0,0.08);
    --qr-shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    --qr-transition: all 0.3s ease;
}

/* Common typography */
.qr-heading {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--qr-text-primary);
}

.qr-text {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--qr-text-secondary);
    line-height: 1.6;
}

/* Common highlight text */
.highlight-text {
    background: var(--qr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Common container */
.qr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common section padding */
.qr-section {
    padding: 100px 0;
}

/* Common header styles */
.qr-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.qr-section-header h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    color: var(--qr-text-primary);
    margin-bottom: 20px;
}

.qr-section-header p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    color: var(--qr-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Common animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Common responsive breakpoints */
@media (max-width: 1024px) {
    .qr-section-header h2 {
        font-size: 2.2rem;
    }
    
    .qr-section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .qr-section {
        padding: 80px 0;
    }
    
    .qr-section-header {
        margin-bottom: 60px;
    }
    
    .qr-section-header h2 {
        font-size: 2rem;
    }
    
    .qr-section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .qr-section {
        padding: 60px 0;
    }
    
    .qr-section-header h2 {
        font-size: 1.8rem;
    }
    
    .qr-container {
        padding: 0 15px;
    }
}
