Ветеринарная кулинария — Натуральные лакомства для кошек
.vb-root, .vb-root * { box-sizing: border-box; }
.vb-root input, .vb-root textarea, .vb-root select { font: inherit; }
:root {
--t-text-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--t-headline-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: #F5F0E8;
color: #1B2A4A;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
width: 100%;
position: relative;
}
body.modal-open { overflow: hidden; }
/* HEADER */
.header {
background: white;
box-shadow: 0 2px 10px rgba(27, 42, 74, .08);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
}
.header-container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 16px 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}
.top-bar-content {
max-width: 1200px;
width: 100%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}
.logo {
font-size: 22px;
font-weight: 700;
color: #1B2A4A !important;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.logo img {
width: 32px;
height: 32px;
object-fit: contain;
}
.logo-text {
display: flex;
flex-direction: column;
line-height: 1;
color: #1B2A4A !important;
}
.logo-text span {
font-size: 22px;
font-weight: 700;
color: #1B2A4A !important;
}
.logo-text small {
font-size: 11px;
color: #666 !important;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}
.header-nav {
display: flex;
gap: 12px;
align-items: center;
background: transparent;
}
.header-nav a {
color: #1B2A4A !important;
text-decoration: none;
font-weight: 500;
font-size: 15px;
padding: 6px 10px;
border-radius: 6px;
transition: color .2s, background .2s;
white-space: nowrap;
cursor: pointer;
}
.header-nav a:hover,
.header-nav a.active {
color: #E07A3A !important;
background: rgba(224, 122, 58, .08);
}
.header-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.btn-icon {
display: flex; align-items: center; gap: 8px;
padding: 10px 16px;
background: #F5F0E8 !important;
border: none; border-radius: 8px;
cursor: pointer; transition: all .3s;
position: relative;
color: #1B2A4A !important;
font-size: 14px; font-weight: 500;
text-decoration: none; min-height: 44px;
flex-shrink: 0;
white-space: nowrap;
}
.btn-icon:hover {
background: #E07A3A !important;
color: #fff !important;
}
.btn-icon svg {
width: 20px;
height: 20px;
flex-shrink: 0;
stroke: currentColor;
}
.btn-icon-text { display: none; }
.cart-badge {
position: absolute;
top: -8px;
right: -8px;
background: #E07A3A;
color: white;
font-size: 11px;
font-weight: 700;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
}
.menu-toggle span {
width: 24px;
height: 2px;
background: #1B2A4A;
transition: all .3s;
border-radius: 2px;
}
.menu-toggle.is-active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(27, 42, 74, .5);
z-index: 99997;
}
.mobile-nav-overlay.is-active {
display: block;
}
/* HERO */
.hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #FFF9F2 0%, #F0E6D3 100%);
padding-top: 80px;
}
.hero-bg {
position: absolute;
top: 0;
right: 0;
width: 55%;
height: 100%;
object-fit: cover;
opacity: .95;
clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px 100px;
width: 100%;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 18px;
background: rgba(45, 106, 79, .1);
color: #2D6A4F;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
margin-bottom: 24px;
border: 1px solid rgba(45, 106, 79, .2);
}
.hero-title {
font-size: 56px;
font-weight: 700;
color: #1B2A4A;
line-height: 1.1;
margin-bottom: 20px;
max-width: 600px;
}
.hero-title span {
color: #E07A3A;
}
.hero-subtitle {
font-size: 19px;
color: #555;
margin-bottom: 16px;
max-width: 520px;
line-height: 1.6;
}
.hero-product-note {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
background: white;
border-radius: 8px;
font-size: 14px;
color: #1B2A4A;
margin-bottom: 32px;
box-shadow: 0 4px 12px rgba(27, 42, 74, .08);
}
.hero-product-note strong {
color: #2D6A4F;
}
.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 48px;
}
.btn-primary {
padding: 18px 36px;
background: #C96A2A !important;
color: #fff !important;
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all .3s;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 56px;
box-shadow: 0 4px 16px rgba(201, 106, 42, .3);
}
.btn-primary:hover {
background: #B25A22 !important;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(201, 106, 42, .4);
}
.btn-secondary {
padding: 18px 36px;
background: #fff !important;
color: #1B2A4A !important;
border: 2px solid #1B2A4A !important;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all .3s;
text-decoration: none;
display: inline-flex !important;
align-items: center;
gap: 10px;
min-height: 56px;
}
.btn-secondary:hover {
background: #1B2A4A !important;
color: #fff !important;
}
.hero-stats {
display: flex;
gap: 48px;
padding-top: 32px;
border-top: 1px solid rgba(27, 42, 74, .1);
max-width: 600px;
}
.stat-item {
display: flex;
flex-direction: column;
}
.stat-number {
font-size: 32px;
font-weight: 700;
color: #2D6A4F;
line-height: 1;
margin-bottom: 6px;
}
.stat-label {
font-size: 13px;
color: #666;
}
/* TRUST BADGES */
.trust-badges {
background: white;
padding: 30px 20px;
border-bottom: 1px solid rgba(27, 42, 74, .08);
}
.trust-badges-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.trust-item {
display: flex;
align-items: center;
gap: 14px;
}
.trust-icon {
width: 48px;
height: 48px;
background: #F5F0E8;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #2D6A4F;
}
.trust-icon svg {
width: 24px;
height: 24px;
}
.trust-text {
display: flex;
flex-direction: column;
}
.trust-title {
font-size: 15px;
font-weight: 700;
color: #1B2A4A;
margin-bottom: 2px;
}
.trust-subtitle {
font-size: 13px;
color: #666;
}
/* SECTIONS COMMON */
.section {
padding: 80px 20px;
max-width: 1200px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 56px;
}
.section-tag {
display: inline-block;
padding: 6px 16px;
background: rgba(45, 106, 79, .1);
color: #2D6A4F;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 1px;
}
.section-title {
font-size: 40px;
font-weight: 700;
color: #1B2A4A;
margin-bottom: 16px;
line-height: 1.2;
}
.section-subtitle {
font-size: 17px;
color: #666;
max-width: 600px;
margin: 0 auto;
}
/* FEATURES */
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.feature-card {
background: white;
padding: 40px 30px;
border-radius: 16px;
text-align: center;
box-shadow: 0 4px 16px rgba(27, 42, 74, .06);
transition: transform .3s, box-shadow .3s;
border: 1px solid rgba(27, 42, 74, .04);
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 40px rgba(27, 42, 74, .12);
}
.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 24px;
background: linear-gradient(135deg, #F5F0E8 0%, #E8DFD0 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #2D6A4F;
}
.feature-icon svg {
width: 40px;
height: 40px;
}
.feature-title {
font-size: 22px;
font-weight: 700;
color: #1B2A4A;
margin-bottom: 12px;
}
.feature-text {
font-size: 15px;
color: #666;
line-height: 1.6;
}
/* PHILOSOPHY */
.philosophy-section {
background: linear-gradient(135deg, #1B2A4A 0%, #2D3A5A 100%);
color: white;
padding: 80px 20px;
position: relative;
overflow: hidden;
}
.philosophy-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(224, 122, 58, .1) 0%, transparent 70%);
border-radius: 50%;
}
.philosophy-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.philosophy-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.philosophy-content .section-tag {
background: rgba(224, 122, 58, .2);
color: #E07A3A;
}
.philosophy-content .section-title {
color: white;
}
.philosophy-content .section-subtitle {
color: rgba(255, 255, 255, .8);