:root {
  --bg-color: #f8f7f4;
  --text-color: #2e2b28;
  --accent-color: #c8a97e;
  --secondary-bg: #e3dfd9;
  --border-color: #d6d2cb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: var(--transition);
}

.logo img {
  height: 60px;

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: var(--secondary-bg);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.logo {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: bold;
  color: var(--accent-color);
  z-index: 101;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: 0.5rem;
  display: block;
}

nav a:hover {
  color: var(--accent-color);
}

.hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--secondary-bg);
  max-width: 1200px;
  margin: 1rem auto;
  border-radius: 8px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: 1.5rem;
}

.slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-width: 0;
}

.slider img {
  width: 100%;
  height: clamp(200px, 40vw, 400px);
  object-fit: cover;
  display: none;
  transition: opacity 0.5s;
}

.slider img.active {
  display: block;
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--bg-color);
  padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.btn:hover {
  background: #2e2b28;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

section {
  padding: clamp(1.5rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  text-align: center;
}

#about .stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stats > div {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.step {
  background: var(--secondary-bg);
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step img {
  width: 100%;
  height: clamp(150px, 30vw, 180px);
  object-fit: cover;
  margin: 1rem 0;
  border-radius: 12px;
}

.step h3 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #666;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.product {
  background: var(--secondary-bg);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product img {
  width: 100%;
  height: clamp(150px, 30vw, 180px);
  object-fit: cover;
  margin: 1rem 0;
  border-radius: 12px;
}

.product h3 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin: 0.5rem 0;
}

.testimonial-slider {
  overflow: hidden;
  padding: 2rem 0;
  width: 100%;
  position: relative;
  margin: 2rem 0;
}

.testimonial-track {
  display: flex;
  animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-item {
  background: var(--secondary-bg);
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: 0 15px;
  box-shadow: var(--shadow-md);
  width: clamp(220px, 40vw, 280px);
  flex-shrink: 0;
  text-align: center;
}

.testimonial-item img {
  width: 280px;
  height: 180px;
  border-radius: 5%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.stars {
  color: var(--accent-color);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  margin: 0.5rem 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-280px * 15)); }
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  height: 100%;
  position: absolute;
  width: clamp(50px, 10vw, 150px);
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonial-slider::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: var(--secondary-bg);
  position: relative;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  text-align: left;
}

.modal-body p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.close {
  font-size: clamp(1.5rem, 4vw, 2rem);
  cursor: pointer;
  line-height: 1;
  color: var(--text-color);
  transition: var(--transition);
}

.close:hover {
  color: var(--accent-color);
}

#modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

input, textarea {
  padding: clamp(0.625rem, 1.5vw, 0.75rem);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-box {
  max-width: 400px;
  width: 100%;
  background: var(--secondary-bg);
  border-radius: 16px;
  color: var(--text-color);
  box-shadow: var(--shadow-md);
  margin: 2rem auto;
}

.form {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.title {
  font-weight: bold;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  text-align: center;
}

.subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #666;
  text-align: center;
}

.form-container {
  border-radius: 8px;
  margin: 1rem 0;
}

.input {
  background: var(--border-color);
  border: 0;
  outline: 0;
  height: 40px;
  width: 100%;
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  padding: 8px 15px;
  margin: 5px 0;
  border-radius: 4px;
}

.form-section {
  padding: 1rem;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  background-color: var(--border-color);
  text-align: center;
  border-radius: 0 0 16px 16px;
}

.form button {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: 0;
  border-radius: 24px;
  padding: clamp(0.625rem, 1.5vw, 0.75rem) 1rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form button:hover {
  background-color: #2e2b28;
  color: var(--bg-color);
  transform: translateY(-2px);
}

.payment, .shipping {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem) 1rem;
}

.payment-methods, .shipping-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.payment-methods .card, .shipping-partners .card {
  background: var(--secondary-bg);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.payment-methods .card:hover, .shipping-partners .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.payment-methods img, .shipping-partners img {
  width: clamp(150px, 30vw, 250px);
  height: clamp(80px, 20vw, 140px);
  border-radius: 8px;
  object-fit: contain;
}

.container {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem);
  background: var(--bg-color);
}

.container h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.container h1::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: var(--accent-color);
  margin: 10px auto 0;
}

.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  height: clamp(300px, 50vw, 450px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--secondary-bg);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem) 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.footer-nav {
  display: contents;
}

.footer-column h4 {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.social-links a {
  color: var(--text-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: var(--transition);
}
  
.social-links a:hover {
  transform: translateY(-3px);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--secondary-bg);
    flex-direction: column;
    gap: 0;
    padding: 5rem 0 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  nav ul.active {
    right: 0;
  }
  
  nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  nav a {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  nav a:hover {
    background: var(--bg-color);
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    backdrop-filter: blur(3px);
  }
  
  .menu-overlay.active {
    display: block;
  }
  
  .hero {
    flex-direction: column;
  }
  
  .footer-container {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-methods, .shipping-partners {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  section {
    padding: 1rem;
  }
  
  .testimonial-item {
    width: 90vw;
    margin: 0 5px;
  }
  
  .modal-content {
    margin: 0;
    max-height: 95vh;
  }
  
  .modal-header, .modal-body {
    padding: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero, section, .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media print {
  header, footer, .btn, .modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}