/* PROJECT: Testosterone Pills Australia 
   NO !IMPORTANT VERSION
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

html body.custom-layout {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    margin: 0;
    color: #1e293b;
}

/* ШАПКА - ЦЕНТРИРОВАНИЕ */
html body.custom-layout .site-header {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

html body.custom-layout .site-branding .main-title a {
    font-size: 36px;
    font-weight: 800;
    color: #110060;
    text-decoration: none;
    text-transform: uppercase;
}

/* МЕНЮ ПО ЦЕНТРУ */
html body.custom-layout .main-navigation {
    background-color: #110060;
}

html body.custom-layout .main-navigation .inside-navigation {
    display: flex;
    justify-content: center;
}

html body.custom-layout .main-navigation ul.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

html body.custom-layout .main-navigation ul.menu li a {
    color: #ffffff;
    padding: 18px 25px;
    display: block;
    font-weight: 600;
    text-decoration: none;
}

/* ЦЕНТРИРОВАНИЕ ОСНОВНОГО БЛОКА */
html body.custom-layout #page {
    max-width: 1200px;
    margin: 0 auto;
}

html body.custom-layout #content {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
}

html body.custom-layout #primary {
    max-width: 800px;
    width: 100%;
}

html body.custom-layout .inside-article {
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ЗАГОЛОВКИ */
html body.custom-layout h1.entry-title {
    font-size: 48px;
    color: #110060;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

html body.custom-layout h2 {
    font-size: 30px;
    color: #110060;
    border-left: 6px solid #00d084;
    padding-left: 20px;
    margin-top: 45px;
}

/* СПИСКИ */
html body.custom-layout .entry-content ul {
    list-style: none;
    padding-left: 0;
}

html body.custom-layout .entry-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
}

html body.custom-layout .entry-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d084;
    font-weight: 800;
}

/* КНОПКА */
html body.custom-layout .wp-block-button__link {
    background-color: #110060;
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

html body.custom-layout .wp-block-button__link:hover {
    background-color: #00d084;
    transform: translateY(-3px);
}

/* САЙДБАР */
html body.custom-layout #right-sidebar {
    width: 320px;
}

html body.custom-layout .sidebar .widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 900px) {
    html body.custom-layout #content {
        flex-direction: column;
        align-items: center;
    }
    html body.custom-layout #right-sidebar {
        width: 100%;
    }
}