:root{
    --beige-color: #f9eee6;
    --text-color: #333;
    --font-family: "Poppins", sans-serif;
    --border-radius: 15px;
    --bg-gray:#F1F1F170;
    --green-two:#004763;
}
body{
   font-family: var(--font-family);
   font-weight: 400;
   font-style: normal;
}

h2{
    font-size: 32px;
    font-weight: 400;
}
p{
    font-size: 18px;
}

.bg-gray{
    background: var(--bg-gray);
}

.nav-link:focus, .nav-link:hover,.navbar-nav .nav-link.active{
    color: var(--green-two);
}

.hero-section {
    width: 100%;
    height: 640px;
    overflow: hidden;
    position: relative;
}

.overlay-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #ffffff, #ffffff38);
}
.bg-video{
    position: relative;
   width: 100%;
   top: 0;
}
.bg-video video{
    width: 100%;
    height: 620px;
    object-fit: cover;
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.header-main {
    position: absolute;
    margin-top: 3rem;
    width: 100%;
    z-index: 2;
}

.header-main nav{
    border-radius: 12px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 1px 10px 13px 0px rgba(0,0,0,0.26);
-webkit-box-shadow: 1px 10px 13px 0px rgba(0,0,0,0.26);
-moz-box-shadow: 1px 10px 13px 0px rgba(0,0,0,0.26);
}
.header-main .navbar-brand img{
    width: 200px;
}

.header-main nav .nav-link{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.header-main nav .nav-link.active{
    border-bottom: 1px solid var(--green-two);
}

.container.container-cs{
    max-width: 1300px;
}

.header-main .inp-search {
    max-width: 150px;
}

._cnt_search_main input{

}

._btn-sec {
    background-color: var(--green-two);
    border-color: var(--green-two);
    color: #fff;
    text-transform: uppercase;
    
}

.btn-sec-color {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    
}

.btn-primary-color {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-size: 25px;
    
}

.hero-section .cont-text-banner{
  position: relative;
  bottom: 25%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.hero-section .cont-text-banner h1 {
    font-size: 27px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
}

.btn-date-main{
        font-size: 12px;
    font-weight: 600;
}

section.block-1 {
margin-top: 90px;
}

section.block-2 {
     margin-top: 90px;
     padding-top: 100px;
     padding-bottom: 100px;
     background: linear-gradient(1deg, #ffffff, var(--beige-color));
}

.slider-container {
    position: relative;
    width: 500px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: grab;
    user-select: none;
}

        .slider-container:active {
            cursor: grabbing;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .before-image, .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .after-image {
            clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
            transition: clip-path 0.1s ease;
        }

        .slider-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background: white;
            transform: translateX(-50%);
            z-index: 10;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 11;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: grab;
            transition: transform 0.2s ease;
        }

        .slider-handle:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .slider-handle:active {
            cursor: grabbing;
        }

        .handle-arrows {
            display: flex;
            gap: 2px;
        }

        .arrow {
            width: 0;
            height: 0;
            border-style: solid;
        }

        .arrow-left {
            border-width: 6px 8px 6px 0;
            border-color: transparent #666 transparent transparent;
        }

        .arrow-right {
            border-width: 6px 0 6px 8px;
            border-color: transparent transparent transparent #666;
        }

        .labels {
            position: absolute;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 12;
        }

        .label {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .content {
            flex: 1;
            min-width: 300px;
        }

        .content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #333;
        }

        .content h2 span {
            color: #4a90e2;
            font-weight: bold;
        }

        .content p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }

        .features {
            list-style: none;
            margin-top: 20px;
        }

        .features li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 20px;
        }

        .features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4a90e2;
            font-weight: bold;
        }

        
.cont-text-block-2{
    text-align: right;
}

section.block-3{
    padding: 39px 29px;
    position: relative;
    border-radius: var(--border-radius);
}
section.block-3::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #ffffffd4;
    z-index: 2;
}
section.block-3 p{
    max-width: 75%;
}
section.block-3 .text-block-3{
    position: relative;
    z-index: 3;
}

.block-featured{
    margin-top: 150px;
}

.block-featured .cont-card-featured{
   padding-right: 35px;
}

.block-featured .cont-card-featured .card-featured{
   background: var(--beige-color);
   border-radius: var(--border-radius);
   max-width: 80%;
}

.block-team{
    position: relative;
    margin-top: 85px;
}



.slider-navigation {
  display: flex;
  gap: 15px;
  margin-top: 40px; 
  position: absolute;
  bottom: 40px; 
  right: 40px; 
  z-index: 3;
}

.arrow-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 0;
  height: 0;
  border-style: solid;
  transition: border-color 0.3s ease;
}

.prev-arrow {
  border-width: 20px 25px 20px 0;
  border-color: transparent #f0d9d6 transparent transparent; /* Flecha izquierda */
}

.next-arrow {
  border-width: 20px 0 20px 25px;
  border-color: transparent transparent transparent #e0b0ac; /* Flecha derecha */
}

.prev-arrow:hover {
  border-color: transparent #e0b0ac transparent transparent;
}

.next-arrow:hover {
  border-color: transparent transparent transparent #f0d9d6;
}



.team-section {
padding: 60px 0;
text-align: center;
margin-top: 85px;
}
        
        .team-section p.lead {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }
        .team-member-card {
            padding: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden; /* To contain the image and its gradient */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end; /* Push content to bottom */
            min-height: 450px; /* Adjust as needed to fit image and text */
        }
        .team-member-card img {
            width: 100%;
            max-width: 250px; /* Adjust based on image size in original */
            height: auto;
            border-radius: 50%; /* If circular, but image shows a fade, so maybe not */
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            object-fit: cover;
            object-position: top;
            /* The original image has a fade effect at the bottom.
               This is a simple way to simulate it with a gradient overlay. */
            mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        }
        .team-member-info {
            position: relative;
            z-index: 2;
            background-color: #fff; /* Ensure info block is opaque */
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for the info box */
            width: calc(100% - 40px); /* Adjust width to match image */
            max-width: 280px; /* Max width for the info box */
            margin-top: auto; /* Push to bottom */
        }
        .team-member-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #343a40;
            margin-bottom: 5px;
        }
        .team-member-info p {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 0;
        }
        .btn-custom {
            background-color: #212529; /* Dark background for the button */
            color: #fff;
            border-radius: 8px;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #343a40;
            color: #fff;
        }

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .team-section h2 {
                font-size: 2rem;
            }
            .team-section p.lead {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            .team-member-card {
                min-height: 400px;
            }
            .team-member-card img {
                max-width: 200px;
            }
        }


        .testimonial-section {
          width: 100%;
          text-align: center;
          padding: 20px;
          
      }

      .testimonial-section h2 {
          font-weight: 700;
      }

      .testimonial-section .text-header {
          font-size: 1.1em;
          color: #666;
          max-width: 800px;
          margin: 0 auto 40px auto;
          line-height: 1.6;
      }

    

      .testimonial-cards-container {
          display: flex;
          flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
          justify-content: center;
          gap: 30px; /* Space between cards */
          width: 100%;
      }

      .testimonial-card {
          background-color: white;
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          padding: 30px;
          width: calc(33.333% - 20px); /* Approx 1/3 width minus gap */
          min-width: 280px; /* Minimum width for cards */
          max-width: 380px; /* Max width to prevent cards from getting too wide */
          display: flex;
          flex-direction: column;
          align-items: flex-start; /* Align content to the left */
          text-align: left;
          box-sizing: border-box;
      }

      .testimonial-header {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
      }

      .testimonial-avatar {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          object-fit: cover;
          margin-right: 15px;
          border: 2px solid #eee; /* Subtle border for avatar */
      }

      .testimonial-name {
          font-weight: bold;
          font-size: 1.1em;
          color: var(--secondary-color); /* A blue similar to the example */
      }

      .testimonial-stars {
          color: gold; /* Yellow color for stars */
          font-size: 1.4em;
          margin-bottom: 15px;
          letter-spacing: 2px; /* Space between stars */
      }

      .testimonial-text {
          font-size: 14px;
          color: #555;
          line-height: 1.5;
      }

      /* Responsive adjustments */
      @media (max-width: 1024px) {
          .testimonial-card {
              width: calc(50% - 20px); /* Two cards per row on medium screens */
          }
      }


      .swiper-button-next, .swiper-button-prev{
        color: var(--beige-color);
      }
      .swiper-button-prev{
        left: 0;
      }
      .swiper-button-next{
        right: 0;
      }

    
.our-location{
    position: relative;
    min-height: 590px;
    margin-top: 100px;
}
.our-location .cont-image-1{
    position: relative;
    min-height: 430px;
    width: 58%;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    overflow: hidden;
}

.our-location .cont-image-2{
    position: absolute;
    max-width: 520px;
    min-height: 350px;
    top: 7%;
    right: 8%;
    width: 38%;
    border-radius: var(--border-radius);
    z-index: 3;
    overflow: hidden;
}

.our-location .text-location{
    position: absolute;
    bottom: 39%;
    left: 15%;
}

.our-location .text-location h3{
    color: #fff;
    font-size: 40px;
}

.our-location .text-location p{
    color: #fff;
}

.overlay{
    position: absolute;
    background: #9b7b326b;
    width: 100%;
    height: 100%;
    inset: 0;
}

.overlay-sec{
    position: absolute;
    background: #00101987;
    width: 100%;
    height: 100%;
    inset: 0;
    
}

footer{
    background: var(--primary-color);
    padding-top: 75px;
}

footer .links-footer a{
    color: #fff;
    text-decoration: none;
}

footer p{
    color: #fff;
}

footer hr{
    border: 2px solid #fff;
    max-width: 80%;
    color: #fff;
    opacity: 1;
    text-align: center;
    margin: 0 auto;
}

.hero-banner{
    position: relative;
    min-height: 700px;
}

.hero-banner::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #ffffff99;
}

.content-banner{
    position: relative;
    padding-top: 250px;
}

.content-banner .card-banner{
    
}

.content-banner .card-banner img{
    border-radius: var(--border-radius);
    box-shadow: -1px 5px 20px 0px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: -1px 5px 20px 0px rgba(0, 0, 0, 0.4);
-moz-box-shadow: -1px 5px 20px 0px rgba(0, 0, 0, 0.4);
}

.hero-banner h1{
    font-size: 62px;
    font-weight: 400;
    text-align: right;
}
.hero-banner h1 span{
    font-size: 80px;
    font-weight: 700;
}

.icon-about {
    max-width: 100px;
    margin-bottom: 25px;
    
}

.hero-section .cont-text-treatments{
    position: absolute;
    max-width: 40%;
    bottom: 25%;
    left: 5%;
}

.hero-section .cont-text-treatments h1{
    color: #fff;
    font-size: 48px;
}

.hero-section .cont-text-treatments p{
    color: #fff;
}


.tm-team-section {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 80px 0;
  }

  .tm-card-container {
    position: relative;
    text-align: center;
  }

  .tm-card-container img {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .tm-gradient-fade {
    position: absolute;
    bottom: 28%;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 1) 100%);
  }

 

  .tm-info-box {
    width: 280px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    margin: 0 auto;
  }

  .tm-info-box h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }

  .tm-info-box p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #777;
  }

  .tm-btn-more {
            background: #000;
            color: white;
            border: none;
            padding: 18px 60px;
            font-size: 18px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        .tm-btn-more:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .tm-btn-more:active {
            transform: translateY(0);
        }

@media (max-width: 768px) {
    
    .tm-team-section {
        display: block;
        gap: 30px;
    }

    .tm-team-card {
        width: 100%;
        max-width: 380px;
    }

    .tm-image-container {
        height: 380px;
    }
    .tm-card-container img{
        width: 70%;
    }
}

.overlay-h.overlay-medium{
    background: #00000045;
}

.ft-prods h2{
    text-align: center;
    margin-bottom: 50px;
}

.cont-list-treatments{
    position: relative;
    padding-top: 120px;
    background: linear-gradient(1deg, #fff, var(--beige-color));
}

.cont-list-treatments .card-treatment{
    position: relative;
    overflow: hidden;
    
}


.cont-list-treatments .card-treatment .img-treatment{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cont-list-treatments .card-treatment:hover .img-treatment{
    transform: scale(1.28);
    cursor: pointer;
}



.cont-list-treatments .card-treatment img{
    border-radius: var(--border-radius);
}

.cont-list-treatments .text-card-treatment{
    position: absolute;
    padding: 14px;
    width: 100%;
    bottom: 0;
    min-height: 160px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cont-list-treatments .text-card-treatment h3{
    color: #fff;
    font-size: 15px;
    position: relative;
}
.cont-list-treatments .text-card-treatment p{
    color: #fff;
    position: relative;
    font-size: 15px;
    font-weight: 300;
}



.cont-list-treatments .text-card-treatment .blur-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    background: #00000070;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btn.btn-treat{
    color: #fff;
    background: #001019;
    position: relative;
    z-index: 2;
}

.hero-main{
    position: relative;
    min-height: 560px;
}

.hero-main .overlay-banner{
    position: absolute;
    background: #00000066;
    width: 100%;
    height: 100%;
    inset: 0;
}

.hero-main .cont-text-hero{
    position: absolute;
    max-width: 75%;
    left: 6%;
    bottom: 28%;
}

.hero-main .cont-text-hero h1{
    font-size: 48px;
    color: #fff;
}
.hero-main .cont-text-hero p{
    color: #fff;
}

.cont-treatment{
    background: linear-gradient(1deg, #fff, var(--beige-color));
    padding-top: 140px;
    padding-bottom: 85px;
}

.cont-treatment h2{
    font-size: 60px;
    margin-bottom: 50px;
}

.cont-treatment h3{
    font-size: 25px;
    font-weight: 800;
}
.cont-treatment p , .cont-treatment ul li{
    font-size: 19px;
    color: #58595B;
    font-weight: 400;
    
}

.cont-treatment p{
    margin-bottom: 30px;
}

img.img-b-radius{
   border-radius: var(--border-radius);
}

.cont-gall-blog img{
    border-radius: 12px;
}

.art-card-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .art-service-card {
            width: 100%;
            max-width: 520px;
            position: relative;
            padding-top: 200px;
        }

        .art-card-image-wrapper {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 230px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .art-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .art-card-content {
            background: white;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 60px 40px 40px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 2;
        }

        

        .art-card-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .art-card-text {
            font-size: 15px;
            line-height: 1.7;
            color: #6c757d;
            margin-bottom: 30px;
        }

        .art-btn-custom {
            background-color: #3d3d3d;
            color: white;
            padding: 12px 40px;
            border-radius: 25px;
            border: none;
            font-size: 15px;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .art-btn-custom:hover {
            background-color: #2c2c2c;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .art-card-container {
                gap: 20px;
            }

            .art-service-card {
                max-width: 100%;
            }

            .art-card-content {
                padding: 25px 30px 30px;
            }
        }

.video-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .custom-controls {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--beige-color);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}

.time-display {
    color: white;
    font-size: 0.9rem;
    min-width: 100px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.fullscreen-btn {
    font-size: 18px;
}

    
@media (max-width: 768px) {
    .video-section {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .custom-controls {
        padding: 15px;
        gap: 10px;
    }

    .time-display {
        font-size: 0.8rem;
        min-width: 80px;
    }

    .volume-slider {
        width: 60px;
    }
}

.banner-treatment{
    position: relative;
    min-height: 300px;
    margin-top: 120px;
    margin-bottom: 32px;
    border-radius: var(--border-radius);
}

.banner-treatment .cont-tr-banner{
    position: absolute;
    left: 7%;
    bottom: 25%;
}

.btn-ws{
    background: #25D366;
    color: #fff;
    font-size: 19px;
}

.cont-products{
    position: relative;
    padding-top: 12rem;
}

.card-title{
    color: var(--primary-color);
}

.product-section{
    position: relative;
    padding-top: 15rem;
}

.cont_bag_cart {
    position: relative;
}

.cont_bag_cart .bag_cart{
    position: relative;
    bottom: 7px;
}

.cont_bag_cart .bag_cart ._icon_bag{
 position: absolute;
  background: url('../img/cart_bag.png');
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
}

.cont_bag_cart .bag_cart ._count_cart{
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    width: 19px;
    height: 19px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    top: 3px;
    left: 24px;
}

.hero-banner.banner-testimonials .container{
    position: relative;
    z-index: 1;
}

.hero-banner.banner-testimonials .container{
    padding-top: 198px;
}

.hero-banner.banner-testimonials .container h1{
     font-size: 62px;
    font-weight: 400;
    text-align: left;
}

.hero-banner.banner-blog{
    padding-top: 198px;
}

.hero-banner.banner-blog .container h1{
     font-size: 36px;
    font-weight: 400;
    text-align: center;
}

.hero-banner.banner-blog-int .container{
    position: relative;
    z-index: 1;
}
.hero-banner.banner-blog-int .container h1{
     font-size: 36px;
    font-weight: 400;
    text-align: left;
}

.hero-banner.banner-blog-int .container{
    padding-top: 198px;
}
.hero-banner.banner-blog-int .img-article{
    margin-top: 40px;
}

.hero-banner.banner-blog-int .img-article img{
    border-radius: var(--border-radius);
}

.text-article{
    margin-top: 80px;
}

.hero-banner.banner-team{
    padding-top: 198px;
}

.hero-banner.banner-team .container h1{
     font-size: 36px;
    font-weight: 400;
    text-align: center;
}
.hero-banner.banner-team .container{
    position: relative;
    z-index: 1;
}

.page-section{
    position: relative;
    padding-top: 198px;
    min-height: 740px;
}

.accordion-button:not(.collapsed){
  background-color: var(--primary-color);
  box-shadow: none;
  color:#fff;
}












     

        .input-container-ns {
            position: relative;
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .input-container-ns:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .input-container-ns:focus-within {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .email-input-ns {
            flex: 1;
            border: none;
            outline: none;
            padding: 14px 20px;
            font-size: 1rem;
            background: transparent;
            color: #333;
        }

        .email-input-ns::placeholder {
            color: #999;
            font-size: 0.95rem;
        }

        .submit-button-ns {
            background-color: #6b7280;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: absolute;
            overflow: hidden;
            right: 2px;
        }

        .submit-button-ns:hover {
            background-color: #4b5563;
            transform: scale(1.05);
        }

        .submit-button-ns:active {
            transform: scale(0.95);
        }

        .submit-button-ns::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .submit-button-ns:active::before {
            width: 100px;
            height: 100px;
        }

        .arrow-icon {
            width: 16px;
            height: 16px;
            fill: white;
            transition: transform 0.3s ease;
            z-index: 1;
            position: relative;
        }

     .widget-social a{
        margin-right: 8px;
     }  

  .widget-social a img{
    width: 38px;
    
  }  
  
  .single-footer-widget .logo_footer{
    margin-bottom: 25px;
  }

  .category-list li a{
    color: var(--primary-color);
  }

  .sidebar {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.product-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #fffaf7; /* Light orange tint */
    overflow: hidden;
    position: relative;
}
.product-card .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px; /* Padding around the image */
    background-color: #fffaf7; /* Match card background */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px; /* Fixed height for image container */
}
.product-card .card-img-top img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-card .card-body {
    padding: 1.5rem;
    text-align: center;
}
.product-card .card-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.product-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}
.product-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 1.5rem;
}
.btn-dark-custom {
    background-color: #212529;
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-dark-custom:hover {
    background-color: #343a40;
    color: #fff;
}
.btn-green-custom {
    background-color: #28a745; /* Bootstrap success green */
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}
.btn-green-custom:hover {
    background-color: #218838;
    color: #fff;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366; /* WhatsApp green */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.whatsapp-float img {
    width: 30px;
    height: 30px;
}
.pagination .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
    color: #fff;
}
.pagination .page-link {
    color: #212529;
    border-radius: 8px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
}
.pagination .page-link:hover {
    color: #212529;
    background-color: #e9ecef;
}
.category-list .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #eee;
    color: #343a40;
    font-size: 0.95rem;
}
.category-list .list-group-item:last-child {
    border-bottom: none;
}
.category-list .list-group-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}
.category-list .list-group-item .arrow {
    color: #6c757d;
    font-weight: bold;
}
.promo-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
}
.promo-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}
.promo-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #343a40;
}
.promo-card p strong {
    color: #0d0e0d; /* Green for emphasis */
}
.product-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #343a40;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.product-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.product-section {
          border-radius: 1rem;
          max-width: 1200px;
          width: 100%;
      }
.product-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #212529; /* Dark text */
}
.product-description h5 {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #212529;
}
.product-description p {
    line-height: 1.6;
}
.product-price {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #212529;
}
.btn-buy {
    background-color: #1a1a1a; /* Dark button */
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}
.btn-buy:hover {
    background-color: #333;
    color: #fff;
}
.image-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fefbf8; /* Light orange/pink background for main image */
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-card img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem; /* Slightly smaller border-radius for the image itself */
}
.thumbnail-container {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}
.thumbnail-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 0.75rem;
    width: 120px; /* Fixed width for thumbnails */
    height: 120px; /* Fixed height for thumbnails */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thumbnail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.thumbnail-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.product-gallery {
    width: 100%;
    margin: 0 auto;
}

.slider-product {
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
}

.slider-product .swiper-slide {
    position: relative;
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-product .product-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.slider-product .swiper-slide:hover .product-image {
    transform: scale(1.05);
}

.thumbnails-slider {
    margin-top: 20px;
}

.thumbnails-slider .swiper-slide {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.thumbnails-slider .swiper-slide-thumb-active {
    border-color: var(--primary-color)4;
    opacity: 1;
    
    
}

.thumbnails-slider .thumbnail-image {
    width: 70%;
    height: 70%;
    object-fit: contain;
    
}

.thumbnails-slider .swiper-slide:hover {
    opacity: 1;
}

.thumbnails-slider .swiper-slide:hover .thumbnail-image {
    transform: scale(1.1);
}


.swiper-button-next.sw-next-prod,
.swiper-button-prev.sw-prev-prod {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next.sw-next-prod:hover,
.swiper-button-prev.sw-prev-prod:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.swiper-button-next.sw-next-prod::after,
.swiper-button-prev.sw-prev-prod::after {
    font-size: 20px;
    font-weight: bold;
}

/* Paginación */
.swiper-pagination-bullet.sw-pag-prod {
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.cart-controls-prod {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.quantity-control-prod {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quantity-control-prod:focus-within {
    border-color: #343a40;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.1);
}

.quantity-btn-prod {
    background: #f8f9fa;
    border: none;
    color: #6c757d;
    width: 45px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.quantity-btn-prod:hover {
    background: #e9ecef;
    color: #495057;
}

.quantity-btn-prod:active {
    transform: scale(0.95);
}

.quantity-btn-prod:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quantity-input-prod {
    border: none;
    outline: none;
    text-align: center;
    width: 60px;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    background: transparent;
}

.quantity-input-prod:focus {
    outline: none;
}

/* Remover spinners del input number */
.quantity-input-prod::-webkit-outer-spin-button,
.quantity-input-prod::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input-prod[type=number] {
    -moz-appearance: textfield;
}

.cart-container {
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    padding-top: 13rem;
}

.cart-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}



.cart-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.product-image-cart {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.product-name-cart {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-description-cart {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quantity-control-cart {
    display: flex;
    align-items: center;
    background: var(--background-light);
    border-radius: 8px;
    padding: 0.25rem;
}

.quantity-btn-cart {
    background: white;
    border: 1px solid var(--border-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.quantity-btn-cart:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity-input-cart {
    border: none;
    background: transparent;
    text-align: center;
    width: 50px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-cart {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.remove-btn-cart {
    color: #e53e3e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn-cart:hover {
    color: #c53030;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 2rem;
}

.summary-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cont-form-contact{
        position: relative;
       padding-top: 158px;
    }
.form-container {

            padding: 40px;
            margin: 50px auto;
            max-width: 960px;
        }
        
        .form-title {
            color: #000;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .form-description {
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
            text-align: justify;
        }
        
        .form-label {
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .form-control.inp-ct {
            border: none;
            border-bottom: 2px solid #ddd;
            border-radius: 0;
            padding: 8px 0;
            background: transparent;
            transition: border-color 0.3s ease;
        }
        
        .form-control.inp-ct:focus {
            border-bottom-color: #007bff;
            box-shadow: none;
            background: transparent;
        }
        
        .service-description {
            border: 2px solid #ddd;
            border-radius: 4px;
            min-height: 120px;
            resize: vertical;
        }
        
        .service-description:focus {
            border-color: #007bff;
        }
        
        .file-input-container {
            position: relative;
            margin: 20px 0;
        }
        
        .file-input {
            opacity: 0;
            position: absolute;
            z-index: -1;
        }
        
        .file-input-label {
            display: inline-block;
            padding: 8px 20px;
            background-color: #343a40;
            color: white;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        
        .file-input-label:hover {
            background-color: #23272b;
        }
        
        .file-note {
            color: #666;
            font-size: 0.85rem;
            margin-top: 8px;
            text-align: center;
        }
        
        .privacy-section {
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 6px;
        }
        
        .privacy-text {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .privacy-link {
            color: #007bff;
            text-decoration: underline;
        }
        
        .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .form-check-input {
            margin-top: 4px;
        }
        
        .submit-btn {
            background-color: #343a40;
            border: none;
            padding: 12px 30px;
            color: white;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }
        
        .submit-btn:hover {
            background-color: #23272b;
        }
        
        


        .file-input-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .file-input-wrapper input[type="file"] {
            display: none;
        }

        .file-input-label {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            color: #999;
            transition: background-color 0.2s;
        }

        .file-input-label:hover {
            background-color: #f0f0f0;
        }

        .btn-examine {
            padding: 10px 24px;
            background-color: #222;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-examine:hover {
            background-color: #000;
        }

        .help-text {
            font-size: 13px;
            color: #666;
            margin-top: 8px;
            margin-bottom: 8px;
        }

        .optional-text {
            font-size: 12px;
            color: #999;
            margin-top: 6px;
            font-style: italic;
        }

        .file-name {
            font-size: 13px;
            color: #333;
            margin-top: 6px;
            padding: 8px;
            background-color: #e8f4f8;
            border-radius: 4px;
            display: none;
        }

        .file-name.active {
            display: block;
        }
#frmContact label.error,#frmRegister label.error{
    color: red;
}

.cnt-login{
    padding-top: 170px;
    margin-bottom: 53px;
  }
    .login-card {
      max-width: 420px;
      width: 100%;
      border-radius: 16px;
      border: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      background: #ffffff;
      margin:0 auto;
    }

    .cnt-login .login-card h3 {
      font-weight: 600;
      font-size: 29px
    }

    .link-lg {
      color: #0f6b6d;
      text-decoration: none;
      font-size: 14px;
    }

    .link-lg:hover {
      text-decoration: underline;
    }

    .divider {
      height: 1px;
      background: #e5e7eb;
      margin: 24px 0;
    }

    .cont-msg{
     text-align: center;
     padding: 2px 15px;
     color: #fff;
    }
    .cont-msg.error{
      background: #ff5447;
    }

  /**Responsive**/

  @media (max-width: 768px) {
    h2 {
     font-size: 24px;
     font-weight: 400;
    }
    p {
     font-size: 16px;
    }
    .header-main{
        margin-top: 1.2rem;
    }
    .bg-video video{
        height: 400px;
    }
    .hero-section{
        height: 400px;
    }
    .hero-section .cont-text-banner{
        bottom: 50%;
    }
    .header-main .navbar-brand img{
        width: 194px;
    }
    .cont-text-block-2{
        padding-top: 24px;
        text-align:center;
    }
    .sm_txt_center{
        text-align: center;
    }
    section.block-3{
        border-radius: initial;
    }
    .container {
        flex-direction: column;
        gap: 30px;
    }

    .slider-container {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .btn-primary-color{
        font-size: 20px;
    }

    .team-section{
        margin-top: 30px;
    }

    .block-featured  h2{
       text-align: center;
       margin-top: 25px;
    }

    .block-featured{
        margin-top: 48px;
    }

    .content h2 {
        font-size: 2em;
        text-align: center;
    }

    .content p {
        text-align: center;
    }

    .testimonial-card {
        width: 90%; 
        max-width: 400px;
    }

    .our-location{
        min-height: 420px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .our-location .cont-image-1{
        width: 100%;
    }

    .our-location .text-location{
        left: 7%;
        bottom: initial;
        top: 6%;
    }
    .our-location .cont-image-2{
        min-height: 278px;
        top: 30%;
        right: 8%;
        width: 71%;
    }

    .hero-banner.banner-team{
        height: auto;
        min-height: auto;
        margin-bottom: 25px;
    }
    .hero-section.sec-dor{
      height: auto;
      padding: 20px 0;
    }

    .form-container {
                margin: 20px;
                padding: 25px;
    }

    footer{
        padding-top: 32px;
    }
    .logo_footer{
        display: flex;
    }
    .logo_footer img{
        max-width: 60%;
        margin: 0 auto;
    }
    .content-banner{
        padding-top: 160px;
    }
    .hero-banner h1{
        font-size: 42px;
        text-align: center;
    }
    .hero-banner h1 span{
        font-size: 48px;
    }
    .hero-section .cont-text-treatments{
        max-width: 82%;
        bottom: 0;
    }
    .hero-section .cont-text-treatments h1{
        font-size: 30px;
    }
    .cont-list-treatments{
        padding-top: 50px;
    }
    .hero-main{
        min-height: 350px;
    }
    .hero-main .cont-text-hero h1{
        font-size: 32px;
    }
    .cont-treatment{
        padding-top: 50px;
    }
    .cont-treatment h2{
        font-size: 40px;
    }
    .promo-card{
        display: none;
    }
    .product-title {
        font-size: 2rem;
    }
    .product-price {
        font-size: 2rem;
    }
    .product-section {
        position: relative;
        padding-top: 9rem;
    }
    .thumbnail-container {
        gap: 0.75rem;
    }
    .thumbnail-card {
        width: 80px;
        height: 80px;
    }
    .swiper-button-next.sw-next-prod,
    .swiper-button-next.sw-prev-prod {
        display: none;
    }
     .cart-controls-prod {
       flex-direction: column;
    }

    .quantity-control-prod {
        align-self: center;
        width: fit-content;
    }
    .cart-item {
        padding: 1rem;
    }
    
    .product-image-cart {
        width: 80px;
        height: 80px;
    }
    
    .cart-summary {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

       

       

        

        