/* css/common.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid #eef2f6;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f97316;
}

.currency-selector {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-login {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    border-color: #f97316;
    color: #f97316;
}

.nav-greeting {
    font-weight: 600;
    font-size: 0.9rem;
    color: #f97316;
    background: #fff7ed;
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
}

.btn-logout {
    border-color: #ef4444;
    color: #ef4444;
}

.btn-logout:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    margin-top: 70px;
    padding: 48px 0 24px;
    border-radius: 32px 32px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.disclaimer-box {
    background-color: #f5f3f3;
    padding: 25px 30px;
    border-radius: 15px;
    margin: 40px 0;
    max-width: 900px;
}

.disclaimer-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.disclaimer-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.copyright {
    border-top: 1px solid #1e293b;
    padding-top: 28px;
    font-size: 0.75rem;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
}
