/*
Theme Name: Kindness Is Cool
Theme URI: https://example.com
Author: AI Assistant
Description: A simple, Elementor-compatible theme based on the Kindness Is Cool mockup.
Version: 1.0
Text Domain: kindness-is-cool
*/

/* Reset & Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF5F7; /* Light pink background from mockup */
    color: #1A202C;
    -webkit-font-smoothing: antialiased;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: 800;
    color: #1A202C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-title .logo-icon {
    color: #F43F5E;
    font-size: 28px;
}

.site-title .registered {
    font-size: 14px;
    color: #F43F5E;
    font-weight: normal;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.main-navigation a:hover {
    color: #F43F5E;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    color: #1A202C;
    text-decoration: none;
    font-size: 20px;
}

.btn-primary {
    background-color: #F43F5E; /* Pinkish red */
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s, transform 0.2s;
}

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

/* Elementor Compatibility Overrides */
.elementor-page .site-main {
    margin: 0;
    padding: 0;
}

/* Responsive Header */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
