
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1E40AF;
  --color-accent: #10B981;
  --color-warning: #FBBF24;
  --color-success-bg: #dcfce7;
  --color-success-text: #15803d;
  --color-error-bg: #fee2e2;
  --color-error-text: #b91c1c;
  --color-light-bg: #f9f9f9;
  --color-lightest-bg: #f9fafb;
  --color-input-border: #d1d5db;
  --color-text: #111827;
  --color-muted-text: #374151;
  --color-link-hover: #cbd5e1;
}

* {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
background: #f9f9f9;
}

.site-header {
  background: #2563EB;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 115px;
}
.container-content {
     max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-home {
max-width: 100%;
margin: 0!important;
padding: 0!important; 
}
    .btn-primary {
    background-color: #2563EB;
    color: white;
    border: none;
    text-decoration: none;
}
.btn-primary:hover {
    background-color: #1D4ED8;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.main-nav a {
  margin-right: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.8;
  color:#f5662c;
}
.fa-regular:hover, .fa-solid:hover {
    color: #f5662c;
    transition: color 0.3s;
      opacity: 0.8;
    
}
.header-actions a {
  color: white;
  margin-left: 20px;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.header-actions a:hover {
  transform: scale(1.2);
}

.site-footer {
  background: linear-gradient(130deg, #f1632c, #f1632cb8);
  color: #ffffffcf;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ffffffcf;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  text-decoration: none;
    color: #ffffff;
}

.footer-socials a {
  margin-right: 10px;
  font-size: 18px;
  color: #ffffffcf!important;
}
.footer-socials a:hover {
  color: #ffffff!important;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #ffffff5e;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-links, .footer-links-social {
      color: #ffffffcf;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links:hover, .footer-links-social:hover {
      color: #ffffff;
  text-decoration: none;
}
/* Login */

.login-form {
  max-width: 400px;
  margin: 30px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #333;
}

.login-form input {
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.login-form input:focus {
  border-color: #2563EB;
  outline: none;
}

.login-form button {
  padding: 12px;
  background: #2563EB;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: #1e4ecc;
}

.form-title {
  text-align: center;
  font-size: 24px;
  margin-top: 30px;
  color: #222;
}

.form-error {
  max-width: 400px;
  margin: 0 auto 20px;
  background: #ffe5e5;
  color: #cc0000;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

/* feedback */

    .feedback {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 960px;
        margin: 90px auto;
    background: #f9fafb;
    border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        animation: fadeInUp 0.8s ease;
    }

    @keyframes fadeInUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .feedback__form {
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #f9fafb;
    }

    .feedback__title {
        font-size: 32px;
        color: #1f2937;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

    .feedback__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 60px;
        height: 4px;
        background: #3b82f6;
        border-radius: 2px;
    }

    .feedback__group {
        margin-bottom: 24px;
    }

    .feedback__label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #374151;
    }

    .feedback__input,
    .feedback__textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid #d1d5db;
        border-radius: 12px;
        font-size: 16px;
        background: #fff;
        color: #111827;
        transition: all 0.3s ease;
        box-shadow: inset 0 0 0 transparent;
    }

    .feedback__input:focus,
    .feedback__textarea:focus {
        border-color: #3b82f6;
        outline: none;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .feedback__textarea {
        min-height: 140px;
        resize: vertical;
    }

    .feedback__button {
        background: #3b82f6;
        color: white;
        border: none;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .feedback__button:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
    }

.feedback__image__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.feedback__image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 20px #d5dce6;
    transition: transform 0.3s ease;
}

.feedback__image:hover {
    transform: scale(1.03);
}


    .feedback__message {
        margin-bottom: 20px;
        padding: 14px;
        border-radius: 10px;
        font-weight: 500;
    }

    .feedback__message--error {
        background: #fee2e2;
        color: #b91c1c;
    }

    .feedback__message--success {
        background: #dcfce7;
        color: #15803d;
    }

    @media (max-width: 768px) {
        .feedback {
            grid-template-columns: 1fr;
                margin-left: 15px;
    margin-right: 15px;
        }
        .feedback__image__container {
            display:none;
        }

        .feedback__image {
            height: 220px;
            display: block;
        }
    }
    
/* Product */
.product-quantity {
  width: 60px;
  padding: 6px 8px;
  font-size: 16px;
  border: 1.5px solid #2563EB;
  border-radius: 6px;
  text-align: center;
  color: #111;
  outline-offset: 2px;
  transition: border-color 0.3s ease;
}

.product-quantity:focus {
  border-color: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

  .product-main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.12);
  }
  .product-image-container {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .product-image-container:hover {
    transform: scale(1.03);
  }
  .product-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .product-info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .product-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 900;
    color: #2563EB;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 1px rgba(37, 99, 235, 0.3);
  }
  .product-rating {
    color: #FBBF24; /* яркий желтый */
    font-size: 1.8rem;
    margin-bottom: 14px;
    user-select: none;
    text-shadow: 0 0 1px #FBBF24;
  }
  .product-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #f36a35;
/*     text-shadow: 0 0 1px #10B98188;
 */  }
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }
  .btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    color: white;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.12);
    transition: all 0.35s ease;
    letter-spacing: 0.04em;
    text-transform: capitalize;
  }
  .btn-add {
    background: linear-gradient(45deg, #f1632c, #ff9c76);
    transition:3s;
        margin-bottom: 15px;
  }
  .btn-add:hover {
    background: linear-gradient(45deg, #ef4d0e, #f1632c);
    box-shadow: 0 8px 20px #f1632c66;
  }
  .btn-fav {
      background:#3c82f6;
  }
    .btn-fav:hover {
      background:#00aeff;
  }
  .btn-buy {
    background: linear-gradient(45deg, #10B981, #34D399);
  }
  .btn-buy:hover {
    background: linear-gradient(45deg, #047857, #10B981);
    box-shadow: 0 8px 20px #047857AA;
  }
  .product-categories {
    margin-bottom: 25px;
  }
  .categories-title {
    font-weight: 900;
    color: #2563EB;
    margin-bottom: 10px;
    font-size: 1.4rem;
    border-bottom: 3px solid #2563EB;
    padding-bottom: 6px;
    letter-spacing: 0.03em;
  }
  .categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .categories-list li {
    background: #2563EB;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgb(37 99 235 / 0.4);
    transition: background-color 0.3s ease;
    user-select: none;
  }
  .categories-list li:hover {
    background: #1E40AF;
  }
  .product-description, .product-attributes {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgb(37 99 235 / 0.12);
    margin-top: 40px;
    color: #374151;
  }
  .product-description h2,
  .attributes-title {
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #2563EB;
    letter-spacing: 0.02em;
  }
  .product-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    white-space: pre-line;
  }
  .attributes-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .attributes-list li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4B5563;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .product-main {
      flex-direction: column;
    }
    .product-image-container,
    .product-info {
      max-width: 100%;
      flex: none;
    }
    .product-image-container {
    flex: 0 0 100%;
    max-width: 100%;
    }
  }
  @media (max-width: 500px) {
    .btn {
      font-size: 1.1rem;
      padding: 14px 0;
    }
    .categories-title, .attributes-title {
      font-size: 1.2rem;
    }
  }
  @media (max-width: 350px) {
    .btn {
      font-size: 1rem;
      padding: 12px 0;
    }
  }
  
 /* elements */ 
 .breadcrumbs {
         padding-top: 2rem;
    padding-bottom: 2rem;
 }
 
 /* about */
 
   .about-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
  }
  .about-section {
    margin-bottom: 50px;
  }
  .about-section h2 {
    font-size: 2rem;
    color: #2563EB;
    margin-bottom: 15px;
    border-left: 5px solid #f06a2c;
    padding-left: 10px;
  }
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
  }
  .advantages-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  .advantages-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f06a2c;
    font-weight: bold;
  }
  .production-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 15px;
  }
  .contact-info {
    font-size: 1.1rem;
  }
  .contact-info p {
    margin: 8px 0;
  }
  
  /*  */
  
  /* FAQ Section (Мебельная тематика) */
.faq-section {
  padding: 4rem 0;
  background: #F9FAFB;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-accordion {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  background: white;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1F2937;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #F3F4F6;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #F9FAFB;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 25px 20px;
}

.faq-answer p {
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Process Section (Как мы работаем) */
.process-section {
  padding: 35px 0;
  background: #F9FAFB;
}

.process-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: #E5E7EB;
  z-index: 1;
}

.timeline-step {
  position: relative;
  padding-left: 100px;
  margin-bottom: 40px;
  z-index: 2;
}

.step-icon {
  position: absolute;
  left: 30px;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #E5E7EB;
}

.step-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    margin-block-start: 0;
  font-size: 1.25rem;
  color: #1F2937;
  margin-bottom: 10px;
}

.step-content p {
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

/* Benefits Section (Преимущества) */
.benefits-section-main {
  padding: 35px 0;
  padding-bottom:75px;
  background: white;
}

.benefits-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  background: #F9FAFB;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: #f1632c;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #1F2937;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .benefits-section-main {
        padding-top:15px;
    }
  .faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .timeline::before {
    left: 30px;
  }

  .timeline-step {
    padding-left: 80px;
  }

  .step-icon {
    left: 10px;
    width: 50px;
    height: 50px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Анимация для timeline */
.timeline::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.timeline.in-view::before {
  transform: scaleY(1);
}

/* Анимация для FAQ */
.faq-answer p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #1F2937;
	font-weight:500;
}
.section-subtitle {
  text-align: center;
  color: #6B7280!important;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/*  Hero */


  .hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1632c 0%, #3c82f6 100%);
    color: white;
  }
  .hero__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .hero__div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

.hero-title-highlight {
  color: #fff;
  display: inline-block;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  /*background: rgb(24 176 247 / 61%);*/
  z-index: 0;
  border-radius: 2px;
}

.highlight {
  color: #f1632c;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgb(241 99 44);
  z-index: -1;
  border-radius: 2px;
}

  .hero-content-pages {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .highlight-hero {
    background: linear-gradient(90deg, #10B981 0%, #51d6aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
  }
  .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 13px;
  }
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  .btn-round-primary {
    background: #fff;
    color: #f1632c;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-round-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .btn-round-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-round-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  .hero-image img {
    max-width: 500px;
    width: 100%;
/*     animation: float 3s ease-in-out infinite;
 */  }
  @keyframes float {
/*     0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
 */  }

  @media (max-width: 768px) {
    .hero__div {
      flex-direction: column;
      text-align: center;
    }
    .hero-features, .hero-buttons {
      justify-content: center;
    }
    .hero-image {
      margin-top: 40px;
    }
	  .hero h1 {
		  font-size:40px;
	  }
	  .hero-buttons {
    display: inline-grid;
  }
}

