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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* ==========================================================================
 Header
 ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(249, 245, 243, 0.5); /* Cor inicial com transparência */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Altura fixa para o cabeçalho */
}

.logo img {
  height: 60px; /* Tamanho da logo */
  width: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem; /* Espaçamento entre os links */
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #9c5a41;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #9c5a41;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #9c5a41;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.cta-button {
  background: #9c5a41;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; /* Caso use <a> */
  white-space: nowrap; /* Evita que o texto quebre */
}

.cta-button:hover {
  background: #824931;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Estilos do Menu Mobile --- */
.mobile-menu-toggle {
  display: none; /* Escondido em desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* Garante que fique acima do menu */
}


.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Animação do ícone 'X' */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Garante que o vídeo não transborde */
  z-index: -2;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 1, 1, 0.5); /* Camada preta transparente de 50% */
  z-index: 1; /* Garante que fique acima do vídeo */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que o vídeo cubra toda a área */
  position: absolute;
  top: 0;
  left: 0;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  color: white;
}

.hero-subtitle {
  color: #dd9c81;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: #c1854a;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: #a9703f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dd9c81;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  40% {
      transform: translateX(-50%) translateY(-10px);
  }
  60% {
      transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: #9c5a41;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f9f5f3;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quote-block {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote-block::before {
  content: '\'';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #9c5a41;
  font-weight: 700;
}

.quote-block blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.quote-block cite {
  color: #9c5a41;
  font-weight: 600;
  font-style: normal;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 6rem 0;
  
}

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

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9c5a41, #c1854a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #bb6d36, #df7417);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Projects Section */
.projects {
  padding: 6rem 0;
  background: #f9f5f3;
}

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

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(156, 90, 65, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-btn {
  background: #c1854a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.project-btn:hover {
  background: #a9703f;
  transform: translateY(-2px);
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.project-info p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, #bb6d36, #df7417);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #bb6d36, #df7417);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  background: #f9f5f3;
  padding: 3rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9c5a41;
}

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


/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #c1854a;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c1854a;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #9c5a41;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* ==========================================================================
 Responsive Design
 ========================================================================== */
@media (max-width: 992px) {
  .nav-list {
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Menu mobile ativo */
  .mobile-menu-toggle {
      display: flex !important;
      margin-right: 0 !important;
      background: transparent !important;
  }
  
  .nav {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: rgba(249, 245, 243, 0.98);
      backdrop-filter: blur(20px);
      transition: left 0.3s ease;
      z-index: 999;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .nav.active {
      left: 0;
  }
  
  .nav-list {
      display: flex !important;
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      width: 100%;
      max-width: 400px;
      justify-content: center;
      align-items: center;
      list-style: none;
      margin: 0 auto;
  }
  
  .nav-list li {
      width: 100%;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .nav-link {
      font-size: 1.2rem;
      padding: 1rem 0;
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(156, 90, 65, 0.1);
      display: block;
  }
  
  .header-actions .cta-button {
      display: none;
  }
}

/* Services Page Styles */
.services-hero {
  padding: 8rem 0 4rem;
  background: #f9f5f3;
}

.services-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.services-subtitle {
  color: #9c5a41;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.1;
}

.services-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
}

/* Services Detailed Grid */
.services-detailed {
  padding: 6rem 0;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card-detailed {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #9c5a41;
  height: 100%; /* Ensure cards in carousel have equal height */
  display: flex;
  flex-direction: column;
}

.service-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
  font-size: 3rem;
  font-weight: 700;
  color: #9c5a41;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.service-card-detailed h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-card-detailed p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Allow paragraph to grow and push features down */
}

.service-features {
  background: #f9f5f3;
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: auto; /* Push features to the bottom */
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9c5a41;
  font-weight: 700;
}

/* Quality Materials Section */
.quality-materials {
  padding: 6rem 0;
  background: #f9f5f3;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-text {
  flex: 1;
}

.quality-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.specifications-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spec-item i {
  color: #9c5a41;
  font-size: 1.3rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.spec-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.spec-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.info-box {
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-included {
  background: #d4edda;
  border-left: 4px solid #28a745;
  color: #155724;
}

.info-included i {
  color: #28a745;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #856404;
}

.warning-box i {
  color: #ffc107;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.warning-box strong {
  color: #333;
}

.quality-image {
  position: relative;
}

.quality-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Available Sizes Section */
.available-sizes {
  padding: 6rem 0;
}

.sizes-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.sizes-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.sizes-table thead {
  background: linear-gradient(135deg, #9c5a41, #bf6412);
  color: white;
}

.sizes-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.sizes-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
}

.sizes-table tbody tr:last-child td {
  border-bottom: none;
}

.sizes-table tbody tr:hover {
  background: #f9f5f3;
}

.info-custom {
  background: #e7f3ff;
  border-left: 4px solid #2196F3;
  color: #0c5aa0;
}

.info-custom i {
  color: #2196F3;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-custom strong {
  color: #333;
}

/* Important Information Section */
.important-info {
  padding: 6rem 0;
  background: #f9f5f3;
}

.info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.info-item-large {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%; /* Ensure cards in carousel have equal height */
  display: flex;
  flex-direction: column;
}

.info-item-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-item-large h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-item-large i {
  color: #9c5a41;
  font-size: 1.5rem;
}

.info-item-large p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1; /* Allow paragraph to grow and push content down */
}

/* Swiper Carousel Styles */
.swiper {
  width: 100%;
  padding: 2rem 0;
  overflow: visible; /* Allow navigation buttons to be outside */
  position: relative;
}

.services-swiper,
.info-swiper {
  position: relative;
  padding: 2rem 0 3rem;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}

/* Custom Navigation Buttons - Clean Design */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  margin-top: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
  font-weight: 600;
  color: #d4a88f;
  transition: color 0.3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #9c5a41;
}

.swiper-button-prev:active::after,
.swiper-button-next:active::after {
  color: #824931;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

@media (min-width: 769px) {
  .swiper-button-prev {
    left: -30px;
  }
  
  .swiper-button-next {
    right: -30px;
  }
}

/* Disable default Swiper arrow styles */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.swiper-button-prev.swiper-button-disabled:hover,
.swiper-button-next.swiper-button-disabled:hover {
  transform: translateY(-50%) scale(1);
}

/* Custom Pagination */
.swiper-pagination {
  position: relative !important;
  margin-top: 2.5rem; /* More space below carousel */
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc; /* Lighter grey for inactive bullets */
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 25px; /* Wider active bullet */
  border-radius: 5px; /* Rounded rectangle for active */
  background: #9c5a41; /* Primary color for active bullet */
}

/* Responsive adjustments for carousels */
@media (min-width: 1201px) {
  .swiper-button-prev {
      left: -30px;
  }
  .swiper-button-next {
      right: -30px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .swiper-button-prev {
      left: -15px;
  }
  .swiper-button-next {
      right: -15px;
  }
}

@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
      width: 44px;
      height: 44px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
      font-size: 16px;
  }
  .swiper-button-prev {
      left: -10px;
  }
  .swiper-button-next {
      right: -10px;
  }
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
      display: flex !important; /* Show navigation buttons on mobile */
      width: 40px;
      height: 40px;
  }
  
  .swiper-button-prev {
      left: 5px;
  }
  
  .swiper-button-next {
      right: 5px;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
      font-size: 20px;
  }

  .swiper {
      padding: 1rem 0 3rem;
  }

  .swiper-pagination {
      margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
  }

  .swiper-pagination-bullet-active {
      width: 20px;
  }
  
  /* Quality Materials Section - Mobile Responsive */
  .quality-materials {
      padding: 4rem 0;
  }
  
  .quality-content {
      grid-template-columns: 1fr;
      gap: 2.5rem;
  }
  
  .quality-text {
      order: 1;
  }
  
  .quality-image {
      order: 2;
  }
  
  .quality-img {
      height: 300px;
  }
  
  .specifications-list {
      gap: 1.25rem;
  }
  
  .spec-item {
      flex-direction: row;
      gap: 0.75rem;
      padding: 1rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .spec-item i {
      font-size: 1.1rem;
      margin-top: 0;
  }
  
  .spec-item h4 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      line-height: 1.3;
  }
  
  .spec-item p {
      font-size: 0.9rem;
      line-height: 1.5;
  }
  
  .info-box,
  .warning-box {
      padding: 1.25rem;
      flex-direction: column;
      gap: 0.75rem;
      text-align: left;
  }
  
  .info-box i,
  .warning-box i {
      font-size: 1.1rem;
  }
  
  .info-box div,
  .warning-box div {
      font-size: 0.9rem;
      line-height: 1.6;
  }
  
  /* Section Header Mobile Adjustments */
  .quality-text .section-header {
      margin-bottom: 2rem;
      text-align: left;
  }
  
  .quality-text .section-title {
      font-size: 1.8rem;
      line-height: 1.2;
      text-align: left;
  }
  
  .quality-text .section-subtitle {
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-align: left;
  }
}

@media (max-width: 480px) {
  .swiper {
      padding: 0.5rem 0 2.5rem;
  }

  .swiper-pagination {
      gap: 0.3rem;
  }
  
  /* Quality Materials Section - Small Mobile */
  .quality-materials {
      padding: 3rem 0;
  }
  
  .quality-content {
      gap: 2rem;
  }
  
  .quality-text p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
  }
  
  .specifications-list {
      gap: 1rem;
  }
  
  .spec-item {
      padding: 0.875rem;
      gap: 0.5rem;
  }
  
  .spec-item i {
      font-size: 1rem;
  }
  
  .spec-item h4 {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
  }
  
  .spec-item p {
      font-size: 0.85rem;
  }
  
  .info-box,
  .warning-box {
      padding: 1rem;
      gap: 0.5rem;
  }
  
  .info-box div,
  .warning-box div {
      font-size: 0.85rem;
  }
  
  .quality-img {
      height: 250px;
  }
  
  /* Section Header Small Mobile */
  .quality-text .section-header {
      margin-bottom: 1.5rem;
      text-align: left;
  }
  
  .quality-text .section-title {
      font-size: 1.5rem;
      text-align: left;
  }
  
  .quality-text .section-subtitle {
      font-size: 0.75rem;
      text-align: left;
  }
}

