:root {
  --bg-light: #fcf5e5;
  --accent-wheat: #f5deb3;
  --accent-yellow: #f7d258;
  --text-dark: #333;
  --overlay: rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
    margin: 0;
  padding: 0;
  overflow-x: hidden; 
}

.as-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
}

.as-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.as-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.as-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-yellow);
}
.as-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.as-nav a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s;
}
.as-nav a:hover {
  color: var(--accent-wheat);
}
.as-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.as-spacer {
  height: 80px;
}

.as-hero {
  position: relative;
  overflow: hidden;
  height: 70vh;
  width: 100vw; 
  margin: 0;     
  padding: 0;
}
.as-slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.as-slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  
}
.as-slide-content {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: #fff;
}
.as-slide-content h2 {
  font-size: 3rem;
  margin-bottom: 8px;
}
.as-slide-content p {
  font-size: 1.2rem;
}
.as-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--overlay);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.as-parallax {
  position: relative;
  height: 50vh;
  background: url("../assets/images/gallery1.jpg") center/cover fixed;
}
.as-parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}
.as-parallax-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.as-parallax-overlay p {
  font-size: 1.1rem;
}

.categories-section {
  background: #f9f3e7;
  padding: 80px 20px;
}
.categories-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #4a3c31;
  margin-bottom: 48px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.category-content {
  padding: 20px;
}
.category-content h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #a86b1f;
}
.category-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}
.category-content .btn {
  display: inline-block;
  padding: 10px 28px;
  background: #d4a017;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}
.category-content .btn:hover {
  background: #b58d15;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .categories-section {
    padding: 60px 10px;
  }
  .categories-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .categories-grid {
    gap: 20px;
  }
  .category-content .btn {
    width: 100%;
    text-align: center;
  }
}

.as-about {
  padding: 60px 0;
  text-align: center;
}
.as-about h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.as-about p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.as-contact-cta {
  background: var(--accent-yellow);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.as-contact-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.as-contact-cta .as-btn {
  background: #fff;
  color: var(--accent-yellow);
}

.as-footer {
  background: #fff;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #e0d0a0;
}
.as-footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 8px;
}
.as-sep {
  color: #ccc;
}
.as-footer-copy {
  margin-top: 8px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .as-nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 64px;
    right: 20px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .as-nav ul.open {
    display: flex;
  }
  .as-menu-toggle {
    display: block;
  }
  .as-spacer {
    height: 104px;
  }
  .as-slide-content h2 {
    font-size: 2rem;
  }
}

.production-advantages-section {
  background: #fffafa;
  padding: 80px 20px;
}
.production-advantages-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #4a3c31;
  margin-bottom: 48px;
}
.prod-advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
}
.prod-advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-advantages-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.prod-advantages-list .icon {
  flex: 0 0 48px;
}
.prod-advantages-list .icon img {
  width: 100%;
  height: auto;
}
.prod-advantages-list .content h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #a86b1f;
}
.prod-advantages-list .content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .production-advantages-section {
    padding: 60px 10px;
  }
  .production-advantages-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .prod-advantages-list {
    gap: 20px;
  }
  .prod-advantages-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .prod-advantages-list .icon {
    margin-bottom: 12px;
  }
}

.efficacy-section {
  background: #fffdf8;
  padding: 80px 20px;
}
.efficacy-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #4a3c31;
  margin-bottom: 48px;
}

.efficacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.efficacy-item {
  padding: 0;
  margin: 0;
  transition: color 0.3s ease;
}
.efficacy-item:hover h3 {
  color: #b58d15;
}

.efficacy-item h3 {
  font-size: 1.4rem;
  color: #a86b1f;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.efficacy-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4a017, #e5c04a);
  border-radius: 2px;
}

.efficacy-item p {
  margin: 0 0 24px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .efficacy-section {
    padding: 60px 10px;
  }
  .efficacy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .efficacy-grid {
    gap: 24px;
  }
}

.testimonials-section {
  background: #faf8f3;
  padding: 80px 20px;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #4a3c31;
  margin-bottom: 48px;
}

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

.testimonial-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.testimonial-item:nth-child(1) {
  animation-delay: 0.2s;
}
.testimonial-item:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonial-item:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-item blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #d4a017;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.testimonial-item cite {
  display: block;
  margin-top: 12px;
  text-align: right;
  font-style: normal;
  color: #4a3c31;
  font-weight: 500;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 10px;
  }
  .testimonials-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .testimonials-grid {
    gap: 24px;
  }
}

.supplier-contacts-section {
  background: #fffdf8;
  padding: 80px 20px;
}
.supplier-contacts-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #4a3c31;
  margin-bottom: 48px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.contact-block h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #a86b1f;
}
.contact-block p {
  margin: 4px 0;
  font-size: 1rem;
  color: #555;
}
.contact-block a {
  color: #d4a017;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.factory-locations h3 {
  font-size: 1.8rem;
  color: #4a3c31;
  margin-bottom: 16px;
}
.factory-locations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.factory-locations li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}
.factory-locations li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a017;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .supplier-contacts-section {
    padding: 60px 10px;
  }
  .supplier-contacts-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .contacts-grid {
    gap: 24px;
  }
  .factory-locations h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

.faq-section {
  background: #fffdf8;
  padding: 80px 20px;
}
.faq-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #4a3c31;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-bottom: 2px solid #e5d8c4;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 1.2rem;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.faq-question:hover .question-text {
  color: #a86b1f;
}

.arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #777;
  stroke-width: 2;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.faq-item.open .arrow {
  transform: rotate(180deg);
  stroke: #a86b1f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 16px;
}
.faq-item.open .faq-answer {
  padding: 12px 16px 24px;
  max-height: 200px;
}

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

@media (max-width: 600px) {
  .faq-section {
    padding: 60px 10px;
  }
  .faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 12px;
  }
  .faq-answer {
    padding: 0 12px;
  }
}

section {
  padding: 80px 20px;
}
section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #f7f4f3;
  margin-bottom: 24px;
}

.hero-section {
  position: relative;
  height: 80vh;
  background: url("../assets/images/gallery4.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.hero-section .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}
.hero-section .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hero-section .hero-content .btn {
  background: #b58d15;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.hero-section .hero-content .btn:hover {
  background: #4a3c31;
}

.category-overview {
  background: #fffdf8;
}
.category-overview p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  color: #333;
}
.category-overview ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.category-overview li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #333;
}
.category-overview li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b58d15;
}

.products-section {
  background: #f9f6f0;
}
.products-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.products-section .product-item img {
  width: 100%;
  height: 200px;
  border: 2px solid #e5d8c4;
  border-radius: 8px;
  object-fit: cover;
}
.products-section .product-item h3 {
  margin: 16px 0 8px;
  color: #4a3c31;
}
.products-section .product-item p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 12px;
}
.products-section .product-item .btn {
  display: inline-block;
  background: #b58d15;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.products-section .product-item .btn:hover {
  background: #a07612;
}

.faq-section {
  background: #fffdf8;
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-section .faq-item {
  border-bottom: 2px solid #e5d8c4;
}
.faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  font-size: 1.2rem;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-section .faq-item.open .faq-answer {
  padding: 12px 0;
  max-height: 200px;
}

.benefits-flip-section {
  background: #fffdf8;
  padding: 80px 20px;
}
.benefits-flip-section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #4a3c31;
  margin-bottom: 40px;
}
.flip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.flip-card {
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: #ffffff;
}
.flip-card-front img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.flip-card-front h3 {
  font-size: 1.2rem;
  color: #4a3c31;
}

.flip-card-back {
  background: #b58d15;
  color: #fff;
  transform: rotateY(180deg);
}
.flip-card-back p {
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .benefits-flip-section {
    padding: 60px 10px;
  }
  .benefits-flip-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .flip-card-inner {
    height: 200px;
  }
  .flip-card-front img {
    width: 50px;
    height: 50px;
  }
  .flip-card-front h3 {
    font-size: 1rem;
  }
  .flip-card-back p {
    font-size: 0.9rem;
  }
}

.title_background {
  background: linear-gradient(90deg, #f9ede2, #fff5ea);
  padding: 60px 20px;
}
.title_background .container {
  display: flex;
  justify-content: center;
}
.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a3c31;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text_background {
  background: #ffffff;
  padding: 40px 20px 80px;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

@media (max-width: 768px) {
  .title_background {
    padding: 40px 10px;
  }
  .title_background .title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .text_background {
    padding: 30px 10px 60px;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}

.orders-timer-section {
  padding: 80px 20px;
  text-align: center;
}
.orders-timer-section h2 {
  font-size: 2.2rem;
  color: #4a3c31;
  margin-bottom: 16px;
}
.orders-timer-section .orders-counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: #b58d15;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.orders-timer-section .orders-label {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 600px) {
  .orders-timer-section {
    padding: 60px 10px;
  }
  .orders-timer-section h2 {
    font-size: 1.8rem;
  }
  .orders-timer-section .orders-counter {
    font-size: 2.5rem;
  }
  .orders-timer-section .orders-label {
    font-size: 0.9rem;
  }
}

.about-us-detailed-section {
  background: #ffffff;
  padding: 100px 20px;
}
.about-us-detailed-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #4a3c31;
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
}
.about-us-detailed-section .about-content {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
}
.about-us-detailed-section p {
  margin-bottom: 24px;
  font-size: 1rem;
}
.about-us-detailed-section .about-quote {
  margin: 24px auto;
  max-width: 700px;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  border-left: 4px solid #b58d15;
  padding-left: 16px;
}
.about-us-detailed-section h3 {
  font-size: 1.6rem;
  color: #4a3c31;
  margin-top: 40px;
  margin-bottom: 16px;
}
.about-us-detailed-section .about-timeline,
.about-us-detailed-section .about-values {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.about-us-detailed-section .about-timeline li,
.about-us-detailed-section .about-values li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.about-us-detailed-section .about-timeline li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b58d15;
  font-size: 1.4rem;
  top: 0;
}
.about-us-detailed-section .about-values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4a3c31;
  font-size: 1rem;
  top: 2px;
}

@media (max-width: 768px) {
  .about-us-detailed-section {
    padding: 80px 10px;
  }
  .about-us-detailed-section h2 {
    font-size: 2.2rem;
  }
  .about-us-detailed-section h3 {
    font-size: 1.4rem;
  }
  .about-us-detailed-section p,
  .about-us-detailed-section .about-quote,
  .about-us-detailed-section li {
    font-size: 0.95rem;
  }
}
.delivery-image {
  max-width: 900px;
  aspect-ratio: 7 / 4;
  overflow: hidden;
}
.delivery-image img {
  width: 100%;
  height: auto;
  display: block;
}