/* Base Styles */
:root {
    --primary-color: #532d82;
    --secondary-color: #4dd3b4;
    --text-color: #101828;
    --text-light: #667085;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

/* Header Styles */
.site-header {
    position: relative;
    z-index: 100;
}

.top-bar {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 20px;
    text-decoration: none;
    font-size: 16px;
}

.contact-info a i {
    margin-right: 5px;
}

.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    max-height: 70px;
}

.search-bar .input-field {
    width: 100%;
}

.search-bar .input {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    padding: 10px 14px;
    position: relative;
}

.search-bar .content {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    color: #667085;
    font-size: 16px;
}

.explore-btn {
    background: #f9edff;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.nav-links li a {
    color: #101828;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.login-btn {
    color: #101828;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}

.create-account-btn {
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    text-decoration: none;
    box-shadow: 0 0 0 4px rgba(244, 235, 255, 1), 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

/* Footer Styles */
.site-footer {
    background-color: #130b18;
    color: var(--white);
    padding-top: 50px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-main h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.address {
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 15px;
}

.certification-logo img,
.payment-methods img {
    max-width: 100%;
    height: auto;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-nav, .auth-buttons {
        margin-top: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .contact-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .auth-buttons {
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 15px;
    }
}