@font-face {
  font-family: "Carl Jhon";
  src: url("fonts/Carl\ John.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Sweet\ Hipster.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins light";
  src: url("fonts/Poppins-Light.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

body {
  overflow-x: hidden !important;
}

:root {
  --pink: #bd1a76;
  --cyan: #08b8bf;
  --dark-blue: #0498e3;
  --orange: #ff914d;
  --light-green: #7ed957;
  --yellow: #f8d33c;
  --light-purple: #8e77b8;
  --light-orange: #ffbd59;
  --light-pink: #d48de9;
  --light-pink2: #8e77b8;
  --dark-purple: #bd1a76;
  --green: #46c655;
  --gray: #f4f4f4;
  --red: #ff0000;
  --facebook: #1877f2;
  --white: #fff;
  --light-facebook: #90caf9;
  --light-cyan: #80deea;
}

.color-white {
  color: var(--white);
}

.color-pink {
  color: var(--pink);
}

.color-cyan {
  color: var(--cyan);
}

.color-dark-blue {
  color: var(--dark-blue);
}

.color-orange {
  color: var(--orange);
}

.color-light-green {
  color: var(--light-green);
}

.color-yellow {
  color: var(--yellow);
}

.color-light-purple {
  color: var(--light-purple);
}

.color-light-orange {
  color: var(--light-orange);
}

.color-light-pink {
  color: var(--light-pink);
}

.row-reverse {
  flex-direction: row-reverse;
}

.box-shadow-header {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.banner-container {
  position: relative;
  text-align: center;
  color: white;
  font-family: "Poppins light";
  z-index: 0;
}

.banner-container img {
  height: calc(100%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 450px;
}

.banner-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 7px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner-container h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2rem;
  width: 80%;
}

.header {
  width: 100%;
  padding: 10px;
}

.header-nav {
  width: 100%;
  height: auto;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  background-color: transparent;
  z-index: 1;
  flex-direction: row-reverse;
  gap: 15px;
}

.menu-links {
  display: flex;
  gap: 10px;
  font-family: "Poppins light";
  flex-wrap: wrap;
}

.menu-links a {
  color: var(--dark-blue);
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-align: center;
}

.menu-links a:hover {
  background: var(--dark-blue);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-blue);
  transition: 0.3s;
}

.header h1 {
  bottom: 100px;
  font-family: "Poppins light";
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.header .socials-header {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.header .socials-header div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.social-facebook {
  background: var(--facebook);
}

.social-tiktok {
  background: #ff0050;
}

.social-youtube {
  background: red;
}

.social-whatsapp {
  background: #128c7e;
}

.social-email {
  background: var(--cyan);
}

.social-insta {
  background: #833ab4;
}

.section-descr {
  text-align: center;
  margin: 0 auto;
}

.section-ayuda {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.section-ayuda-desc {
  width: 500px;
  font-family: "Poppins light";
}

.btn-donar {
  padding: 20px;
  color: #fff;
  font-family: "Poppins";
  cursor: pointer;
  background: var(--cyan);
  border-radius: 10px;
  transition: 0.3s ease background;
}

.btn-donar:hover {
  background: var(--light-green);
}

.section-fundacion {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.section {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow-x: hidden;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-fundacion img {
  max-width: 300px;
  max-height: 300px;
  border-radius: 30px;
}

.section-fundacion .section-title {
  font-family: "Poppins light";
  font-size: 30px;
}

.section-title-carousel {
  text-align: center;
  font-family: "Poppins light";
  font-size: 40px;
  margin-bottom: 20px;
}

.section-fundacion div:nth-child(1) {
  display: flex;
}

.section-fundacion div:nth-child(2) {
  width: 500px;
}

.section-fundacion .section-desc {
  font-family: "Poppins light";
  text-align: justify;
}

.title-section {
  text-align: center;
  font-size: 40px;
  font-family: "Poppins light";
  margin-bottom: 20px;
}

.section-descr {
  font-family: "Poppins light";
  text-align: justify;
  width: 90%;
  margin-bottom: 20px;
}

.title-constructor {
  margin-bottom: 30px;
}

.section-constructor {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.section-constructor-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-constructor-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-around;
}

.section-constructor-item {
  width: 300px;
  background: var(--dark-purple);
  position: relative;
  border-radius: 10px;
}

.circle-constructor {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--light-pink2);
  top: -10px;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Poppins light";
  font-size: 48px;
  color: #fff;
}

.desc-constructor {
  margin-left: 49px;
  margin-top: 10px;
  font-family: "Poppins light";
  color: #fff;
  padding: 10px;
}

.footer {
  background: var(--dark-blue);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 20px;
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer .footer-item i {
  color: #fff;
  font-size: 20px;
}

.footer .footer-item .footer-item-info {
  color: #000;
}

.footer-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Poppins light";
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-item-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.desc-footer {
  font-size: 20px;
  font-family: "Poppins light";
  color: #fff;
}

.number-w:hover {
  color: var(--green);
}

.email-h:hover {
  color: var(--cyan);
}

.insta-h:hover {
  color: var(--pink);
}

.house-h:hover {
  color: var(--light-purple);
}

.phone-h:hover {
  color: var(--yellow);
}

.youtube-h:hover {
  color: var(--red);
}

.tiktok-h:hover {
  color: #ee1d52;
}

.facebook-h:hover {
  color: var(--facebook);
}

.light-font {
  font-family: "Poppins light";
  margin-bottom: 10px;
  text-align: justify;
}

.bold-font {
  font-family: "Poppins";
}

.margin-bottom {
  margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

.blue-bg {
  width: 80px;
  height: 83%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 140px;
  border-bottom-left-radius: 140px;
  background: var(--dark-blue);
}

.blue-bg-2 {
  width: 80px;
  height: 83%;
  position: absolute;
  left: 0;
  top: 106px;
  border-bottom-right-radius: 140px;
  border-top-right-radius: 140px;
  background: var(--cyan);
}

.blue-bg-3 {
  width: 80px;
  height: 83%;
  position: absolute;
  right: 0;
  top: 70px;
  border-top-left-radius: 140px;
  border-bottom-left-radius: 140px;
  background: var(--light-pink2);
}

.pink-circle-bg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  right: -150px;
  top: 0;
  background: var(--pink);
}

.pink-circle-bg-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  left: -143px;
  top: 32px;
  background: var(--pink);
}

.pink-circle-bg-3 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  right: -143px;
  top: 0px;
  background: var(--pink);
}

.butterfly-1 {
  position: absolute;
  left: 100px;
  top: -12px;
  z-index: -1;
}

.butterfly-2 {
  position: absolute;
  left: 150px;
  top: 64px;
  z-index: -1;
}

.butterfly-3 {
  position: absolute;
  left: 35px;
  top: 64px;
  z-index: -1;
}

.carousel {
  min-width: 100%;
  max-width: 700px;
  overflow: hidden;
  z-index: 100;
  bottom: 64px;
}

.title-carousel {
  position: absolute;
  font-family: "Poppins";
  font-size: 50px;
}

.carousel-container {
  display: flex;
  flex-wrap: nowrap;
}

.carousel-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
}

.carousel-item > .testiminio {
  background: var(--cyan);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  gap: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.carousel-item > .testiminio div p {
  color: #fff;
}

.carousel-item > .testiminio .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.carousel-item > .testiminio .avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.carousel-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-item img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  background: var(--dark-blue);
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.indicators {
  text-align: center;
  margin-top: 10px;
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: lightgray;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background-color: gray;
}

.list-patters {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 10px;
  justify-content: center;
}

.list-patters img {
  width: 250px;
  height: 200px;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 500px;
  height: 300px;
  background-color: black;
  margin-bottom: 20px;
}

canvas {
  width: 500px;
  height: 300px;
  background-color: black;
}

.controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  align-items: center;
}

.controls button,
.controls input[type="range"] {
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.controls button {
  font-size: 20px;
}

.progress {
  width: 100%;
  margin: 0 10px;
}

.volume-container {
  display: flex;
  align-items: center;
}

.volume-container input[type="range"] {
  width: 100px;
}

.thumbnail-play-icon {
  position: absolute;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  top: 0;
}

.thumbnail-play-icon .thumbnail-image {
  width: 500px;
  height: 256px;
  display: block;
  object-fit: cover;
}

.thumbnail-play-icon i {
  position: absolute;
  font-size: 48px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.thumbnail-play-icon:hover i {
  opacity: 1;
}

.container-accordion {
  padding: 50px;
}

.accordion {
  background-color: var(--cyan);
  color: #fff;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
  font-family: "Poppins light";
}

.title-accordion {
  font-size: 20px;
}

.accordion .icon {
  margin-left: 10px;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#list-persons {
  list-style-type: none;
  padding: 20px 70px 0px 70px
}

ul li {
  font-size: 20px;
  font-family: "Poppins light";
  margin-bottom: 10px;
}

.floating-btn-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.floating-btn-donation {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 110px;
  right: 40px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.floating-btn-cart {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 180px;
  right: 40px;
  background: var(--facebook);
  color: white;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.floating-btn-payment {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 250px;
  right: 40px;
  background: var(--cyan);
  color: white;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.floating-btn-whatsapp:hover {
  background: var(--light-green);
}

.floating-btn-donation:hover {
  background: var(--light-purple);
}

.floating-btn-cart:hover {
  background: var(--light-facebook);
}

.floating-btn-payment:hover {
  background: var(--light-cyan);
}

.floating-btn-container {
  position: fixed;
  width: 200px;
  height: 60px;
  bottom: 40px; 
  right: 110px;
  z-index: 1000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 0 10px;
  transition: opacity 0.3s;
  opacity: 0.5;
  font-family: "Poppins";
}

/* Individual Colors */
.floating-btn-container.whatsapp {
  background: var(--green);
  bottom: 40px;
}

.floating-btn-container.donation {
  background: var(--pink);
  bottom: 110px;
}

.floating-btn-container.cart {
  background: var(--facebook);
  bottom: 180px;
}

.floating-btn-container.payment {
  background: var(--cyan);
  bottom: 250px;
}

.floating-btn-whatsapp:hover + .floating-btn-container,
.floating-btn-donation:hover + .floating-btn-container,
.floating-btn-cart:hover + .floating-btn-container,
.floating-btn-payment:hover + .floating-btn-container {
  opacity: 1;
}

.floating-btn i {
  font-size: 24px;
  line-height: 60px;
}

.donation-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-donate-payment {
  padding: 20px;
  background: var(--cyan);
  font-family: "Poppins";
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.btn-donate-payment:hover {
  background: var(--light-green);
}

.donation-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 100%;
}

.donation-container img {
  max-width: 169px;
  height: 143px;
  margin-bottom: 10px;
}

.donation-container p {
  margin: 0;
  font-family: "Poppins";
  font-size: 20px;
}

.voluntary-container {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.nit-donation {
  text-align: center;
  font-family: "Poppins";
  font-size: 25px;
  margin-top: 15px;
  text-transform: uppercase;
}

.nequi-daviplata {
  display: flex;
  gap: 10px;
  flex-direction: row !important;
}

.cifras-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.cifra-item {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cifra-item-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-orange);
  color: #fff;
  font-size: 25px;
}

.cifra-desc {
  font-family: "Poppins light";
  font-size: 22px;
  text-align: center;
}

.cifra-number {
  font-family: "Poppins light";
  font-size: 48px;
  font-weight: bold;
}

.item-pattern {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 10px;
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 750px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shopping-cart {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-blue);
  color: #fff;
  cursor: pointer;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Cart Items Section */
#cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin: 20px 0;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

/* Buy Button */
.btn-buy {
  background: #28a745;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.btn-buy:hover {
  background: var(--facebook);
}

.product-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.search-container input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
  color: #333;
}

.search-container input:focus {
  border-color: var(--dark-blue);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #888;
  transition: color 0.3s ease;
}

.search-container input:focus + .search-icon {
  color: #007bff;
}

/* Content Container */
.content-container {
  display: flex;
  gap: 20px;
  padding: 15px;
}

.filter-container {
  width: 20%;
  max-height: 300px;
  padding: 20px;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.categories label {
  display: flex;
  font-family: "Poppins light";
  margin-bottom: 10px;
  cursor: pointer;
}

.product-description {
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.products-container {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Default: Mobile (1 product per row) */
.product {
  position: relative;
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  overflow: hidden;
  font-family: "Poppins";
}

.events-container {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.product-event {
  position: relative;
  width: 400px;
  margin: 10px 0;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  overflow: hidden;
  font-family: "Poppins";
  max-width: 100%;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Style for the original and discounted prices */
.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discounted-price {
  color: var(--dark-blue); /* Red color for discounted price */
  font-weight: bold;
}

/* Discount Badge Styling */
.discount-label {
  position: absolute;
  top: -4px;
  right: -16px;
  background-color: var(--dark-blue);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

.no-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #666;
  margin-top: 40px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  font-family: "Poppins";
  width: 100%;
  justify-content: center;
}

.no-products-icon {
  font-size: 50px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  animation: bounce 1s infinite ease-in-out;
}

.add-to-cart-btn {
  padding: 10px 20px;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Poppins";
  color: white;
  margin: 0 auto;
  cursor: pointer;
  transition: 1s ease background;
  border-radius: 10px;
}

.add-to-cart-btn:hover {
  background: var(--facebook);
}

#product-search::placeholder {
  font-family: "Poppins light";
  color: #000;
}

#product-search {
  color: #000;
}

.pretty-checkbox {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.pretty-checkbox input {
  display: none;
}

.pretty-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
  margin-right: 8px;
}

.pretty-checkbox input:checked + .checkmark {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.pretty-checkbox .checkmark::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  transition: opacity 0.2s, transform 0.2s;
}

.pretty-checkbox input:checked + .checkmark::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: bold;
  font-family: "Poppins light";
}

.toast:hover {
  opacity: 1;
}

/* Fade-in when the toast is added */
.toast.show {
  opacity: 0.9;
}

/* Fade-out for removal */
.toast.hide {
  opacity: 0; /* Will transition to fully transparent */
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
}

.cart-item-image img {
  width: 60px;
  height: auto;
  margin-right: 1rem;
}

.cart-item-details {
  flex: 1;
  padding-left: 10px;
  padding-right: 20px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.quantity-controls {
  display: flex;
  gap: 10px;
}

.quantity-controls button {
  background: var(--light-green);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.cart-item-remove .remove-btn {
  background: #e74c3c;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.btn-buy {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins light";
  font-weight: bold;
  background: var(--dark-blue);
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

#cart-container-payment {
  max-height: 500px;
  overflow: auto;
}

.total-container-payment {
  text-align: center;
  font-family: "Poppins";
  display: flex;
  justify-content: center;
}

/* PAYMENT */

.payment-cart-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.payment-left {
  max-width: 600px;
  width: 50%;
  min-height: 300px;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
}

.payment-right {
  width: 50%;
  max-width: 500px;
}

.payment-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 5px;
}

.payment-option img {
  cursor: pointer;
  transition: transform 0.3s;
}

.payment-option img:hover {
  transform: scale(1.1);
}

.form-payment {
  padding: 10px;
  font-family: "Poppins light";
}

/* select */

.custom-select-container {
  position: relative;
  width: 100%;
  font-family: "Poppins light";
}

.custom-select {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-select:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.dropdown-icon {
  font-size: 1.2em;
  color: #007bff;
  transition: transform 0.3s ease;
}

.custom-dropdown {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  animation: dropdownFade 0.3s ease forwards;
  z-index: 10;
  max-height: 196px;
  overflow: auto;
}

.dropdown-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-option:hover {
  background-color: var(--dark-blue);
  color: #ffffff;
}

.rotate-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

#prefix .dropdown-option img,
#country .dropdown-option img {
  width: 20px;
}

.custom-input {
  position: relative;
  width: 100%;
}

.custom-input input,
.custom-input textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 15px;
  padding-right: 15px;
  resize: vertical; /* Allows the user to resize the height of the textarea */
  font-family: "Poppins light";
}

.custom-input textarea {
  height: auto;
  min-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: none;
  line-height: 1, 5;
}

.custom-input input:focus,
.custom-input textarea:focus {
  border-color: #4a90e2;
}

.custom-input input::placeholder,
.custom-input textarea::placeholder {
  color: #999;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-family: "Poppins light";
}

.custom-input input:focus::placeholder,
.custom-input textarea:focus::placeholder {
  opacity: 0;
}

.validation-message {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 5px;
}

.validation-message-contact {
  color: var(--red);
  font-size: 12px;
  display: none;
  margin-top: 5px;
  font-family: "Poppins";
}

/* Initial state of the arrow */
.dropdown-icon {
  transition: transform 0.3s ease;
}

/* Rotated state when the dropdown is open */
.dropdown-icon.rotate {
  transform: rotate(180deg);
}

.row {
  display: flex;
  gap: 10px;
}

.btn-submit-payment {
  width: 100%;
  padding: 10px 15px;
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  font-family: "Poppins";
  cursor: pointer;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s ease background;
}

.btn-submit-contact {
  width: 100%;
  padding: 10px 15px;
  background: var(--facebook);
  border: solid 1px var(--white);
  font-family: "Poppins";
  cursor: pointer;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s ease background;
}

.btn-submit-payment:hover {
  background: var(--facebook);
}

.btn-submit-contact:hover {
  background: var(--dark-blue);
}

.nuestro-team {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-family: "Poppins light";
}

.nuestro-team-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nuestro-team-img {
  width: 300px;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.nuestro-team-name {
  text-align: center;
}

.nuestro-team-role {
  text-align: center;
  margin-top: 5px;
}

.nuestro-team-item {
  width: 30%;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.services-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services-desc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 5px;
}

.service-subtitle {
  margin-bottom: 10px;
}

.service-image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  height: 200px;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.add-service {
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins";
  background: var(--dark-blue);
  cursor: pointer;
}

.add-service:hover {
  background: var(--facebook);
}

/* Styles for the services container and items */
#servicesContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Image styles */
.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Service description area */
.services-desc {
  flex-grow: 1; /* Allows the description area to grow and push the button down */
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Button at the bottom */
.service-actions {
  margin-top: auto; /* Pushes the button to the bottom */
}

.add-service:hover {
  background-color: var(--facebook);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .product {
    width: calc(50% - 20px);
  }
}

@media (min-width: 1025px) {
  .product {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 1150px) {
  .header .custom-shape-left,
  .header .custom-shape-right {
    height: 280px;
  }
}

@media (max-width: 1060px) {
  .payment-left {
    width: 100% !important;
  }
  .payment-right {
    width: 100% !important;
  }
  .payment-cart-container {
    flex-direction: column;
  }
}

@media (max-width: 1065px) {
  .section {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .section-fundacion {
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    margin-bottom: 10px;
  }

  .title-section {
    padding-bottom: 20px;
    font-size: 59px;
  }

  .section-fundacion img {
    max-width: 346px;
  }

  .section-title {
    text-align: center;
  }

  .section-fundacion div:nth-child(2) {
    width: calc(100% - 100px);
  }

  .section-constructor {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .circle-constructor {
    left: 120px;
    top: -34px;
    gap: 40px;
  }

  .section-constructor-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .section-constructor-right {
    gap: 40px;
  }

  .blue-bg,
  .blue-bg-2,
  .blue-bg-3,
  .pink-circle-bg,
  .pink-circle-bg-2,
  .pink-circle-bg-3 {
    display: none;
  }

  .carousel {
    width: 100%;
  }
}

@media (max-width: 1045px) {
  .nuestro-team-item {
    width: 45%;
  }
}

@media (max-width: 700px) {
  .nuestro-team-item {
    width: 50%;
  }
}

@media (max-width: 843px) {
  .butterfly-1,
  .butterfly-2,
  .butterfly-3 {
    display: none;
  }

  .header-nav {
    justify-content: space-between;
    background-color: transparent;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: var(--light-background);
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
  }

  .menu-links a {
    color: var(--dark-blue);
    padding: 7px;
    border-radius: 10px;
  }

  .menu-links a:hover {
    background: var(--dark-blue);
    color: #fff;
  }

  .menu-links.active {
    display: flex;
    background: #fff;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: slideFadeIn 0.3s ease forwards;
    width: 100%;
    margin-top: 263px;
    z-index: 1;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 991px) {
  .content-container {
    flex-direction: column;
  }

  .filter-container,
  .products-container {
    width: 100%;
  }

  .product {
    width: calc(50% - 20px);
  }

  .footer {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .services-item {
    width: 43%;
  }
}

@media (max-width: 600px) {
  .header .custom-shape-left,
  .header .custom-shape-right {
    height: 200px;
  }

  .section-fundacion img {
    max-width: 270px;
  }

  .title-constructor {
    font-size: 40px;
  }

  .donation-container {
    flex-direction: column;
  }

  .video-container {
    width: calc(100% - 20px);
  }

  .thumbnail-image {
    width: 100% !important;
  }

  .thumbnail-play-icon .thumbnail-image {
    width: calc(100% - 100px);
  }

  .nuestro-team-item {
    width: 90%;
  }

  .services-item {
    width: 80%;
  }

  canvas {
    width: 100%;
  }

  .banner-container h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 449px) {
  .socials-header {
    gap: 2px !important;
  }
  .banner-container h1 {
    font-size: 1.1rem;
  }
}

@media (max-width: 372px) {
  .section-constructor-item {
    width: 220px;
  }

  .desc-constructor {
    margin-left: 0;
  }

  .circle-constructor {
    left: 82px;
  }

  .footer-item {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .search-container {
    max-width: 100%;
  }

  .product {
    width: 100%;
  }

  .cart-container {
    width: calc(100% - 96px);
  }

  .cart-container.open {
    right: 0;
  }
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}