:root{
	--primary-color: #2F855A;
	--primary-dark: #276749;
	--primary-light: #48BB78;
	--secondary-color: #D69E2E;
	--dark-color: #2D3748;
	--light-color: #F7FAFC;
	--gray-color: #A0AEC0;
	--white: #FFFFFF;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--font-family: sans-serif;
	--font-family-arial: Arial;
}
html{font-family: var(--font-family);
  height: 100%;
  display: flex;
  flex-direction: column;
	
  line-height: normal;
  color: var(--dark-color);line-height: 1.6;
}
 body {
	background-color: var(--white);
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-color: var(--primary-dark) #d9d9d9;
scrollbar-width: thin !important;
margin: 0;
            padding: 0;
			
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

ul, ol, li{
	list-style: none !important;
}
star{color: RED;font-size: 16px;}
b, strong{
	font-weight: 600;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.load-11{
	background-image: url(../images/ajax-loader.gif);
	height: 11px;
	width: 43px;
	position: relative;
	z-index: 3;
}
.overload,
.overload-block{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 999999;
	animation: barberpole 7s linear infinite;
	justify-content: center;
	display: flex;
	align-items: center;
	backdrop-filter: blur(5px);
}
.overload-block{
	position: absolute;
}
.move{
	border-radius: 8px;
	height: 5px;
	background-image: repeating-linear-gradient( -45deg, var(--primary-dark), var(--primary-color) 11px, #fff 0, #fff 20px );
	-webkit-background-size: 28px 28px;
	background-size: 28px 28px;
	-webkit-animation: move 2.5s linear infinite;
	-webkit-animation: move 2.5s linear infinite;
	animation: move 2.5s linear infinite;
	width: 100%;
}
@keyframes move {
  0% {
    background-position: initial;
  }
  100% {
    background-position: 100px 0px;
  }
}
h1, h2, h3, h4, h5 {
            font-weight: 100;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
			display: flex;
 justify-content: center;
 align-items: center;
        }

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

        .btn-secondary {
            background-color: var(--secondary-color);
        }

        .btn-secondary:hover {
            background-color: #B7791F;
        }

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

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
		
		.section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .text-center {
            text-align: center;
        }
/* Header */
header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.active::before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: -4px;
  box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.14),inset 0 2px 1px -1px rgba(0,0,0,.12);
  content: "";
  height: 4px;
  left: 8px;
  mask-image: -webkit-gradient(linear,left top,right top,from(transparent),color-stop(5%,#000),color-stop(95%,#000),to(transparent));
  mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  position: absolute;
  -webkit-mask-image: -webkit-gradient(linear,left top,right top,from(transparent),color-stop(5%,#000),color-stop(95%,#000),to(transparent));
  -webkit-mask-image: -webkit-linear-gradient(left,transparent,#000 5%,#000 95%,transparent);
  width: calc(100% - 16px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.logo img {
    height: 48px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    padding-left: 15px;
}

/* Навигация */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1.2rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-menu li a:hover {
    color: var(--primary-dark);
}

.nav-menu li:not(.nav-cta) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu li:not(.nav-cta) a:hover::after {
    width: 70%;
}

/* Контактный блок в шапке */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.2rem;
    background: rgba(var(--primary-light-rgb), 0.1);
    border-radius: 10px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    transition: all 0.3s ease;
}

.phone-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    background: none;
    -webkit-text-fill-color: var(--dark-color);
}

.phone-number:hover {
    color: var(--primary-color);
}
		
		/* Hero Section */
        .hero {

	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/image-33.png) no-repeat center center/cover;
            color: var(--white);
            padding: 8rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;font-weight: 300;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
		/* Features Section */
        .features {
            background-color: var(--light-color);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
		
		/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-flow: column nowrap;
}

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

.product-image {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 auto;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.product-sort {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.product-sze {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.product-info p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.9rem;
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    flex: 0 0 auto;
    font-size: 1.1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
	
		/* About Section */
        .about {
            background-color: var(--light-color);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
 
        }
.about-image{
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	overflow: hidden;
}

        .about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-repeat: no-repeat;
	background-position: center center;
        }

        .about-content h2 {
            margin-bottom: 1.5rem;
        }

        .about-features {
            margin: 2rem 0;
        }

        .about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .about-feature i {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
		.about-container p{
	margin-bottom: auto;			
		}
		.about-container .btn{
	max-width: 250px;
}
		/* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-detail i {
            color: var(--primary-color);
            margin-right: 1rem;
            width: 20px;
        }
		.contact-detail p{
	margin-bottom: auto;
}
        .contact-form .form-group {
            margin-bottom: 1.5rem;
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--gray-color);
            border-radius: 4px;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
		.contact-info{display: flex;
 flex-flow: column nowrap;}
 .map-placeholder{min-height: 200px;
  flex: 1 1 auto;background-color: #f1f1f1; height: 200px; border-radius: 8px; display: flex; align-items: center; justify-content: center;}
  
  /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col a:hover {
            color: var(--primary-light);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
		
		
		.notification {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
    transform-origin: top right;
    backdrop-filter: blur(5px);
}

.notification.success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-left: 4px solid #27ae60;
}

.notification.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-left: 4px solid #c0392b;
}

.notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification .notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification .notification-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification .notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin-left: 10px;
    transition: color 0.2s;
}

.notification .notification-close:hover {
    color: white;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
}

.notification.hide {
    animation: slideOut 0.3s ease-out forwards;
}

/* Стили для формы */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group label star {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error-input,
.form-group textarea.error-input {
    border-color: #e74c3c;
    background-color: #fff8f8;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
}

.btn.sending .btn-text {
    opacity: 0;
}

.btn.sending .btn-loader {
    display: inline;
}