/* Custom Belizzo Theme - Minimal Resources */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Override Frappe's default styles to prevent resource loading issues */
.website-content {
    background: #f8f9fa;
}

/* Hide unused elements that might trigger resource loading */
.quill-editor,
.datepicker,
.rich-text-editor {
    display: none !important;
}

/* Custom styles for our page */
.smile-rewards-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.smile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.smile-header h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.smile-header p {
    font-size: 1.3rem;
    margin: 15px 0 0 0;
    opacity: 0.9;
}

.smile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.smile-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    font-weight: 600;
    font-size: 1.4rem;
}

.smile-card-body {
    padding: 35px;
}

.smile-feature-list {
    list-style: none;
    padding: 0;
}

.smile-feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 40px;
    font-size: 1.1rem;
}

.smile-feature-list li:last-child {
    border-bottom: none;
}

.smile-feature-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1.2rem;
}

.smile-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 15px 15px 15px 0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.smile-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.smile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.smile-btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

.smile-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.6);
    color: white;
    text-decoration: none;
}

.smile-alert {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid;
}

.smile-alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left-color: #17a2b8;
    color: #0c5460;
}

.smile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.smile-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.smile-stat-card:hover {
    transform: translateY(-5px);
}

.smile-stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.smile-stat-label {
    color: #6c757d;
    margin: 15px 0 0 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.smile-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .smile-header h1 {
        font-size: 2.5rem;
    }
    
    .smile-card-body {
        padding: 25px;
    }
    
    .smile-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .smile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
