/*
Theme Name: MaxTheme
Description: WordPress theme based on mixwoman.ru design
Version: 1.0.0
Author: Your Name
*/

:root {
    --accent-color: #ec4899;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin-right: 32px;
}

.logo:hover {
    color: var(--accent-color);
}

nav {
    display: flex;
    gap: 32px;
    flex: 1;
}

nav a {
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--accent-color);
}

nav a.pro {
    color: var(--accent-color);
}

.search-container {
	position: relative;
	margin-left: auto;
}

.search-btn {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	transition: color 0.2s;
}

.search-btn:hover {
	color: var(--accent-color);
}

.search-form {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding: 0.5rem;
	display: none;
	z-index: 100;
	min-width: 300px;
}

.search-form.active {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.search-input {
	border: none;
	outline: none;
	font-size: 14px;
	flex: 1;
	padding: 0.5rem;
}

.search-input::placeholder {
	color: #9ca3af;
}

.search-submit {
	background: var(--accent-color);
	border: none;
	color: white;
	padding: 0.5rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.search-submit:hover {
	background: #d61f69;
}

/* Main Content */
main {
    padding: 32px 0;
}

/* Footer */
footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
    margin-top: 48px;
}

.footer-content {
    text-align: center;
}

/* Common Elements */
.category-tag {
    color: var(--accent-color);
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }
}


