.font-light-300 { font-weight: 300; }
.font-medium-500 { font-weight: 500; }
.font-bold-700 { font-weight: 700; }
.font-black-900 { font-weight: 900; }
.bg-purty-wood {
background-image: url(//elki-palki.info/wp-content/themes/elkipalki/img/purty_wood.png);
}
.bg-categories {
background-image: url(//elki-palki.info/wp-content/themes/elkipalki/img/categories.jpg);
background-size: cover;
background-position: center;
}
.bg-shop {
background-image: url(//elki-palki.info/wp-content/themes/elkipalki/img/shop.jpg);
background-size: cover;
background-position: center;
}
.catalog-card {
transition: all 0.3s ease;
}
.catalog-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
} .mobile-menu-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.5);
z-index: 40;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
.mobile-menu-panel {
position: fixed;
top: 0;
right: 0;
width: 280px;
height: 100vh;
background: #fff;
z-index: 50;
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -4px 0 20px rgba(0,0,0,0.15);
overflow-y: auto;
}
.mobile-menu-panel.active {
transform: translateX(0);
}
.mobile-menu-header {
background-image: url(//elki-palki.info/wp-content/themes/elkipalki/img/purty_wood.png);
padding: 1.5rem;
border-bottom: 2px solid #00dc5d;
}
.mobile-nav-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 1.5rem;
border-bottom: 1px solid #f0f0f0;
color: #000;
font-weight: 500;
text-transform: uppercase;
font-size: 0.875rem;
transition: all 0.2s ease;
text-decoration: none;
}
.mobile-nav-item:hover {
background: #f8f8f8;
color: #00dc5d;
padding-left: 1.75rem;
}
.mobile-nav-item i {
width: 20px;
text-align: center;
color: #999;
}
.mobile-nav-item:hover i {
color: #00dc5d;
}
.mobile-contact-block {
padding: 1.5rem;
background: #f8f8f8;
border-top: 1px solid #e0e0e0;
}
.mobile-phone-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: #00dc5d;
color: white;
padding: 0.875rem;
border-radius: 0.75rem;
font-weight: 700;
text-decoration: none;
margin-bottom: 0.75rem;
transition: all 0.2s ease;
}
.mobile-phone-btn:hover {
background: #00c853;
transform: scale(1.02);
}
.nav-link-hover {
position: relative;
}
.nav-link-hover::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: #00dc5d;
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-link-hover:hover::after {
width: 70%;
}