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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(169,152,134);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height : 80px;
    position: fixed;  
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;

}

body {
    padding-top: 80px;
}

@media (max-width: 768px) {

  body {
      padding-top: 120px;
  }
}

.background-img .shop-now {
  position: absolute;
  left: 18%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 0.9rem 1.6rem;
  font-size: 2.05rem;
  border-radius: 8px;
  background: rgb(169,152,135);
  color: black;
  border: 2px ;
  text-decoration: solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgb(169,152,135);
}


.background-img .shop-now:hover {
  background: rgb(169,152,135);
  transform: translate(-50%, -50%) scale(1.03);
}


@media (max-width: 520px) {
  .background-img .shop-now {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }
}
.nav-links {
    list-style: none;
    display: flex;
    margin-right: 19px;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: bold;
    font-style: italic;
}

.nav-links a:hover {
    color: #26d97d;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
    }
    
    .nav-links li {
        margin-left: 0;
        margin-right: 1rem;
    }
}
.background-img {
    background-image: url("../images/front.png"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    opacity: 0.8; 
    min-height: 200px;
    position: relative;
}


.slider {
  width: 100%;
  height: 350px;
  overflow: hidden;    
  border-radius: 14px;
  background: #f0f5ee;
  position: relative;
}

.slide-track {
  display: flex;
  width: 500%;    
  animation: slideOneByOne 12s infinite;
  will-change: transform;
}

.slide {
  width: 20%;      
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  border-radius: 10px;
  display: block;
}

@keyframes slideOneByOne {
  0%   { transform: translateX(0%); }
  16%  { transform: translateX(0%); }

  20%  { transform: translateX(-20%); }
  36%  { transform: translateX(-20%); }

  40%  { transform: translateX(-40%); }
  56%  { transform: translateX(-40%); }

  60%  { transform: translateX(-60%); }
  76%  { transform: translateX(-60%); }

  80%  { transform: translateX(-80%); }
  100% { transform: translateX(-80%); }
}

@media (max-width: 880px) {
  .slider { max-height: 360px; height: 40vh; }
  .slide img { object-fit: contain; }
}

@media (max-width: 520px) {
  .slider { max-height: 220px; height: 35vh; }
  .slide img { object-fit: contain; }
}



.about-section {
  padding: 50px 20px;
  background: #f6fff2;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #e9f8ec;
  color: #2a6f3a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
}

.about-title {
  margin-top: 10px;
  font-size: 28px;
  color: #0b2a16;
}

.about-text {
  margin: 10px 0 20px 0;
  color: #5f6f63;
  line-height: 1.6;
}
.mission-box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mission-icon {
  width: 45px;
  height: 45px;
  background: #2a6f3a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  border-radius: 10px;
}

.mission-title {
  margin: 0;
  font-size: 18px;
  color: #0b2a16;
}

.mission-text {
  margin-top: 4px;
  color: #5f6f63;
  line-height: 1.5;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  padding: 16px;
  border-radius: 12px;
  background: #fbfff9;
  border: 1px solid #d7ead8;
  text-align: center;
}

.value-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
  color: #0b2a16;
}

.value-card p {
  margin: 0;
  color: #5f6f63;
  font-size: 14px;
}

@media (max-width: 880px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 22px;
  }
}
.site-footer{
    padding:48px 20px 24px;
    font-family: Inter, Arial, sans-serif;
    color:#333;
  }

  .footer-top{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr 160px 160px 260px;
    gap:28px;
    align-items:start;
    padding-bottom:28px;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }

  .footer-col{min-width:0}

  .footer-brand .footer-logo{
    width:160px;
    display:block;
    margin-bottom:14px;
    object-fit:contain;
  }

  .brand-desc{
    color:#6b6b6b;
    line-height:1.6;
    margin-bottom:18px;
    max-width:360px;
  }

.location-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  width: fit-content;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-family: Inter, sans-serif;
}

.location-box h3 {
  margin-bottom: 10px;
  color: #333;
}

.location-box p {
  margin: 6px 0;
  color: #666;
  line-height: 1.5;
}

  .socials{
    display:flex;
    gap:12px;
    margin-top:6px;
  }

  .social img{
    width:36px;
    height:36px;
    border-radius:50%;
    display:block;
    object-fit:cover;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
  }

  .footer-links h4{
    margin:0 0 12px;
    font-size:18px;
    color:#111;
  }

  .footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
    color:#6b6b6b;
  }

  .footer-links li{
    margin:8px 0;
  }

  .footer-links a{
    color:#6b6b6b;
    font-size:14px;
  }

  .footer-location h4{
    margin-bottom:12px;
  }

  .map-wrap{
    background:#fff;
    width:100%;
    max-width:260px;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(16,24,40,0.06);
  }

  .map-wrap img{
    display:block;
    width:100%;
    height:140px;
    object-fit:cover;
  }

  .footer-bottom{
    max-width:1200px;
    margin:18px auto 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:18px 0;
  }

  .footer-bottom .copyright{
    color:#6b6b6b;
    font-size:14px;
  }

  .footer-bottom .copyright .dev{
    color:#2f7a4a;
    text-decoration:none;
    font-weight:600;
  }

  .payment-icons img{
    height:28px;
    margin-left:12px;
    opacity:0.95;
    vertical-align:middle;
  }

  .policy-row{
    max-width:1200px;
    margin:10px auto 0;
    text-align:center;
    color:#6b6b6b;
    font-size:14px;
    padding-top:8px;
  }

  .policy-row a{
    color:#6b6b6b;
    text-decoration:none;
    margin:0 6px;
  }

  @media (max-width:1000px){
    .footer-top{
      grid-template-columns: 1fr 140px 140px 200px;
      gap:20px;
    }
    .map-wrap img{
      height:120px;
    }
  }

  @media (max-width:760px){
    .footer-top{
      grid-template-columns:1fr;
      gap:20px;
      padding-bottom:20px;
    }

    .footer-bottom{
      flex-direction:column;
      align-items:flex-start;
      gap:10px;
    }

    .payment-icons{
      order:2;
      width:100%;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .policy-row{
      font-size:13px;
    }
  }
