/* Base Styles & Utility Classes for Ultimate Theme */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #16A34A;
    --secondary-color: #6B7280;
    --accent-color: #22C55E;
    --text-dark: #000000;
    --text-light: #4B5563;
    --bg-light: #E5E7EB;
    --white: #ffffff;
    --spacing-lg: 80px;
    --spacing-md: 40px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #F0F7F1;
    color: var(--text-dark);
    line-height: 1.6;
}

.section-spacing {
    padding: var(--spacing-lg) 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Topbar --- */
.topbar {
    background: #1A1A1A;
    color: white;
    padding: 8px 40px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.topbar-links a:hover {
    color: white;
}

/* --- Main Header --- */
.main-header {
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: -1px;
}

.header-search {
    flex: 0 1 500px;
    display: flex;
    background: #E5E7EB;
    padding: 5px;
    border-radius: 50px;
}

.header-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    outline: none;
}

.header-search button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-actions {
    display: flex;
    gap: 25px;
    font-size: 1.2rem;
    align-items: center;
}

.header-actions a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* --- Navbar --- */
.main-navbar {
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

.nav-container a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-container a:hover {
    color: var(--primary-color);
}

/* --- Footer --- */
.main-footer {
    background: #1A1A1A;
    color: #94a3b8;
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-shop-info .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-social h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}
