@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #4a6741; /* Verde oscuro */
  --color-secondary: #a3c1ad; /* Verde claro */
  --color-accent: #a3c1ad; /* Marrón suave */
  --color-text: #333333;
  --color-bg: #f9f7f4; /* Fondo beige claro */
}

body {
  font-family: 'Montserrat', sans-serif;
            color: var(--color-text);
            background-color: var(--color-bg);
            line-height: 1.6;
}
li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: white;
  }
  
  .flex {
    display: flex;
  }
  
  .flex1 {
    display: flex;
    justify-content: space-between;
  }

  .icon i {
    margin: 0 20px;
  }
  
  .container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /*----------head---------*/
  .head {
    background: #5d7a62;
    color: white;
    padding: 10px 0 10px 0;
  }
  
  .head h3 {
    font-size: 15px;
    font-weight: 500;
  }
  
  .head img {
    width: 30px;
  }
  
  select {
    background: none;
    color: white;
    border: none;
    outline: none;
  }

  .head_second {
    padding: 30px 0 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .head_second span {
    font-size: 40px;
    color: #5d7a62;
  }
  
  .head_second h3 {
    font-weight: 500;
    margin: 7px 0 0 10px;
  }
  
  .head_second p {
    background: #5d7a62;
    height: 40px;
    padding: 7px 20px;
    color: white;
    border-radius: 10px;
    margin-left: 10px;
    margin-top: 5px;
  }
  .head_second p a {
    color: white;
  }
  
  .head_second p label {
    margin-right: 10px;
  }
  
  .head_second i {
    font-size: 20px;
    margin: 15px;
  }

  header {
    height: 8vh;
    line-height: 8vh;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }
  
  .logo img {
    width: auto;
    height: auto;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
  }
  
  .hamburger {
    display: none;
    position: absolute;
    top: 8%;
    right: 8%;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #000;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-item {
    margin-left: 30px;
  }
  
  .nav-link {
    font-size: 16px;
    color: black;
  }
  
  @media only screen and (max-width: 991px) {
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 13%;
      flex-direction: column;
      background-color: #fff;
      width: 100%;
      border-radius: 10px;
      text-align: center;
      transition: 0.3s;
      z-index: 10;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-link {
      font-size: 20px;
      color: black;
    }
  
    .nav-item {
      margin: 5px 0;
    }
  
    .hamburger {
      display: block;
      cursor: pointer;
    }
  }
  
  @media only screen and (max-width: 511px) {
    .head {
      display: none;
    }
  
    .hamburger {
      top: 4%;
    }
  
    .nav-menu {
      top: 10%;
    }
  }



.split-section {
    padding: 60px 0;
  }
  

  .split-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
  }
  
  .text-content {
    flex: 1;
    padding-right: 40px;
  }

  .text-content p {
    margin-bottom: 30px;
  }
  
  .image-content {
    flex: 1;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    line-height: 1.2;
  }
  
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1em;
    line-height: 1.6;
    
  }

  .left, .right {
    width: 50%;
    padding: 20px;
  }
  
  .top {
    margin-top: 80px;
  }
  
  .mtop {
    margin-top: 40px;
  }
  

  .cta-button {
    display: flex;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 40px auto 20px;
    justify-content: center;
  }
  
  .cta-button:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .image-content {
   padding: 20px;
  }

  .image-content img {
    max-width: 500px;
    border-style: solid;
border-width: 5px 5px 5px 5px;
-moz-border-image: url() 6 5 4 8 repeat repeat;
-webkit-border-image: url() 6 5 4 8 repeat repeat;
-o-border-image: url() 6 5 4 8 repeat repeat;
border-image: url() 6 5 4 8 repeat repeat;
    border-image-slice:
13 13 13 13;
border-image-width:
13px 13px 13px 13px;
border-image-outset:
13px 13px 13px 13px;
border-image-repeat:
repeat repeat;
border-image-source:
url("../img/image.jpg");
border-style:
solid;
  }

  .leafy-decoration {
    position: absolute;
    opacity: 0.4;
    z-index: -1;
  }
  
  .leaf-top-right {
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
  }
  
  .leaf-bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(-135deg);
  }

  
  @media (max-width: 991px) {
    .split-section .container {
      flex-direction: column;
    }
    
    .text-content {
      padding-right: 0;
      margin-bottom: 40px;
    }
    
    .text-content, .image-content {
      flex: none;
      width: 100%;
    }
  }
  .categories {
    padding: 60px 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h2 {
    font-weight: 500;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
   
    transition: transform 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(73, 103, 65, 0.2);
  }

  .category-card a {
    color: #5d7a62;
   

  }
  
  .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
   /*  background: linear-gradient(to top, rgba(73,103,65,0.7), transparent); */
    box-shadow: 0 4px 8px rgba(73,103,65,0.2);
    color: #fff;
    padding: 20px;
  }
  
  .category-info h3 {
    margin: 0 0 10px;
    font-size: 2em;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    line-height: 1;

text-shadow: 2px 2px 0 #5d7a62, 2px -2px 0 #5d7a62, -2px 2px 0 #5d7a62, -2px -2px 0 #5d7a62, 2px 0px 0 #5d7a62, 0px 2px 0 #5d7a62, -2px 0px 0 #5d7a62, 0px -2px 0 #5d7a62;

  }
  
  .category-link {
    color: #4a6741;
    text-decoration: none;
    font-weight: bold;
  }
  /* Responsive styles */

  .Products {
    position: relative;
    margin-bottom: 70px;
  }
  
  .Products button  {
    border: 2px dashed #5d7a62;
    margin: 0;
    margin: 0 30px 0 0;
    background: none;
    color: #5d7a62 !important;
    max-height: 100px;
  }

  .Products button a {
    color: #5d7a62 !important;
  }
  
  /* .Products .button button:nth-child(2),
  .Products .button button:nth-child(3) {
    background: none;
    color: black;
  } */
  .Products button:hover,  .Products button:hover a {
    background: #5d7a62;
    color: white !important;
  }
  
  .Products .item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-style: solid;
border-width: 5px 5px 5px 5px;
-moz-border-image: url() 6 5 4 8 repeat repeat;
-webkit-border-image: url() 6 5 4 8 repeat repeat;
-o-border-image: url() 6 5 4 8 repeat repeat;
border-image: url() 6 5 4 8 repeat repeat;
    border-image-slice:
13 13 13 13;
border-image-width:
13px 13px 13px 13px;
border-image-outset:
13px 13px 13px 13px;
border-image-repeat:
repeat repeat;
border-image-source:
url("../img/image.jpg");
border-style: solid;
margin: 15px;
  }
  
  .Products .image {
    position: relative;
    max-width: 100%;
  }
  
  .Products img {
    width: 100%;
    height: 300px;
  }
  
  .Products .hover_image {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .Products .item:hover .hover_image {
    opacity: 1;
  }
  
  .Products .text {
    padding: 0 10px 0 10px;
    color: var(--color-primary);
  }
  
  .Products .image span {
    background: #a8d3ad;
    border: 1px solid #5d7a62;
    color: black;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 14px;

  }
  
  .Products .img-text span {
    position: absolute;
    top: 0;
    margin: 10px;
  }
  
  .Products .image .img-text span:nth-child(2) {
    right: 0;
    background: rgb(0, 255, 102);
    color: white;
  }
  
  .overlay {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    opacity: 0;
  }
  
  .overlay i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    background: white;
    color: #5d7a62;
    border-radius: 50%;
    transition: 0.5s;
  }
  
  .overlay i:hover {
    background: #5d7a62;
    color: white;
    cursor: pointer;
  }
  
  .Products .text i {
    font-size: 12px;
    color: #5d7a62;
    color: #ffd700;
    margin: 10px 2px 10px 0;
  }
  
  .Products h3 {
    font-weight: 500;
  }
  
  .Products h3 span {
    text-decoration: line-through;
    font-size: 14px;
    color: #939593;
    font-weight: 300;
  }
  
  .Products .item .image::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: 0.5s;
  }
  
  .Products .item:hover .overlay {
    opacity: 1;
    cursor: pointer;
    z-index: 5;
  }
  
  .Products .item:hover .image::after {
    opacity: 1;
  }

  .Products .heading {
    max-width: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: space-around;
  }
  
  .Products .button {
    text-align: right;
  }
  
  .Products p {
    margin-top: 5px;
  }
  
  .Products h2 {
    margin-bottom: 20px;
    font-size: 40px;
  }
  
  .Products .owl-carousel2 .owl-nav .owl-prev,
  .Products .owl-carousel2 .owl-nav .owl-next {
    top: -23%;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
  
  .collection img {
    width: 100%;
    border-radius: 10px;
  }
  

  .top {
    margin-top: 80px;
  }

  .wrapper {
    text-align: center;
    padding: 0px 30px;
  }
  
  .wrapper .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto 60px;
    align-content: center;
    justify-items: center;
  }
  
  .wrapper i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    font-size: 25px;
    background: #F5F5F5;
    color: #5d7a62;
    transition: 0.5s;
  }
  
  .wrapper i:hover {
    background: #5d7a62;
    color: white;
    cursor: pointer;
  }
  
  .wrapper h4 {
    font-weight: 500;
    margin: 10px 0 10px 0;
  }
  
  .wrapper p {
    font-size: 15px;
    color: #939593;
  }

  .Products2 .left {
    width: 30%;
  }
  
  .Products2 .right {
    width: 70%;
  }

  .box {
    max-width: 300px;
  }
  
  @media (max-width: 1024px) {
    .category-grid  {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 991px) {
    .category-grid, .wrapper .grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    h2 {
      font-size: 2em;
    }
  }

  .customer {
    background-image: url("../img/back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
    position: relative;
    text-align: center;
  }
  
  .customer .item {
    padding: 30px 80px;
  }
  
  .customer .img {
    width: 90px;
    height: 90px;
    margin: auto;
  }
  
  .customer img {
    border: 2px solid #5d7a62;
    border-radius: 50%;
  }
  
  .customer p {
    margin: 20px 0 20px 0;
  }
  
  .customer h3 {
    font-weight: 400;
    color: #5d7a62;
  }
  
  .customer h3 span {
    font-size: 14px;
    color: grey;
  }

  /*---------newsletter-----------*/
.newsletter {
    background: #5d7a62;
    color: white;
  }
  
  .newsletter h3 {
    font-weight: 400;
    margin-top: 25px;
  }
  
  .newsletter .input {
    background: white;
    width: 100%;
    padding: 0 5px 0 5px;
    border-radius: 10px;
  }
  
  input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    padding-left: 10px;
  }

  button {
    padding: 20px 20px;
    background: #5d7a62;
    border: none;
    outline: none;
    border-radius: 10px;
    color: white;
    margin: 10px;
}
.elegido {
  background: #5d7a62 !important;
  color: #fff !important;
}

.elegido a {
  color: #fff !important;
}

.elegido:hover {
  color: #5d7a62 !important;
  background: #fff !important;
  border: 2px dashed #5d7a62 !important;
}

  
  /*---------newsletter-----------*/
  /*---------footer-----------*/
  footer {
    background: #282828;
    color: white;
    padding: 50px 0 30px 0;
  }
  
  footer .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  footer h3 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  footer ul li {
    margin-bottom: 10px;
    opacity: 0.8;
    transition: 0.5s;
    font-size: 14px;
  }
  
  footer ul li:hover {
    color: #5d7a62;
    cursor: pointer;
  }
  
  footer li i {
    color: #8BA97B;
    margin-right: 15px;
  }
  
  footer .social i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: white;
    color: black;
    margin: 30px 20px 0 0;
    transition: 0.5s;
  }
  
  footer .social i:hover {
    color: #5d7a62;
    cursor: pointer;
  }
  
  .legal {
    padding: 20px 0 20px 0;
    background: #282828;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }


  
  @media only screen and (max-width: 991px) {

    /*---------head_second-----------*/
    .head_second p,
    .head_second .box:nth-child(3),
    .head_second .box:nth-child(1) {
      display: none;
    }
  
    .head_second img {
      margin-top: -20px;
    }
  
    /*---------head_second-----------*/
    /*---------header-----------*/
    header {
      height: 0;
    }
  
  
    /*---------home-----------*/
    /*---------categories-----------*/
    .owl-carousel2 .owl-nav .owl-prev {
      left: 75%;
    }
  
  
    .Products2 .content,
    .about .container {
      flex-direction: column;
    }
  
    /*---------about-----------*/
    /*---------product-----------*/
    .Products .button {
      flex-direction: column;
      gap: 10px;
    }

    .Products .img-text span {
      line-height: 1.3;
    }
  
    /*---------product-----------*/
    footer .grid,
    .wrapper .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    /*---------Products2-----------*/
    .Products2 .left {
      display: none;
    }
  
    .Products2 .right {
      width: 100%;
    }
  
    /*---------Products2-----------*/
    .Products4 .owl-carousel2 .owl-nav .owl-prev,
    .Products4 .owl-carousel2 .owl-nav .owl-next {
      top: -20% !important;
    }
  

  }
  
  @media only screen and (max-width: 511px) {
  

  
    /*---------home-----------*/
    .grid,
    .wrapper .grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    /*---------customer-----------*/
    .customer {
      height: 65vh;
    }
  
    .customer .item {
      padding: 10px;
    }
  
    /*---------customer-----------*/
    /*---------newsletter-----------*/
    .newsletter .flex1 {
      display: none;
    }
  
    /*---------newsletter-----------*/
    footer .grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .Products2 .left {
    width: 30%;
  }
  
  .Products2 .right {
    width: 70%;
  }
  
  /*---------Products2-----------*/
  /*---------content_hover-----------*/
  .content_hover .img {
    position: relative;
  }
  
  .content_hover .content img {
    width: 100%;
    height: 100%;
  }
  
  /*-----------  loader -----*/
  .loader {
    cursor: pointer;
    position: absolute;
    top: 35%;
    right: 22%;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 100%;
    background: #ED2939;
    z-index: 10;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  }
  
  .loader span {
    position: relative;
    color: white;
  }
  
  .loader::after {
    opacity: 0;
    position: absolute;
    top: -8px;
    left: -8px;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid #ED2939;
    border-radius: 100%;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
  }
  
  .loader::before {
    opacity: 0;
    position: absolute;
    top: -8px;
    left: -8px;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid #ED2939;
    border-radius: 100%;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
  }
  
  @-webkit-keyframes ripple {
    from {
      opacity: 1;
      transform: scale3d(0.75, 0.75, 1);
    }
  
    to {
      opacity: 0;
      transform: scale3d(1.5, 1.5, 1);
    }
  }
  
  @keyframes ripple {
    from {
      opacity: 1;
      transform: scale3d(0.75, 0.75, 1);
    }
  
    to {
      opacity: 0;
      transform: scale3d(1.5, 1.5, 1);
    }
  }
  
  /*----hover_text------*/
  .hover_text {
    position: absolute;
    top: 43%;
    right: 9%;
    background: white;
    width: 180px;
    height: 220px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 2px 3px 4px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 10;
  }
  
  .hover_text .hov_img {
    width: 100px;
    margin: auto;
  }
  
  .hover_text button {
    padding: 10px 20px;
  }
  
  .hover_text p {
    font-size: 14px;
    color: #939593;
  }
  
  .content_hover .img:hover .hover_text {
    opacity: 1;
  }
  
  .content_hover .img1 .loader {
    top: 47%;
    left: 40%;
  }
  
  .content_hover .img1 .hover_text {
    top: 55%;
    left: 27%;
  }
  .Products3 .content {
    flex-direction: row-reverse;
  }
  
  /*---------Products3-----------*/
  /*---------Products4-----------*/
  .Products4 {
    position: relative;
  }
  
  .Products4 .image,
  .Products4 .text {
    text-align: left;
    width: 50%;
    padding: 10px;
    overflow: hidden;
  }
  
  .Products4 .item {
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .Products4 .image {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .Products4 .image img {
    width: 100%;
    height: 100%;
  }
  
  .Products4 .item .image::after {
    display: none;
  }
  
  
  .category-page {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .category-image {
    width: 60%;
   
    border-style: solid;
border-width: 10px 10px 10px 10px;
-moz-border-image: url() 6 5 4 8 repeat repeat;
-webkit-border-image: url() 6 5 4 8 repeat repeat;
-o-border-image: url() 6 5 4 8 repeat repeat;
border-image: url() 6 5 4 8 repeat repeat;
    border-image-slice:
50 50 50 50;
border-image-width:
50px 50px 50px 50px;
border-image-outset:
50px 50px 50px 50px;
border-image-repeat:
repeat repeat;
border-image-source:
url("../img/image.jpg");
border-style:
solid;
    
   
  }
  
  .category-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    -webkit-box-shadow: 2px 3px 24px 0px rgba(87, 100, 83, 1);
  -moz-box-shadow: 2px 3px 24px 0px rgba(87, 100, 83, 1);
  box-shadow: 2px 3px 24px 0px rgba(87, 100, 83, 1);
  }
  
  .products-container {
    width: 100%;
  }
  
  h1 {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .item {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .image {
    position: relative;
    overflow: hidden;
  }
  
  .image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .hover_image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .image:hover .hover_image {
    opacity: 1;
  }
  
  .img-text {
    position: absolute;
    top: 10px;
    left: 10px;
    /* background-color: #ff6b6b; */
    color: white;
    padding: 5px 20px;
    border-radius: 3px;
    width: 180px;
    text-align: center;
  }
  
  .img-text span {
    line-height: 1.3;
  }
  
  .overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    display: flex;
    justify-content: space-around;
    transition: bottom 0.3s ease;
    gap: 10px;
  }
  
  .image:hover .overlay {
    bottom: 0;
  }
  
  .text {
    padding: 15px;
  }
  
  .rate {
    color: #ffd700;
    margin: 5px 0;
  }
  
  h3 {
    font-weight: bold;
  }
  
  h3 span {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-weight: normal;
  }
  
  /* Responsive styles */
  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) { 
    .Products .button {
        flex-direction: column;
        gap: 10px;
      }
  
    .category-page {
      flex-direction: column;
    }
  
    .category-image {
      width: 100%;
      padding-right: 0;
      margin-bottom: 20px;
    }
  
    .products-container {
      width: 100%;
    }
  
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  
    h1 {
      font-size: 1.5em;
    }
  
    .item {
      max-width: 300px;
      margin: 0 auto;
    }
  }

  .product-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .product-carousel {
    overflow: hidden;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
  }
  
  .product-item {
    text-align: center;
  }
  
  .product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-name {
    font-size: 1em;
    margin: 0;
    color: #4a6741;
  }
  
  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  @media (max-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  

  
  @media (max-width: 767px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
    
    .product-image {
      width: 150px;
      height: 150px;
    }
  }
  
  
.floating {
  animation-iteration-count: infinite;
  animation-duration: 1.3s;
  animation-name: floating-float, floating;
}
.wpbtn-pop {
  bottom: 30px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  right: 30px;
  z-index: 999999999;
}

.wpbtn-pop .wpbtn-icon:after, .wpbtn-pop .wpbtn-icon:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  width: 100%;
}
.wpbtn-pop .wpbtn-icon:before {
  background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+) 50% no-repeat;
  background-size: 30px auto;
  -webkit-background-size: 30px auto;
  -moz-background-size: 30px auto;
  z-index: 1;
}
.wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.wpbtn-pop {
  bottom: 30px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  right: 30px;
  z-index: 999999999;
}
.wpbtn-pop .wpbtn-icon {
  background: #2db742;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
  -webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
  -moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
  height: 56px;
  width: 56px;
}
.wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.wpbtn-pop .wpbtn-popup-txt {
  background-color: #f5f7f9;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #43474e;
  font-size: 12px;
  letter-spacing: -.03em;
  line-height: 1.5;
  margin-right: 7px;
  padding: 8px 12px;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  width: 156px;
}
.wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}