/*
Theme Name: MyParty Custom Theme
Theme URI: https://myparty.lk
Author: MyParty Dev
Description: A lightweight, custom e-commerce theme built for speed and conversions.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
WC requires at least: 8.0
WC tested up to: 8.7
Text Domain: myparty
*/

:root {
    --primary-color: #000080;
    /* Navy Blue from your top bar */
    --secondary-color: #d4af37;
    /* Gold accent */
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --border-color: #eeeeee;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Smart Header Styles */
.mp-topbar {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

.mp-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid var(--border-color);
}

.mp-logo img {
    max-height: 40px;
}

.mp-search form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.mp-search input[type="text"] {
    border: none;
    padding: 10px 15px;
    width: 300px;
    outline: none;
}

.mp-search button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.mp-nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mp-nav-icons a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

/* Main Navigation */
.mp-main-nav {
    background-color: var(--bg-light);
    padding: 12px 5%;
}

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

.mp-main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

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