/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --first-color: #069C54;
  --first-color-alt: #048654;
  --title-color: #393939;
  --text-color: #707070;
  --text-color-light: #A6A6A6;
  --body-color: #FBFEFD;
  --container-color: #FFFFFF;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  --mb-7: 1rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,::before,::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme{
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #1D2521;
  --container-color: #27302C;
}

/*========== Button Dark/Light ==========*/
.change-theme{
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,h2,h3,p,ul{
  margin: 0;
}

ul{
  padding: 0;
  list-style: none;
}

a{
  text-decoration: none;
}

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

/*========== CLASS CSS ==========*/
.section{
  padding: 4rem 0 2rem;
}

.section-title{
  text-align: center;
}

.section-title{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
/*
.section-subtitle{
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}


/*========== LAYOUT ==========*/
.bd-container{
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid{
  display: grid;
  gap: 1.5rem;
}

.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*========== NAV ==========*/
.nav{
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px){
  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__item{
  margin-bottom: var(--mb-2);
}

.nav__link, .nav__toggle{
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.logo{
width: 55px;
margin-right: 10px;
}
.nav__logo{
  font-weight: var(--font-bold);
  color: var(--text-color);
  font-size:x-large;
}
.nav__logo:hover{
  color: var(--first-color);
}

.nav__link{
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__toggle{
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu{
  top: var(--header-height);
}

/* Active menu */
.active-link{
  color: var(--first-color);
}

/* Change background header */
.scroll-header{
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Scroll top */
.scrolltop{
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: rgba(6,156,84,.5);
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover{
  background-color: var(--first-color-alt);
}

.scrolltop__icon{
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrolltop */
.show-scroll{
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home__container{
  height: calc(100vh - var(--header-height));
  align-content: center;
}

.home__title{
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  line-height: 1;
}

.home__subtitle{
  font-size: var(--h1-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);

}

.home__img{
  width: 300px;
  justify-self: center;
}






.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 300px;
  margin: 0 70px;
}






/*========== BUTTONS ==========*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  box-shadow:  0 0 5px var(--first-color),  0 0 8px var(--first-color);
  line-height: 30px;
  padding: 0;
  border: none;
  z-index: 2;
  -webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
  padding: .75rem 1rem;
  border-radius: .7rem;
  color: #FFF;
  /*
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;  */
}

.button:hover{
  /*background-color: var(--first-color-alt); */

  background-color: transparent;
  color: var(--first-color);
  box-shadow: 0 5px 3px -3px var(--first-color), 0 -5px 3px -3px var(--first-color),
    0 5px 3px -3px var(--first-color), 0 -5px 3px -3px var(--first-color);
}


/*========== ABOUT ==========*/
.about__data{
  text-align: justify;
}

.about__description{
  margin-bottom: var(--mb-7);

}

.about__img{
  width: 300px;
  border-radius: .5rem;
  justify-self: left;
}

.client__container{
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
.client__content{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3,74,40,.15);
  padding: .75rem;
}
.client__img{
  width: 190px;
  align-self: center;
  align-items: center;
  margin-bottom: var(--mb-1);

}
.client__detail{
  font-size: var(--small-font-size);
  text-align: center;
  margin-bottom: var(--mb-1);

}

.sc__sub{
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-top: 0.5rem;
}

/*========== SERVICES ==========*/
.services__container{
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__content{
  text-align: center;
}
.cs__content{
  text-align: center;
}
.services__img{
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.products__title{
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.services__description{
  padding: 0 1.5rem;
  text-align:center;

}
.cs__description{
  padding: 0 1.5rem;
}
.cs__container{
  grid-template-columns: repeat(2, 2fr);
  justify-content: center;
}


/*========== PRODUCTS ==========*/
.products__container{
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.products__content{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3,74,40,.15);
  padding: 1.5rem;
}

.cs__content{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3,74,40,.15);
  padding: .75rem;
}

.products__img{
  width: 200px;
  align-self: center;
  margin-bottom: var(--mb-1);
}

.products__name{
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.products__name{
  font-size: var(--h3-font-size);
  text-align: center;
}

.products__detail, .products__preci{
  font-size: var(--small-font-size);
  text-align: center;
}

.products__detail{
  margin-bottom: var(--mb-1);

}

/*MEN'S PRODUCT*/
.men__initial{
  align-items: initial;
  position: initial;
}

#men-product {
  text-align: center;
}

.pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  
  

}

.pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7de;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  background:#d9d8d8;
  align-content: center;
}
.pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.7);
}

.pro img{
  width: 100%;
  border-radius: 20px;
}
.pro .des {
  text-align: start;
  
}


.pro .des h5 {
  padding-top: 1px;
  color: #1a1a1a;
  font-size: 5px;
  text-align: center;
}


/*WOMEN'S PRODUCT*/

#women-product {
  text-align: center;
}

#women-product .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  

}

#women-product .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7de;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  background:#d9d8d8;
}

#women-product .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.07);
}

#women-product .pro img{
  width: 100%;
  border-radius: 20px;
}
#women-product .pro .des {
  text-align: start;
}


#women-product .pro .des h5 {
  padding-top: 1px;
  color: #1a1a1a;
  font-size: 5px;
  text-align: center;
}

/*KID'S PRODUCT*/

#kids-product {
  text-align: center;
}

#kids-product .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  

}

#kids-product .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7de;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  background:#d9d8d8;
}

#kids-product .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.07);
}

#kids-product .pro img{
  width: 100%;
  border-radius: 20px;
}
#kids-product .pro .des {
  text-align: start;
}


#kids-product .pro .des h5 {
  padding-top: 1px;
  color: #1a1a1a;
  font-size: 5px;
  text-align: center;
}
.section-p1 {
  padding: 40px 80px;
}



/*========== media ==========*/

.media {
  margin-bottom: 40px;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.photo-grid img {
  width: calc(33.333% - 20px);
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.photo-grid img:hover {
  transform: scale(1.05);
}



/*========== CONTACT ==========*/
.contact__container{
  text-align: center;
}

.contact__description{
  margin-bottom: var(--mb-3);
}

/*========== FOOTER ==========*/
.footer__container{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo{
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description{
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social{
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title{
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link{
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover{
  color: var(--first-color);
}

.footer__copy{
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
}

/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px){
  .home__container,
  .pro-container,
  .mid-container,
  .about__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .about__data,
  .contact__container, .men__container, .contact__initial{
    text-align: initial,center ;
  }

  .about__img{
    width: 380px;
    order: -1;
  }

  .contact__container{
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
  .contact__button{
    justify-self: center;
  }
}

@media screen and (min-width: 768px){
  body{
    margin: 0;
  }

  .section{
    padding-top: 8rem;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list{
    display: flex;
  }
  .nav__item{
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }

  .change-theme{
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container{
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .cs__container,
  .client__container
  .products__container{
    margin-top: var(--mb-6);
  }

  .products__container,
  .client__container{
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }

  .cs__container{
    grid-template-columns: repeat(2, 210px);
    column-gap: 4rem;
  }
  .products__content{
    padding: 1.5rem;
  }
  .products__img{
    width: 160px;
  }

}

@media screen and (min-width: 960px){
  .bd-container{
    margin-left: auto;
    margin-right: auto;
  }

  .home__img{
    width: 500px;
  }

  .about__container{
    column-gap: 5rem;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
    .home__container {
        height: 640px;
    }
}


/*contact*/

.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: var(--first-color);
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
  padding: 2rem 0;
  border-top: 1px solid var(--first-color);
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    column-gap: 0.6rem;
}



.contact-form > div{
    margin: 0 auto;
    text-align: center;
}














@media screen and (min-width: 768px){
    
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px){
    
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}



/* =============================================
   FIXES & NEW SECTIONS — added update
   ============================================= */

/* Fix: missing @keyframes for logos slider */
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0; /* mobile: body already clears fixed header */
}
@media (min-width: 768px) {
  .hero-carousel {
    margin-top: calc(var(--header-height) + 1.5rem);
  }
}

/* Track — slides sit side by side horizontally */
.hero-carousel__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  /* Height is driven by the tallest slide content, not a fixed px */
  align-items: stretch;
}

/* Each slide stretches to fill the track height */
.hero-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  /* Minimum height so short content still looks like a banner */
  min-height: 260px;
}

/* Background image fills the slide, never overflows */
.hero-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay sits on top of the image, sizes to text content */
.hero-carousel__overlay {
  position: relative;           /* flows in document — sets slide height */
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 5rem 4rem 4rem;      /* top padding clears fixed header on mobile too */
  min-height: 260px;
}

.hero-carousel__content {
  color: #fff;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.hero-carousel__content h1 {
  font-size: clamp(1.2rem, 4vw, 2.4rem); /* scales with viewport */
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-carousel__content p {
  font-size: clamp(.8rem, 2vw, 1rem);
  margin-bottom: 1.2rem;
  opacity: 0.92;
  line-height: 1.6;
}

.hero-carousel__btn-group {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero-carousel__btn {
  padding: .55rem 1.2rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: clamp(.75rem, 2vw, .9rem);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.hero-carousel__btn--primary {
  background: var(--first-color);
  color: #fff;
  border: 2px solid var(--first-color);
}
.hero-carousel__btn--primary:hover {
  background: var(--first-color-alt);
  border-color: var(--first-color-alt);
}
.hero-carousel__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
}
.hero-carousel__btn--outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Arrows */
.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hero-carousel__arrow:hover { background: rgba(255,255,255,0.35); }
.hero-carousel__arrow--prev { left: .6rem; }
.hero-carousel__arrow--next { right: .6rem; }

/* Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 10;
}
.hero-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.hero-carousel__dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* === Responsive tweaks === */
@media (max-width: 480px) {
  .hero-carousel__overlay {
    padding: 4rem 1.2rem 3rem;
    /* On very small screens, center the text */
    justify-content: center;
    text-align: center;
  }
  .hero-carousel__btn-group {
    justify-content: center;
  }
  /* Hide the second button on tiny screens to save space */
  .hero-carousel__btn--outline {
    display: none;
  }
  .hero-carousel__arrow {
    width: 32px; height: 32px;
    font-size: 1.1rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-carousel__overlay {
    padding: 4.5rem 2rem 3rem;
  }
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--first-color);
  padding: 2.5rem 0;
}
.stats__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.stat__item {}
.stat__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  color: rgba(255,255,255,0.85);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat__icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: .3rem;
}
@media (max-width: 600px) {
  .stats__container { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CLIENT MARQUEE ===== */
.clients-marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.clients-marquee h2 {
  text-align: center;
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: 1.2rem;
}
.marquee-track-wrapper {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 100px;
}
.marquee-item img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter .3s;
}
.marquee-item:hover img { filter: grayscale(0%); }
.marquee-item span {
  font-size: .72rem;
  color: var(--text-color);
  text-align: center;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FEATURED PRODUCT CARDS ===== */
.featured-strip { padding: 3rem 0 2rem; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.featured-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.featured-card:hover img { transform: scale(1.06); }
.featured-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  padding: 1.2rem 1rem .7rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .featured-grid { grid-template-columns: 1fr; }
}
@media (min-width: 577px) and (max-width: 899px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 3.5rem 0; }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.why-card {
  text-align: center;
  padding: 1.8rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s, transform .3s;
  background: var(--container-color);
}
.why-card:hover {
  box-shadow: 0 6px 20px rgba(6,156,84,0.12);
  transform: translateY(-3px);
}
.why-card__icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: .8rem;
}
.why-card h3 {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}
.why-card p { font-size: var(--small-font-size); }
@media (max-width: 576px) {
  .why-us__grid { grid-template-columns: 1fr; }
}
@media (min-width: 577px) and (max-width: 899px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  padding: 3rem 1rem;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: var(--h1-font-size); margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }
.cta-band .button {
  background: #fff;
  color: var(--first-color);
  font-weight: 700;
  box-shadow: none;
}
.cta-band .button:hover {
  background: #e8f5ee;
  color: var(--first-color);
  box-shadow: none;
}

/* ===== MEDIA TABS (media.html) ===== */
.media-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.media-tab {
  padding: .45rem 1.2rem;
  border-radius: 2rem;
  border: 2px solid var(--first-color);
  background: transparent;
  color: var(--first-color);
  font-size: var(--small-font-size);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background .2s, color .2s;
}
.media-tab.active,
.media-tab:hover {
  background: var(--first-color);
  color: #fff;
}
.photo-gallery { display: none; }
.photo-gallery.active { display: block; }

/* Override original photo-grid for new grid layout */
.photo-gallery .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  justify-content: unset;
}
.photo-gallery .photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.photo-gallery .photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox__arrow--prev { left: 1rem; }
.lightbox__arrow--next { right: 1rem; }
.lightbox__caption { color: rgba(255,255,255,0.7); font-size: .85rem; margin-top: .8rem; }
.lightbox__counter { color: rgba(255,255,255,0.5); font-size: .75rem; margin-top: .3rem; }

/* ── Contact form accessibility labels ── */
.form__group { margin-bottom: 1rem; }
.form__label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .35rem; color: var(--first-color); }
