/* Base Styles */
:root {
  --primary: #6d4c41;
  --primary-dark: #40241a;
  --primary-light: #9c786c;
  --secondary: #78909c;
  --accent: #ffab91;
  --text: #333;
  --text-light: #666;
  --bg: #f5f5f5;
  --white: #fff;
  --black: #222;
  --gray: #e0e0e0;
  --success: #4caf50;
  --error: #f44336;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  font-weight: 500;
  position: relative;
}

.nav-list a.active,
.nav-list a:hover {
  color: var(--primary);
}

.nav-list a.active:after,
.nav-list a:hover:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* About Preview Section */
.about-preview {
  padding: 4rem 0;
}

.about-preview .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

/* Featured Products */
.featured-products {
  padding: 4rem 0;
  background-color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 1.5rem;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.price {
  font-weight: 600;
  color: var(--primary);
  margin: 1rem 0;
}

/* Process Section */
.process {
  padding: 4rem 0;
  background-color: var(--bg);
}

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

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

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-image {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--white);
}

.testimonial-slider {
  position: relative;
  margin: 3rem auto;
  max-width: 800px;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 2rem;
  background: var(--bg);
  border-radius: 8px;
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}

blockquote:before,
blockquote:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

blockquote:before {
  left: -10px;
  top: -15px;
}

blockquote:after {
  right: -10px;
  bottom: -25px;
}

cite {
  font-weight: 600;
  color: var(--primary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-prev,
.slider-next {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
}
.cw {
  color: white !important;
}
.dot.active {
  background: var(--primary);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--bg);
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
/* 
.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
} */

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.footer-links a,
.footer-contact a {
  color: wheat !important;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: red !important;
}
/* Стрелка справа */
.faq-question::after {
  content: '▶';
  margin-left: auto;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* Повернуть стрелку при открытии FAQ (если нужно) */
.faq-question.active::after {
  transform: rotate(90deg);
}

.faq-question:hover {
  background: var(--primary-light);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.visit-content ul,
.wholesale-content ul {
  margin-bottom: 10px;
}
/* CTA Section */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent);
}

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

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

.social-links a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  padding: 0 1.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.legal-links {
  margin-top: 1rem;
}

.legal-links a {
  margin: 0 0.5rem;
  color: var(--accent);
}

/* About Page Specific Styles */
.about-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ab-1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.heritage {
  padding: 4rem 0;
}

.heritage .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.heritage-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.heritage-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.heritage-content {
  flex: 1;
}

.heritage-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.team {
  padding: 4rem 0;
  background-color: var(--bg);
}

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

.team-member {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-light);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Pricing Page Specific Styles */
.pricing-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/pr-1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}

.collection-content {
  display: none;
}

.collection-content.active {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.collection-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.collection-details {
  flex: 1;
}

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

.price-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.5rem 0;
}

/* Contact Page Specific Styles */
.contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/co-1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.contact-methods {
  padding: 4rem 0;
}

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

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-form-section {
  padding: 4rem 0;
}

.contact-form-section .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.form-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.form-content {
  flex: 1;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
}

.checkbox-group input {
  width: auto;
}

.privacy {
  font-size: 0.9rem;
}
.logo-img {
  height: 45px;
}
.privacy a {
  color: var(--primary);
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  padding-top: 6rem;
}
.mr {
  margin-bottom: 0 !important;
}
.legal-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.legal-content {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content article {
  margin-bottom: 3rem;
}

.legal-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.legal-content h3 {
  color: var(--primary-dark);
  margin: 1.5rem 0 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
}

.thank-you-next {
  padding: 4rem 0;
  text-align: center;
}

.next-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.thank-you-social {
  padding: 4rem 0;
  background-color: var(--bg);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-preview .container,
  .collection-content.active,
  .contact-form-section .container {
    flex-direction: column;
  }

  .hero-image,
  .about-image,
  .collection-image,
  .form-image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  /* .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-list.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    position: relative;
    transition: var(--transition);
  }

  .hamburger:before,
  .hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
  }

  .hamburger:before {
    top: -8px;
  }

  .hamburger:after {
    top: 8px;
  }

  .nav-toggle.active .hamburger {
    background: transparent;
  }

  .nav-toggle.active .hamburger:before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.active .hamburger:after {
    top: 0;
    transform: rotate(-45deg);
  } */

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 576px) {
  .cta-buttons,
  .collection-tabs {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .tab-btn {
    width: 100%;
  }
}

/* Base styles */
:root {
  --primary: #6d4c41;
  --primary-dark: #40241a;
  --primary-light: #9c786c;
  --secondary: #78909c;
  --accent: #ffab91;
  --text: #333;
  --text-light: #666;
  --bg: #f5f5f5;
  --white: #fff;
  --black: #222;
  --gray: #e0e0e0;
  --success: #4caf50;
  --error: #f44336;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

section {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  cursor: pointer;
}

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

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

/* Philosophy Section */
.philosophy .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.philosophy-content {
  flex: 1 1 500px;
}

.philosophy-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

/* Awards Section */
.awards-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.award {
  flex: 0 0 280px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.award:hover {
  transform: translateY(-5px);
}

.award-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.award h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.award p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Visit Section */
.visit .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.visit-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.visit-content {
  flex: 1 1 500px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .nav-list {
    gap: 10px;
  }
  .philosophy .container,
  .visit .container {
    flex-direction: column;
  }

  .awards-slider {
    flex-direction: column;
    align-items: stretch;
  }

  .award {
    flex: 1 1 auto;
    min-width: 100%;
  }
}

/* Base styles */
.material-cards,
.sale-products,
.gift-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.material-card,
.sale-card,
.gift-card {
  flex: 1 1 300px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.material-card:hover,
.sale-card:hover,
.gift-card:hover {
  transform: translateY(-5px);
}

.material-card img,
.sale-card img,
.gift-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.material-card h3,
.sale-card h3,
.gift-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--black);
}

.material-card p,
.sale-card p,
.gift-card p {
  padding: 0 1rem 1rem;
  color: var(--text-light);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: 1rem;
}

.sale-price {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  margin-left: 1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.sale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#countdown {
  font-weight: bold;
  color: var(--primary);
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--error);
  color: var(--white);
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
}

.sale-card {
  position: relative;
}

.price {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

/* Custom Fragrance Section */
.custom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.custom-content {
  flex: 1 1 500px;
}

.custom-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

/* Gift Options Section */
.gift-options {
  justify-content: center;
}

/* Wholesale Section */
.wholesale .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.wholesale-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.wholesale-content {
  flex: 1 1 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .material-cards,
  .sale-products,
  .gift-options {
    flex-direction: column;
    align-items: stretch;
  }

  .sale-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom,
  .wholesale .container {
    flex-direction: column;
  }
}
ul,
ol {
  list-style: none;
  padding-left: 0;
}

.corporate .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.corporate-content {
  flex: 1 1 500px;
}

.corporate-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
.bridal .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.bridal-content {
  flex: 1 1 500px;
}

.bridal-image {
  flex: 1 1 400px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
.education h2 {
  margin-bottom: 2rem;
}

.education-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.education-card {
  flex: 1 1 300px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.education-card:hover {
  transform: translateY(-5px);
}

.education-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.education-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

.education-card p {
  padding: 0 1rem 1rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .corporate .container,
  .bridal .container {
    flex-direction: column;
  }

  .education-cards {
    flex-direction: column;
  }
}

/* === Services Hero Section === */
.services-hero {
  background-color: var(--primary-light);
  padding: 6rem 0;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* === Service Tabs Section === */
.service-details {
  margin-top: 2rem;
}

.service-details h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.workshop-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.workshop-card {
  flex: 1 1 300px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
}

.workshop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.workshop-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--black);
}

.workshop-card p {
  padding: 0 1rem;
  color: var(--text-light);
}

.price {
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: bold;
}
@media (max-width: 768px) {
  .heritage,
  .container {
    flex-direction: column;
  }
  .material-card img,
  .sale-card img,
  .gift-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .material-card,
  .sale-card,
  .gift-card {
    flex: 1 1 750px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }
  .philosophy-content,
  .visit-content,
  .wholesale-content,
  .corporate-content,
  .bridal-content {
    flex: 1 1 300px;
  }
  .services-hero h1 {
    font-size: 2.2rem;
  }

  .services-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .workshop-options {
    flex-direction: column;
  }
}
.sec {
  padding-top: 150px;
}
