/*
Theme Name: Polar Groom
Author: Polar
Description: Grooming salon theme.
Version: 1.0
Text Domain: pet-office
Domain Path: /languages
*/

:root {
    --wp-top: 0px;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat Alternates', sans-serif;
    
    --color-primary: #FF8800;
    --color-primary-dark: #e67a00;
    --color-primary-gradient: linear-gradient(87.6deg, #FF8800 0%, #FF6A00 100%);
    --color-primary-light: #FF6E00;
    --color-primary-light-alpha: #FF6E00E0;
    
    --color-text-dark: #0e2340;
    --color-text-body: #333;
    --color-text-light: #444;
    --color-text-muted: #666;
    --color-text-phone: #000000;
    
    --color-bg-light: #FFF9EB;
    --color-bg-card: #F3EBDD;
    --color-bg-about: #fff9f0;
    --color-bg-benefits: #FAF1E3;
    --color-bg-table-even: #F3EADB;
    --color-bg-table-header: #FAF5EF;
    
    --color-white: #fff;
    --color-black: #000;
    --color-border-light: #eee;
    --color-border-table: #ddd;
    --color-border-card: #e2d1c3;
    
    --border-radius-btn: 47px;
    --border-radius-card: 12px;
    --border-radius-small: 10px;
    
    --container-max: 1440px;
    --container-padding: 15px;
    
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;
    
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    background: var(--color-bg-light);
    scrollbar-width: thin;
	scroll-behavior: smooth;
    scrollbar-color: rgba(0, 0, 0, 0.2) var(--color-bg-light);
}

html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

html::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 2px solid var(--color-bg-light);
}

html::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: var(--color-text-body);
    margin: 0;
    padding: 0;
    min-width: 360px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

p,
article,
main {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

main.po-main-content {
    margin: 0 auto;
    margin-top: 50px;
	margin-left: 20px;
    margin-right: 20px;
	z-index: 3 !important;
    position: relative;
}

footer.po-footer {
    z-index: 1 !important;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
}

h2,
.entry-title h2,
.section-title h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: normal;
    margin: 0 0 20px 0;
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px;
        line-height: 110%;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
        line-height: 115%;
    }
}

button,
input,
textarea,
select {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
    transition: color var(--transition);
}

.po-container {
    padding: 0 var(--container-padding);
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .po-container {
        max-width: 750px;
    }
}

@media (min-width: 1200px) {
    .po-container {
        max-width: 1170px;
    }
}

@media (max-width: 900px) {
	main.po-main-content {
		margin-top: 110px;
	}
}

.cap-height-trim {
    line-height: 1;
    margin-top: -0.1em;
}

.admin-bar {
    --wp-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar {
        --wp-top: 46px;
    }
	main.po-main-content {
		margin-top: 100px;
	}
}

.po-button {
    background: var(--color-primary-gradient);
    border-radius: var(--border-radius-btn);
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), background var(--transition);
}

.po-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.po-container-wide {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.po-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-gradient);
    border-radius: var(--border-radius-card);
    transition: transform var(--transition);
}

.po-social-icon:hover {
    transform: translateY(-3px);
}

.po-breadcrumbs {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 24px;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
}

.po-breadcrumbs .breadcrumb-item:first-child a {
    color: var(--color-primary-light);
}

.po-breadcrumbs a {
    color: var(--color-primary-light-alpha);
    text-decoration: none;
    font-weight: 600;
}

.po-breadcrumbs a:hover {
    text-decoration: underline;
}

.po-breadcrumbs .breadcrumb-item {
    font-weight: 500;
    color: var(--color-black);
}

.po-breadcrumbs .breadcrumb-sep {
    font-weight: 400;
    color: var(--color-black);
    margin: 0 4px;
}

.po-row .po-column {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.po-row .po-column:only-child {
    transform: translateY(120px);
}

.po-row .po-column:first-child:not(:only-child) {
    transform: translateX(-150px);
}
.po-row .po-column:last-child:not(:only-child) {
    transform: translateX(150px);
    transition-delay: 0.15s;
}

.po-row.po-animated .po-column:only-child,
.po-row.po-animated .po-column:first-child:not(:only-child),
.po-row.po-animated .po-column:last-child:not(:only-child) {
    opacity: 1;
    transform: translate(0, 0);
}

.po-row:has(.po-breed-price-widget) .po-column {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

.po-text-content p:empty,
.po-service-description p:empty,
.po-text-content p:has(br:only-child),
.po-service-description p:has(br:only-child) {
	min-height: 1.5em;
	display: block;
}







@media (-webkit-min-device-pixel-ratio: 1.25) and (max-resolution: 120dpi) {
}

@media print, (prefers-reduced-motion: reduce) {
    .po-row .po-column {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.po-row .po-column {
    will-change: auto !important;
}


.po-main-content {
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .po-main-content {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}