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

:root {
    --primary: #0b2d59;
    --primary-dark: #061e3a;
    --accent: #cbe675;
    --accent-dark: #a9bf04;
    --text: #1a2c1c;
    --text-light: #4a5b3e;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border: #e6e6e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 35px rgba(0, 0, 0, 0.1);
    --font-base: 1rem;
    --font-small: 0.875rem;
    --font-h4: 1.125rem;
    --font-h3: 1.375rem;
    --font-h2: 2.25rem;
    --font-h1: 2.25rem;
    --font-hero: 3.5rem;
    --space-tiny: 8px;
    --space-small-plus: 12px;
    --space-small: 16px;
    --space-medium: 24px;
    --space-large: 32px;
    --space-xlarge: 48px;
    --space-section: 64px;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.hero-content > * {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
section {
    overflow: hidden;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: var(--white);
    font-size: var(--font-base);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.page-title,
.section-title,
.hero-left h1,
.category-card h3,
.product-card h3,
.product-info h1,
.document-info h3,
.footer h5 {
    font-family: 'Yeseva One', cursive;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--primary);
}

h1 {
    font-size: var(--font-h1);
    margin-bottom: 0.75rem;
}

h2 {
    font-size: var(--font-h2);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: var(--font-h3);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: var(--font-h4);
    margin-bottom: 0.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: var(--space-xlarge);
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    height: var(--space-xlarge);
    width: auto;
}

.nav {
    display: flex;
    gap: var(--space-large);
    align-items: center;
    height: var(--space-xlarge);
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.header .btn {
    padding: 0 24px;
    height: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    line-height: 40px;
    display: inline-flex;
    align-items: center;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-base);
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.hero-section {
    min-height: 100vh;
    background-image: url('/images/forest-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(
        104deg,
        rgba(30, 40, 20, 0.4) 0%,
        rgba(20, 30, 15, 0.45) 54%,
        rgba(40, 65, 30, 0.4) 88%,
        rgba(80, 100, 30, 0.35) 100%
    );
    backdrop-filter: blur(4px);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.hero-left, .hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    perspective: 1200px;
}

.hero-left h1 {
    font-family: 'Yeseva One', cursive;
    font-size: var(--font-hero);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-medium);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-left p {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-xlarge);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-small);
    background: var(--white);
    color: var(--text);
    padding: 16px 32px;
    border-radius: var(--space-small);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-hero:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #CCCCCC;
}

.btn-hero svg {
    width: 22px;
    height: 18px;
}
.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: -30px auto 0;
}
.carousel-stage {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: bottom;
    perspective: 1000px;
    overflow: visible;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    transform-style: preserve-3d;
    overflow: visible;
}

.carousel-card {
    position: absolute;
    top: 40%;
    left: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0s;
    background: transparent;
    filter: none;
    border-radius: var(--space-small);
    padding: var(--space-tiny);
    transform-origin: center center;
    will-change: transform;
    z-index: 10;
}

.carousel-card:hover {
    z-index: 50 !important;
}

.carousel-card:hover .product-inner {
    transform: scale(1.15);
}

.product-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.product-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.product-img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-hover-card {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 260px;
    height: auto;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--space-small);
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 999;
    border: 1px solid var(--accent);
    pointer-events: none;
    text-decoration: none;
    display: block;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}
.carousel-card:hover .product-img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.carousel-card:hover .product-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-hover-card img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 10px;
}
.product-hover-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-hover-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: var(--space-tiny);
    line-height: 1.4;
}
.hover-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.hover-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(11, 45, 89, 0.3);
}

.carousel-card[data-position="0"] {
    transform: translateX(0px) translateY(40px);
    width: 250px;
    height: 250px;
    margin-left: -125px;
    margin-top: -125px;
    z-index: 10;
}
.carousel-card[data-position="0"] .product-inner {
    transform: scale(1.25);
}

.carousel-card[data-position="1"] {
    transform: translateX(-150px) translateY(-20px);
    width: 180px;
    height: 180px;
    margin-left: -95px;
    margin-top: -95px;
    z-index: 8;
}
.carousel-card[data-position="1"] .product-inner {
    transform: scale(0.95);
}

.carousel-card[data-position="2"] {
    transform: translateX(-250px) translateY(-60px);
    width: 150px;
    height: 150px;
    margin-left: -80px;
    margin-top: -80px;
    z-index: 6;
}
.carousel-card[data-position="2"] .product-inner {
    transform: scale(0.8);
}

.carousel-card[data-position="3"] {
    transform: translateX(150px) translateY(-20px);
    width: 180px;
    height: 180px;
    margin-left: -95px;
    margin-top: -95px;
    z-index: 8;
}
.carousel-card[data-position="3"] .product-inner {
    transform: scale(0.95);
}

.carousel-card[data-position="4"] {
    transform: translateX(250px) translateY(-60px);
    width: 150px;
    height: 150px;
    margin-left: -80px;
    margin-top: -80px;
    z-index: 6;
}
.carousel-card[data-position="4"] .product-inner {
    transform: scale(0.8);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-tiny);
    margin-top: 25px;
}

.dot {
    width: var(--space-tiny);
    height: var(--space-tiny);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: var(--space-medium);
    border-radius: 4px;
    background: var(--accent);
}
.page-title {
    font-family: 'Yeseva One', cursive;
    font-size: var(--font-h1);
    font-weight: 400;
    margin-bottom: var(--space-large);
    text-align: center;
    color: var(--primary);
}

.section-title {
    font-family: 'Yeseva One', cursive;
    font-size: var(--font-h2);
    font-weight: 400;
    margin-bottom: var(--space-large);
    text-align: center;
    color: var(--primary);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xlarge);
    margin-top: var(--space-xlarge);
}

.category-card-link {
    text-decoration: none;
    display: block;
}
.category-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--space-medium);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.category-card:hover {
    box-shadow: var(--shadow-hover);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}


.category-card:hover img {
    transform: scale(1.02);
}
.category-card h3 {
    font-size: 1.375rem;
    text-align: center;
    margin: 28px 20px 12px 20px;
    color: var(--primary);
}

.category-card p {
    text-align: center;
    margin: 0 20px 32px 20px;
    font-size: var(--font-base);
    color: var(--text-light);
    line-height: 1.5;
}
.catalog {
    background: var(--bg-light);
    padding: 50px 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xlarge);
}

.catalog-filter h3 {
    font-family: 'Yeseva One', cursive;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 24px 0 14px 0;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: var(--space-tiny);

}

.catalog-filter h3:first-of-type {
    margin-top: 0;
}

.catalog-filter ul {
    list-style: none;
    margin-bottom: var(--space-medium);
}

.catalog-filter .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--space-tiny);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid #1e3a1f;
}

.catalog-filter-all {
    margin-bottom: var(--space-large);
}

.catalog-filter-all .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #54565B;
    padding: 10px 20px;
    border-radius: var(--space-tiny);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid var(--accent);
    cursor: pointer;
}

.catalog-filter-all .btn:hover {
    background: #1e3a1f;
    color: white;
    border-color: #1e3a1f;
}

.catalog-filter > div:not(.catalog-filter-all) {
    margin-bottom: var(--space-large);
}

.catalog-filter > div:last-child {
    margin-bottom: 0;
}
.catalog-filter a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    padding: 4px 0;
    font-size: var(--font-base);
 }

.catalog-filter a:hover {
    color: var(--primary);
    padding-left: var(--space-tiny); }

.catalog-filter a.active {
    color: var(--primary);
    font-weight: 600;
    padding-left: var(--space-tiny);
    border-left: 3px solid var(--accent);
}

.search-bar {
    margin-bottom: var(--space-large);
}

.search-bar form {
    display: flex;
    gap: var(--space-small);
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--space-tiny);
    font-size: var(--font-base);
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.no-results a{
    margin-top: var(--space-large);

}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-large);
}

.product-card {
    background: var(--white);
    border-radius: var(--space-small);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.3s;
    background: #f8f8f8;
    padding: var(--space-medium);
}

.product-card:hover img {
    transform: scale(1.02);
}

.product-card h3 {
    font-family: 'Yeseva One', cursive;
    padding: 18px 18px 8px;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary);
}

.product-card p {
    padding: 0 18px 16px;
    color: var(--text-light);
    font-size: var(--font-base);
    line-height: 1.5;
}

.product-card .btn-link {
    display: inline-flex;
    margin: 0 18px 20px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: var(--font-base);
    align-items: baseline;
    gap: 6px;}

.product-card .btn-link svg {
    width: 0.85em;
    height: auto;
    top: 1px;
    transition: transform 0.2s ease;
}

.product-card .btn-link:hover svg {
    transform: translateX(4px);
}
.product-page {
    padding: 50px 0;
    background: var(--white);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-section);
}

.product-image {
    background: #f8f8f8;
    border-radius: var(--space-medium);
    padding: var(--space-xlarge);
    display: flex;
    align-items: center;
    justify-content: center;
 }

.product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}
.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-medium);
}

.product-info h1 {
    font-family: 'Yeseva One', cursive;
    font-size: var(--font-h1);
    font-weight: 400;
    color: var(--primary);
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
}
.article-label {
    color: var(--text-light);
    margin-right:6px;
}

.article-value {
    color: var(--primary);
    font-weight: 600;
}

.product-desc {
    font-size: var(--font-base);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
 }

.product-specs {
    margin: 0;
}

.product-features {
    list-style: none;
    background: var(--bg-light);
    border-radius: var(--space-small);
    padding: 0;
}

.product-specs h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-small);
    color: var(--primary);
    font-family: 'Yeseva One', cursive;
    font-weight: 400;

}
.product-features {
    list-style: none;
    background: var(--bg-light);
    border-radius: var(--space-small);
    padding: 0;
    margin: 0;
}
.product-features li {
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-small);
    padding: 14px 20px;
}

.product-features li:last-child {
    border-bottom: none;
}
.product-features li strong {
    color: var(--primary);
    min-width: 120px;
    font-weight: 600;
}

.product-features li span {
    color: var(--text);
    flex: 1;
}

.product-partner h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-small);
    color: var(--primary);
    font-family: 'Yeseva One', cursive;
    font-weight: 400;
}

.btn-primary {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: var(--space-tiny);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary svg {
    width: 1em;
    height: auto;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}
.product-retail {
    padding-top: 0;
    border-top: none;
    margin: 0;
}

.product-retail h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-small);
    color: var(--primary);
    font-family: 'Yeseva One', cursive;
    font-weight: 400;
}

.marketplace-links {
    display: flex;
    gap: var(--space-small);
    flex-wrap: wrap;
}
.marketplace-links {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    gap: var(--space-small);
    flex-wrap: wrap;
}

.product-actions {
    gap: var(--space-small);
}


.article-label {
    color: var(--text-light);
    margin-right: var(--space-tiny);
}

.article-value {
    color: var(--primary);
    font-weight: 600;
}


.product-features li {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-small);
}
.product-features li:last-child {
    border-bottom: none;
}

.product-features li strong {
    color: var(--primary);
    min-width: 120px;
    font-weight: 600;
}

.product-features li span {
    color: var(--text);
    flex: 1;
}

.partner-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--space-medium);
    padding: 28px 24px;
    color: white;
    text-align: center;
}

.partner-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-small);
}

.partner-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-medium);
    font-size: 0.95rem;
}

.btn-partner {
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.btn-partner:hover {
    background: var(--accent-dark);
    color: var(--primary-dark);
}

.marketplace-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-tiny);
    padding: 12px 28px;
    border-radius: var(--space-tiny);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--white);
    border: 2px solid var(--border);
}

.marketplace-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

.marketplace-btn.ozon {
     border-color: #1062D4;
     color: #005BFF;
}

.marketplace-btn.ozon:hover {
     background: #1062D4;
     color: white;
}
.marketplace-btn.wildberries {
     border-color: #8B01BD;
     color: #5C3E8F;
}

.marketplace-btn.wildberries:hover {
     background: #8B01BD;
     color: white;
}
.retail-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--space-small);
}

.product-buy {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-small);
    align-items: center;
}

.product-buy p {
    width: 100%;
    margin-bottom: var(--space-tiny);
    font-weight: 500;
}

.feedback {
    padding: 50px 0;
    background: var(--bg-light);
    min-height: auto;
}

.feedback form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 24px 24px;
    border-radius: var(--space-medium);
    box-shadow: var(--shadow);
    overflow: visible;
}

.feedback input,
.feedback select,
.feedback textarea {
    padding: 10px 14px;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: var(--space-small);
    font-size: var(--font-base);
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--white);
}

.feedback select:focus, .feedback input:focus, .feedback textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.feedback textarea {
    width: 100%;
    min-height: var(--space-large);
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--space-small);
    font-size: var(--font-base);
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    transition: height 0.1s;
    overflow-y: hidden;
    resize: none;
}
.feedback select {
    width: 100%;
    padding: 14px 40px 14px 18px !important;
    border: 1px solid var(--border);
    border-radius: var(--space-small);
    font-size: var(--font-base);
    font-family: inherit;
    color: var(--text);
    background: white url('/images/icons/select-arrow.svg') no-repeat right 16px center;
    background-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
}

.feedback select:focus {
    border-color: var(--primary);
    outline: none;
    transform: none;
}

.feedback select option {
    position: relative;
    z-index: 2;
}
.consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--space-small);
    margin: 12px 0;
}
.consent-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    flex-shrink: 0;
    cursor: pointer;
}
.consent-wrapper label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
    cursor: pointer;
}
.consent-wrapper a {
    color: var(--primary);
    text-decoration: underline;
}
.consent-wrapper a:hover {
    color: var(--accent-dark);
}

.feedback .container {
    overflow: visible;
}
.feedback button {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-base);
    font-weight: 500;
    border: none;
    border-radius: var(--space-tiny);
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 4px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.feedback button:hover {
    background: var(--primary-dark);
}

.success-page {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--space-medium);
    box-shadow: var(--shadow);
    padding: 60px 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--primary);
    font-size: 48px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: system-ui, -apple-system, sans-serif;
}

.success-title {
    font-family: 'Yeseva One', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-small);
}

.success-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-large);
    line-height: 1.6;
}

.success-page .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--space-tiny);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.success-page .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

.documents-section {
    background: var(--bg-light);
    padding: 50px 0;
    min-height: auto;
}
.document-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: var(--space-small-plus);
    line-height: 1.5;
}
.documents-description p {
    margin-bottom: var(--space-medium);
    text-align: center;
}

.document-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border-radius: var(--space-tiny);
    font-weight: 500;
    border: 1px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
}
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
}
.document-card:hover .document-btn {
    background: var(--primary);
    color: var(--white);
}

.document-card {
    background: var(--white);
    border-radius: var(--space-small);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    max-width: 320px;
    margin: 0 auto;
}

.document-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.document-image {
    background: #f8f8f8;
    padding: var(--space-tiny);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}
.document-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    height: 220px;
}
.document-info {
    padding: var(--space-small);
    text-align: center;
    border-top: 1px solid var(--border);
}

.document-info h3 {
    font-family: 'Yeseva One', cursive;
    font-size: var(--font-base);
    margin-bottom: var(--space-tiny);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.3;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90% ;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: var(--space-medium);
    right: var(--space-large);
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

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

.footer {
    background: #1e3a1f;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xlarge);
    margin-bottom: var(--space-xlarge);
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.footer-logo {
    align-items: flex-start;
    text-align: left;
}
.footer-logo img {
    height: var(--space-xlarge);
    width: auto;
    margin-bottom: var(--space-tiny);
    filter: brightness(1) invert(1);
}
.footer-logo p {
    font-size: var(--font-base);
    line-height: 1.5;
    opacity: 1;
    margin: 0;
    text-align: left;
}

.footer h5 {
    font-family: 'Yeseva One', cursive;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: var(--space-small);
    color: var(--white);
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--space-xlarge);
    height: 2px;
    background: var(--accent);
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.footer ul li {
    margin: 0;
    padding: 0;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: var(--font-base);
}

.footer a:hover {
    opacity: 1;
}

.footer .btn {
    margin-top: var(--space-small);
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    transition: all 0.3s ease;
    align-items: baseline;
    align-self: flex-start;
    display: inline-flex;
}
.footer .btn svg {
    width: 1em;
    height: auto;
    margin-left: 8px;
}
.footer .btn:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer .text-center {
    text-align: center;
    padding-top: var(--space-large);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: var(--font-small);
}

.breadcrumbs {
    padding: 16px 0;
    background: var(--bg-light);
    font-size: var(--font-small);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.error-message {
    color: #dc3545;
    padding: var(--space-small);
    margin: 15px 0;
    background: #f8d7da;
    border-radius: var(--space-tiny);
    font-size: var(--font-base);
}

.success-message {
    color: #155724;
    padding: var(--space-small);
    margin: 15px 0;
    background: #d4edda;
    border-radius: var(--space-tiny);
    font-size: var(--font-base);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--space-small);
}

.products-count {
    margin-bottom: var(--space-medium);
    padding: var(--space-tiny);
    background: var(--bg-light);
    border-radius: var(--space-tiny);
    font-size: var(--font-small);
}

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

.bg-light {
    background: var(--bg-light);
}

.py-5 {
    padding: 60px 0;
}

.mb-5 {
    margin-bottom: var(--space-xlarge);
}

a {
    transition: all 0.2s ease;
}

.privacy-policy {
    padding: 60px 0;
    background: var(--bg-light);
}

.privacy-policy .container {
    max-width: 900px;
    background: var(--white);
    border-radius: var(--space-medium);
    box-shadow: var(--shadow);
    padding: 48px 56px;
}

.privacy-policy h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-xlarge);
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: var(--space-medium);
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.privacy-policy h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px 0;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: var(--space-small);
}

.privacy-policy h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px 0;
    color: var(--primary-dark);
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-small);
}

.privacy-policy ul {
    margin: 16px 0 24px 32px;
    list-style: none;
}

.privacy-policy li {
    margin-bottom: var(--space-tiny);
    padding-left: var(--space-medium);
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

.privacy-policy li:before {
    content: "•";
    color: var(--accent-dark);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.privacy-policy a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.privacy-policy a:hover {
    border-bottom-color: var(--accent);
    color: var(--primary-dark);
}

.privacy-policy .update-date {
    margin-top: var(--space-xlarge);
    padding-top: var(--space-medium);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        position: static;
        margin-bottom: var(--space-large);
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xlarge);
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xlarge);
    }

    .hero-left {
        min-width: auto;
        text-align: center;
        max-width: 100%;
    }
    .hero-left,
    .hero-right {
        min-width: 100%;
    }
    .hero-right {
        width: 100%;
        height: 420px;
    }

    .hero-left .btn-hero {
        margin: 0 auto;
    }
    .carousel-3d-wrapper {
        transform: none;
        margin: 0;
    }
    .product-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        flex-direction: column;
        gap: var(--space-small);
    }

    .nav {
        gap: var(--space-medium);
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay {
        padding: 40px 0;

    }
    .hero-content {
        gap: var(--space-medium);
    }

    .hero-left h1 {
        font-size: 2rem;
        margin-bottom: var(--space-small);
    }

    .hero-left p {
        font-size: 1rem;
        margin-bottom: var(--space-medium);
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-right {
        height: auto;
    }

    .carousel-3d-wrapper {
        transform: none;
        margin: 0;
    }

    .carousel-stage {
        height: 350px;
        overflow-x: auto;
        overflow-y: visible;
        perspective: none;
    }

    .carousel-track {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--space-small);
        padding: 20px 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .carousel-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 140px !important;
        height: 140px !important;
        margin: 0 !important;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .carousel-card[data-position] {
        transform: none !important;
        opacity: 1 !important;
    }

    .carousel-card .product-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-hover-card {
        display: none;
    }

    .carousel-dots {
        display: none;
    }

    .bugs {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-card h3 {
        font-size: 1.25rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
    .documents-grid {
        grid-template-columns: 1fr;
        gap: var(--space-medium);
    }

    .document-image {
        height: 200px;
        padding: var(--space-medium);
    }

    .feedback {
        padding: 30px 0 50px;
    }

    .feedback form {
        padding: 28px 20px;
    }
    .feedback input, .feedback select, .feedback textarea {
        margin-bottom: 14px;
        padding: 13px 16px;
    }

    .page-title {
        margin-bottom: 24px;
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xlarge);
        text-align: center;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-logo p {
        text-align: center;
    }

    .footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .btn {
        align-self: center;
    }

    .document-grid {
        grid-template-columns: 1fr;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-large);
    }
    .product-page {
        padding: 40px 0;
    }

    .product-image {
        padding: var(--space-medium);
    }
    .product-features li {
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
    }

    .product-features li strong {
        min-width: auto;
    }

    .privacy-policy .container {
        padding: 32px 24px;
    }

    .privacy-policy h1 {
        font-size: 1.75rem;
    }

    .privacy-policy h2 {
        font-size: 1.35rem;
    }

    .privacy-policy ul {
        margin-left: var(--space-small);
    }
}
@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 1.7rem;
    }

    .hero-overlay {
        padding: 30px 0;
    }

    .carousel-stage {
        height: 280px;
    }
}
@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.5rem;
    }

    .hero-left p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .carousel-3d-wrapper {
        margin-top: -100px;
        margin-bottom: -100px;
    }

    .carousel-stage {
        height: 260px;
    }

    .carousel-card {
        width: 110px !important;
        height: 110px !important;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .privacy-policy .container {
        padding: 24px 20px;
    }

    .privacy-policy h1 {
        font-size: 1.5rem;
    }

    .success-card {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-message {
        font-size: 1rem;
    }
}


.admin-nav {
    background: var(--primary);
    padding: 15px 0; margin-bottom: 30px;
}
.admin-nav .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.admin-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.admin-nav a:hover {
    text-decoration: underline;
}
.admin-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.admin-table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
}
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}
.admin-table tr:hover {
    background: var(--bg-light);
}
.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    margin: 0 3px;
}
.btn-danger {
    background: #dc3545;
}
.btn-danger:hover {
    background: #c82333;
}
.admin-form {
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}
.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.admin-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.admin-container {
    padding: 0 20px 50px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.admin-stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.admin-stat-card h2 {
    font-size: 48px;
    color: var(--primary);
    margin: 0;
}
.admin-stat-card p {
    margin: 10px 0;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-hint {
    margin-bottom: 20px;
    color: var(--text-light);
}
.admin-message {
    background: var(--bg-light);
    padding: 15px;
    border-radius:  8px;
    white-space: pre-wrap;
}


.nav-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}
.icon-small {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
}
.admin-nav a {
    display: inline-flex;
    align-items: center;
}
.logout-link {
    margin-left: auto;
}
.btn-small {
    display:inline-flex;
    align-items: center;
    gap: 4px;
}
.admin-view-actions {
    margin-top: 30px;
}
.error-page {
    min-height: 60vh;
}

.error-page .container {
    text-align: center;
}

.error-message-text {
    font-size: 1.2rem;
    margin: 30px 0;
}

.bugs {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 0;
    height: 0;
    perspective: 1000px;
    pointer-events: none;
    z-index: 1;
}
.bug {
    position: absolute;
    will-change: transform;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}
@keyframes flap {
    0%, 100% {
        transform: scaleX(1) rotate(0deg);
    }
    50% {
        transform: scaleX(0.2) rotate(15deg);
    }
}
.wing-l, .wing-r {
    transform-box: fill-box;
    will-change: transform;
}
.wing-l {
    transform-origin: right center;
    animation: flap 0.1s infinite ease-in-out;
}
.wing-r {
    transform-origin: left center;
    animation: flap 0.1s infinite ease-in-out;
}
.mosquito .wing-l, .mosquito .wing-r { animation-duration: 0.07s; }
.fly .wing-l, .fly .wing-r      { animation-duration: 0.1s; }
.wasp .wing-l, .wasp .wing-r     { animation-duration: 0.13s; }
.gadfly .wing-l, .gadfly .wing-r { animation-duration: 0.15s; }