/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*:root {
  --primary-color: #2d5016;
  --secondary-color: #6b8e23;
  --accent-color: #8fbc8f;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --background-light: #f8fdf8;
  --white: #ffffff;
  --gold: #daa520;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}*/


:root {
  --primary-color: #181818;          /* Main Black */
  --secondary-color: #C29F42;        /* Premium Gold */
  
  --accent-color: #1B5E20;           /* Green accent - use only in small elements */
  --accent-light: #A5D6A7;           /* Minimal soft green tint */

  --text-dark: #181818;              /* Primary black text */
  --text-light: #555555;             /* Soft grey for paragraphs */

  --background-light: #FFFFFF;        /* Clean white */
  --background-section: #F8F8F5;      /* Soft off-white for sections */
  --white: #FFFFFF;

  --gold: #C29F42;                   /* Main gold color */

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.18);

  --border-radius: 12px;
  --transition: all 0.3s ease;
}



body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  /*color: var(--primary-color);*/
  border: 2px solid #fff;
  /*border: 2px solid var(--primary-color);*/
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-card .btn-secondary {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 75px;
  width: auto;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 0;
  background: linear-gradient(135deg, var(--background-light), var(--white));
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  animation: slideInRight 1s ease-out;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
/*  box-shadow: var(--shadow);*/
}

/* Features Section */
.features {
  padding: 0px 40px 50px;
  background: var(--white);
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Product Showcase */
.product-showcase {
  padding: 80px 0;
  background: var(--background-light);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.showcase-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-light);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.testimonials-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
  font-weight: bold;
}

.testimonial-card {
  position: relative;
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--primary-color);
  display: block;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}


/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Styles */
.about-hero {
  padding: 170px 0 80px !important;
  background: linear-gradient(135deg, var(--background-light), var(--white));
  text-align: center;
}

.about-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
/*  box-shadow: var(--shadow);*/
}

.mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.mv-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mv-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.mv-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}


.process-section {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hair-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
  }

  .benefit-item {
    flex: 1 1 18%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .benefit-item:hover {
    transform: translateY(-5px);
  }

  .benefit-icon {
    font-size: 36px;
    color: #c29f42;
    margin-bottom: 15px;
  }

  .benefit-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .benefit-desc {
    font-size: 14px;
    color: #666;
  }
  
  /*Start Responsive Query*/
  

  @media (max-width: 768px) {
    .benefit-item {
      flex: 1 1 45%;
    }
  }

  @media (max-width: 480px) {
    .benefit-item {
      flex: 1 1 100%;
    }
  }
  
    @media (max-width: 600px) {
        
    h1.hero-title {
    margin-top: 50px;
    }
    
    img.hero-img {
    margin-top: -100px;
    }
    
    section.features {
    margin-top: -120px;
    }
    
    .about-hero {
    padding: 170px 0 0px !important;
    }
    .about-text h2{
       text-align: center;
    }
    
    .about-content {
    padding: 0px 0;
    }
    
   section.products-hero {
    padding: 170px 0 0px;
   }

  section.product-variants {
    padding: 20px 0;
   }
   
   section.contact-hero {
    padding: 170px 0 0px !important;
   }
   
   section.contact-methods {
    padding: 0px 0;
   }
  }
  
   @media (max-width: 375px) {
        
}

/*  @media (max-width: 414px) {*/
   
/*   h1.hero-title {*/
/*    margin-top: 50px;*/
/*   }*/

/*}*/
 
 /*End Responsive Query*/

.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.team-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
  line-height: 1.6;
}

.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.value-item .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.value-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Products Page Styles */
.products-hero {
  padding: 170px 0 80px;
  background: linear-gradient(135deg, var(--background-light), var(--white));
  text-align: center;
}

.products-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-variants {
  padding: 80px 0;
}

.variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.05);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--background-light);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-price {
  margin-bottom: 2rem;
}

.price-label {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.product-details {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.details-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.ingredients-section,
.benefits-section {
  margin-bottom: 3rem;
}

.ingredients-section h3,
.benefits-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.ingredients-list {
  list-style: none;
  padding: 0;
}

.ingredients-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #555;
  line-height: 1.6;
}

.ingredients-list li strong {
  color: var(--secondary-color);
}

.ingredients-list li:last-child {
  border-bottom: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefit-item {
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.details-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.usage-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.usage-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.usage-step {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.usage-step h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.usage-step p {
  color: #666;
  line-height: 1.5;
}

.usage-tips {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  text-align: left;
}

.usage-tips h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.usage-tips ul {
  list-style: none;
  padding: 0;
}

.usage-tips li {
  padding: 0.6rem 0;
  position: relative;
  padding-left: 2rem;
  color: #555;
}

.usage-tips li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}


.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--background-light);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: #666;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* turns + into × */
}


/* Contact Page Styles */
.contact-card.primary p {
    color: white;
}

.contact-hero {
  padding: 170px 0 80px !important;
  background: linear-gradient(135deg, var(--background-light), var(--white));
  text-align: center;
}

.contact-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-methods {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-card.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.contact-card.primary h3,
.contact-card.primary .contact-info {
  color: var(--white);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.quick-order {
  padding: 80px 0;
  background: var(--background-light);
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.order-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.order-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.05);
}

.order-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.order-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 1.5rem 0;
}

.social-section {
  padding: 80px 0;
}

.social-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
  border: 1px solid;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon {
  font-size: 1.5rem;
}

.contact-faq {
  padding: 80px 0;
  background: var(--background-light);
}

.business-hours {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hours-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.hours-info,
.response-time {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-info:hover,
.response-time:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.hours-info h3,
.response-time h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.hours-list {
  margin-bottom: 2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: #444;
}

.time {
  color: var(--secondary-color);
  font-weight: bold;
}

.hours-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  line-height: 1.5;
}

.response-time ul {
  list-style: none;
  padding: 0;
}

.response-time li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #555;
}

.response-time li:last-child {
  border-bottom: none;
}


/* Legal Pages Styles */
.legal-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-light), var(--white));
  text-align: center;
}

.legal-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-content {
  padding: 80px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  color: var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content,
  .about-grid,
  .showcase-content,
  .details-content,
  .hours-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .variants-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card.featured {
    transform: none;
  }
  
  .features-grid,
  .testimonials-grid,
  .mv-grid,
  .process-grid,
  .team-values,
  .faq-grid,
  .contact-grid,
  .order-options {
    grid-template-columns: 1fr;
  }
  
  .usage-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .nav-container {
    padding: 1rem 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .usage-steps {
    grid-template-columns: 1fr;
  }
  
  .hours-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
