html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

.top-bar {
    background: #ffb6c9;
    padding: 6px 0;
    height: 14px;
}

.top-bar p{
    text-align: center;
    margin-top: -2px;
}

.truly-header {
    width: 100%;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-main {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.logo a{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
}

.hamb-icon {
    width: 25px;
    cursor: pointer;
}

.search{
    width: 25px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 900;
}

.mobile-menu {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    background: white;
    padding: 25px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(-300px);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 1001;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    padding: 15px 0;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active {
    transform: translateY(0px);
    opacity: 1;
}

.overlay-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 900;
}

.overlay-search.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-search {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    max-height: 65vh;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
    transform: translateY(-250px);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 3000;
}
.mobile-menu-search.active {
    transform: translateY(0);
    opacity: 1;
}

.search-box {
    width: 90%;
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    padding: 10px 15px;
    border-radius: 5px;
    gap: 10px;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 8px;
}

.clear-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}
.clear-btn:hover {
    opacity: .85;
}

.search-icon {
    font-size: 20px;
    opacity: .6;
}

.search-results {
    position: absolute;
    top: 55px; 
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.search-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 5px;
}

.search-item:hover {
    background: #f7f7f7;
}

.show-all {
    display: block;
    padding: 12px;
    text-align: center;
    background: #eee;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.show-all:hover {
    background: #ddd;
}

.search-box {
    position: relative;
}

@media (max-width: 768px) {

    .mobile-menu-search {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .mobile-menu-search input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}

.banner {
    width: 100%;
    height: 68vh !important; 
    background: url("../img/banner_1.jpg") no-repeat center;
    background-size: cover;
    background-position: center top; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner-texto {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.banner h1 {
    font-size: 2.9rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.banner .btn {
    background: #ff4081;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    
  .banner {
    background-position: left center !important; 
    background-size: cover !important; 
    margin-top: 80px;

  }
  .banner h1 {
    font-size: 2.9rem;
    margin-bottom: 15px;
  }

  .banner p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
    
}

.categorias-section h2 {
  font-size: 2em;
  margin-top: 0; 
  margin-bottom: 15px; 
  color: #333;
  text-align: center;
}

.categorias-section {
    text-align: center;
    margin: 20px 0;
}

.categorias-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.categorias {
    flex: 1 1 120px;
    max-width: 120px;
    background: #ff8f8f;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categorias:hover {
    background: #ff4081;
    transform: translateY(-5px);
}

.categorias.active {
  background: #ff4081;
  color: #fff;
  font-weight: bold;
}

.productos-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0;
      margin-top: 40px;
}

.productos-grid {
  display: flex;
  gap: 16px;
  overflow: hidden;  
  scroll-behavior: smooth;
  padding: 0;   
  align-items: stretch;

}

.flecha {
  position: absolute;
  top: 50%;
  background: #ff4081;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.flecha-izq { left: 8px; }
.flecha-der { right: 8px; }

@media (max-width: 768px) {

  .flecha {
    display: none !important;
  }

  .productos-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .productos-grid::-webkit-scrollbar {
    display: none;
  }

  .producto {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
    max-width: 425px;
  }
}

.iconos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

@media (max-width: 320px) {

    .iconos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
      padding: 40px 10px;
      background: #fff;
    }

}

.icono img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.icono p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.banner-sobrenosotros {
    width: 100%;
    height: 68vh !important; 
    background: url("../img/sobrenosotros.jpg") no-repeat center;
    background-size: cover;
    background-position: center top; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-section {
    padding: 30px 0px;
    margin-top: -50px;
    background: #fff;
}

.about-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.about-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
    text-align: center;
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.about-container strong {
    color: #000;
}

@media (max-width: 768px) {

    .about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }


}

.newsletter-section {
    width: 100%;
    height: 300px;
    background: #ff94c9;
    display: flex;
    justify-content: center;
    align-items: center;

}

.newsletter-content {
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 20px;
}

.newsletter-content h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    width: 60%;
    padding: 12px 15px;
    border: none;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background: #ff3fa6;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.newsletter-form button:hover {
    background: #d90e84;
}

.newsletter-msg {
    margin-top: 15px;
    font-size: 18px;
    color: white;
}

.productos-tittle {
  margin-top: 130px;
  padding: 0 20px;
}

.producto {
  width: 376px !important;
  height: 587px !important;
  background: #ffffff;
  border: 2px solid #ffb8d9;
  border-radius: 14px;
  padding: 18px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
}

.producto .img-contenedor {
  width: 100%;
  height: 420px;        
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;     
}

.producto img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center;
}

.producto .nombre {
  font-weight: 600;
  font-size: 17px;
  margin-top: 12px;
  text-align: left;
  color: #000;
}

.producto .descripcion {
    font-size: 14px;
    color: #444;
    text-align: left;
    max-height: 55px;           
    overflow: hidden;
    line-height: 1.4;
}

.producto .btn-agregar {
    background-color: #ff4fa2;
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    margin: 12px auto 0 auto;  
    width: 90%;                
    display: block;
    font-weight: bold;
}

.producto .btn-agregar:hover {
  background: #000;
}

.productos-grid.vertical {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
}

.productos-grid.vertical .producto {
  flex: 0 0 calc(33.333% - 11px);
}

@media (max-width: 768px) {
  .productos-tittle {
  text-align: center;
}

  .productos-grid.vertical {
    flex-wrap: wrap;
    overflow-x: hidden;

  }

  .productos-grid.vertical .producto {
    flex: 0 0 100%;
    align-items: center; 
    margin: 0 auto;
  }
}

#product-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #fff;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  padding-top: 90px;
}

#product-page .product-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 20px;
}

.product-gallery {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: calc(100vh - 200px); 
}

.arrow-btn {
  background-color: #ff4081;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}

.arrow-btn:hover {
  background-color: #e0356f;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  height: 100%;
  scroll-behavior: smooth;
  position: relative;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.thumbnail.active {
  border-color: #ff4081;
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 200px);
}

.main-image img {
  width: 450px;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  margin: 0;
  padding: 0;
}

#product-page .product-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin-left: 10px;
  margin-top: 10px !important;
  padding-top: 0 !important;
}

#product-page .product-info .special-offer {
  font-size: 1rem;
  color: #444;
  margin: 0;
  padding: 0;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

#product-page .product-info .product-tittle {
  font-size: 2.2rem;
  color: #111;
  margin: 0;
  padding: 0;
}

#product-page .product-info h1.product-title {
  font-weight: bold;  
  margin-top: 2px; 
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.new-badge {
  background: #ff0055;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  margin-left: -6px;
  margin-top: -10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

#product-page .product-info .product-short-description {
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;  
  color: #111;
  margin-bottom: 0px; 
  max-width: 500px;
  white-space: pre-line; 
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 0 !important;
}

.product-rating {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #333;
}

.product-rating .stars {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-right: 6px;
}

.product-rating .rating-text {
  color: #666;
}

#product-page .product-info .product-long-description {
  font-size: 0.8rem;
  color: #444;
  max-width: 100%;
 
}

.product-variants {
    margin-top: -15px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-name {
margin-left: 10px;
}

.variant-group h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.variant-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.variant-option {
    cursor: pointer;
}

.variant-option input {
    display: none;
}

.variant-option span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.2s ease;
    font-weight: 500;
}

.variant-option span:hover {
    border-color: #ff2e6c;
}

.variant-option input:checked + span {
    background: #ff2e6c;
    color: #fff;
    border-color: #ff2e6c;
}

.sold-count {
  font-size: 0.95rem;
  color: #ff0055;
  font-weight: 600;
  margin-top: 5px;
}

#product-page .product-info .product-price {
  font-size: 1.5rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 0.4em;
  margin-top: 0px;
}

#product-page .product-info .product-price .old-price {
  text-decoration: line-through;
  color: #111;
  font-weight: normal;
  font-size: 1.1rem;
}

#product-page .product-info .product-price .current-price {
  color: #111; 
}

#product-page .product-info .discount-text {
  font-size: 1.1rem;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 8px; 
  margin-bottom: 4px;
  padding: 1px 0px;
}

.btn-add-cart {
  background-color: #ff2e6c;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.btn-add-cart:hover {
  background-color: #e91e63;
  transform: scale(1.03);
}

@media (min-width: 769px) and (max-width: 1023px) {

  #product-page .product-container {
    padding: 0 15px;
    gap: 20px;
    overflow: hidden; 
  }

  .product-gallery {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 0 0 auto;
  }

  .main-image {
    width: 360px;    
    height: auto;
    flex: 0 0 360px;
  }

  .main-image img {
    width: 100%;
    height: auto;
  }

  .thumbnail {
    width: 55px;
    height: 55px;
  }

  #product-page .product-info {
    flex: 1 1 auto;
    min-width: 0; 
  }

}

@media (max-width: 768px) {

  #product-page {
    padding-top: 70px;
  }

  #product-page .product-container {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .product-gallery {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .main-image {
    width: 100%;
    height: auto;
    justify-content: center;
    margin-top: -25px;
  }

  .main-image img {
    width: 100%;
    max-width: 425px;
    height: auto;
    object-fit: contain;
  }

  .arrow-btn {
    display: none !important;
  }

  .thumbnail-container {
    width: 100%;
    height: auto;
    margin-top: 12px;
    flex-direction: row;
    justify-content: center;
  }

  .thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    width: 100%;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
  }

  .thumbnail-list::-webkit-scrollbar {
    display: none;
  }

  .thumbnail-list {
    scrollbar-width: none;
  }

  .thumbnail {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  #product-page .product-info {
    width: 100%;
    margin-left: 0;
    margin-top: -15px !important;
    align-items: flex-start;
    text-align: left;
  }

  #product-page .product-info .product-tittle,
  #product-page .product-info h1.product-title {
    font-size: 1.6rem;

  }

  #product-page .product-info .product-short-description {
    font-size: 0.95rem;
    line-height: 1.3;


  }

  #product-page .product-info .product-long-description {
    font-size: 0.85rem;
    padding: 0 2px;
  }

  #product-page .product-info .btn-add-cart {
    margin-top: 0px;
    width: 100%;
  }

}

@media (max-width: 320px) {

  #product-page .product-info .product-tittle,
  #product-page .product-info h1.product-title {
    font-size: 1.5rem;
  }

}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.slide-up {
  animation: slideUp 0.35s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-box {
  background: #fdf1f1;
  width: 480px;
  max-width: 95vw;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.2);
  overflow-y: auto;
  overflow-x: hidden; 
  max-height: 95vh;
  box-sizing: border-box;
}

.popup-box *,
.popup-box *::before,
.popup-box *::after {
  box-sizing: border-box;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 28px;
  cursor: pointer;
  color: #444;
}

.popup-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: bold;
  color: #111;
}

.order-summary-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid #e0e0e0;
}

.order-product {
  display: flex;
  align-items: stretch;
  gap: 12px;
  border: 2px solid #2ecc71;
  border-radius: 8px;
  min-height: 150px;
  max-width: 100%; 
  overflow: hidden;
}

.order-img-wrap {
  width: 140px;
  max-width: 100%;
  height: 200px;
  display: flex;
  flex-shrink: 0;
}

.order-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.order-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

.order-name {
  font-size: 25px;
  font-weight: 600;
  margin-top: 10px;
}

.order-desc {
  font-size: 13px;
  color: #555;
  margin: 4px 0 0;
  line-height: 1.3;
  margin-top: -20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%; 
}

.order-price {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.order-old-price {
  margin-top: -5px;
  font-size: 13px;
  opacity: 0.7;
}

.order-old-price span {
  text-decoration: line-through;
}

.order-save {
  font-size: 18px;
  color: green;
  margin-top: -3px;
}

.product-variants {
    margin-top: -15px;
}

.variant-name {
    text-align: center;
    font-size: 18px;
    font-weight: 600;

  }

:root {
  --qty-size: 42px; 
}

.qty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.qty-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.qty-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

#qty { 
  width: 38px; 
  height: 38px; 
  text-align: center; 
  border: 1px solid #ddd; 
  border-radius: 6px; 
  font-size: 18px; 
}

.qty-btn {
  width: var(--qty-size);
  height: var(--qty-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  background: #ff2f6c;
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
}

.qty-btn:hover {
  background: #e30f53;
}

.summary-box{
  background-color: floralwhite;
  border-radius: 8px;
  margin-top: 20px;
  padding: 5px 10px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 15px;
}

.total-row strong {
  font-size: 17px;
}

.free {
  color: green;
  font-weight: bold;
}

.shipping-method {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e0e0e0;
  margin-bottom: 18px;
}

.shipping-method p {
  margin-bottom: 10px;
  font-weight: 600;
}

.radio-box {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #eef7e7;
  border-radius: 10px;
  align-items: center;
}

.radio-box input {
  transform: scale(1.2);
}

.note-section {
  text-align: center;
}

.title-note {
  color: #2ecc71;
  font-weight: bold;
}
.parraf-note{
  margin-top: -10px;
}

.cont-section-title {
  text-align: center;
}

.section-title {
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 40px;
}

#form-checkout label {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

#form-checkout input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.input-name {
  margin-top: 20px;
}

.input-whatsapp {
  margin-top: 20px;
}

.input-email {
  margin-top: 20px;
}

.input-adress {
  margin-top: 20px;
}

.input-city {
  margin-top: 20px;
}

.input-neighborhood {
  margin-top: 20px;
}

.error-text {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

input.error {
  border: 1px solid #e74c3c;
}

input.success {
  border: 1px solid #2ecc71;
}

.btn-final {
  width: 100%;
  margin-top: 18px;
  padding: 14px 0px;
  background: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn-final:hover {
  background-color: #e91e63;
  transform: scale(1.03);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.input-commitment {
  width: 100%;
  margin: 18px 0 10px 0;
}

.commitment-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.commitment-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 14px;
  flex-shrink: 0;
  accent-color: #25D366;
}

.commitment-wrapper label {
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.checkout-note {
  font-size: 13.5px;
  color: #666;
  margin: 10px 0 15px 0;
  line-height: 1.4;
  margin-top: 20px;
}

.risk-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 14px;
  flex-shrink: 0;
  accent-color: #25D366;
}
.input-risk {
  width: 100%;
  margin: 18px 0 10px 0;
}

.risk-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 768px) {

  .order-product {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
    min-height: auto;       
    overflow: visible;   
  }

  .order-img-wrap {
    width: 100%;
    max-width: 100px;
    height: auto;    
    flex-shrink: 0;
  }

  .order-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .order-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .order-name {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-desc {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-price {
    font-size: 16px;
    margin: 0;
    margin-top: 20px;
  }

  .order-old-price {
    font-size: 11px;
  }

  .order-save {
    font-size: 12px;
  }

  .popup-variants.variant-options {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 4px;
  }

  .popup-variants .variant-option span {
    width: 100%; 
    text-align: center; 
    padding: 8px; 
    font-size: 14px;
  }

}

.stock-warning {
  color: #111;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 8px;
}

.out-of-stock {
  color: #555;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 8px;
}

.countdown-container {
  text-align: center;
  margin-top: -20px;
  width: 100%;
  padding: 0px;
}

.countdown-title {
  font-weight: 700;
  color: #111;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.countdown-timer {
  display: block;
  font-family: monospace;
  font-size: 2.5em;
  font-weight: bold;
  color: #d60000;
  letter-spacing: 2px;
  width: 100%;
}

.countdown-subtitle {
  color: #111;
  font-weight: 700;
  margin-top: 10px;
  font-size: 1.2em;
}

@media (max-width: 600px) {
  .countdown-timer {
    font-size: 2em;
  }
}

#product-page .product-info .iconos-producto{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
  padding: 0 5px;
  background: #fff;
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
}

.iconos-producto { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
  text-align: center; 
  padding: 0px 10px; 
  background: #fff; 
  margin-left: 0px; 
  margin-top: -10px;
  max-width: 100%; 
} 
  
.icono-producto img { 
  width: 60px; 
  height: 60px; 
  margin-bottom: 10px; 
}

.icono-producto p { 
  font-size: 14px; 
  color: #333; 
  font-weight: 500; 
}

#product-page .product-info .product-benefits-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.4em;
}

#product-page .product-info .product-benefits {
  list-style: disc;
  padding-left: 20px;
  color: #555;
  line-height: 1.6;
}

.aida-block {
    display: flex;
    align-items: stretch; 
    justify-content: center;
    margin: 80px auto;
    max-width: 1200px;
    background: white;
}

.aida-left {
    width: 50%;
    background: #ffe4ef;
    padding: 60px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px 0 0 10px;
    align-self: stretch;
}

.aida-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.aida-left h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.aida-left p {
    font-size: 18px;
    line-height: 1.6;
}

.aida-right {
    width: 50%;
    align-self: stretch; 
}

.aida-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
    .aida-block {
        flex-direction: column;
        align-items: center; 
    }
    .aida-left{
        width: 100%;
        max-width: 480px;
        border-radius: 10px 10px 0 0;
        padding: 10px !important;
        margin: 0 auto;
    }
    .aida-right{
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .aida-right img{
        border-radius: 0 0 10px 10px ;
    }

    .aida-left h2 {
      margin-bottom: 0%;
    }

    .aida-left h3 {
      margin-bottom: 0%;
    }

    .aida-left p {
      margin-bottom: 0%;
    }
}

.div-buynow {
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 0px 15px; 
}

.div-buynow .btn-add-cart {
  width: 100%;
  max-width: 200px;
  margin: auto;
}

.faq-section {
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px 20px;

}

.faq-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 15px 10px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-answer {
    display: none;
    padding: 10px 10px 20px 10px;
    font-size: 15px;
    color: #555;
}

.icon {
    font-size: 18px;
    transition: 0.3s;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #ddd;
  max-width: 1150px;
  margin: 0 auto;
  padding: 90px 20px;
}

.rating-left-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-left-top h2 {
  margin: 0;
  padding: 0;
  font-size: 48px;
  font-weight: bold;
  color: #000;
}

.rating-left-top .stars-big {
  font-size: 28px;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.rating-left p {
  margin: 5px 0;
  color: #555;
}

.rating-right {
  width: 350px;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.row-stars {
  width: 90px;
  font-size: 14px;
  color: #777;
}

.bar {
  width: 180px;
  height: 10px;
  background: #eee;
  margin: 0 10px;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #f7d400;
}

.count {
  font-size: 14px;
  color: #555;
  width: 40px;
  text-align: right;
}

.reviews-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-reviews h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: left;
}

.toggle-review-btn {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.toggle-review-btn:hover {
  box-shadow: none;
  border: 1px solid black;
}

.comment-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.comment-form label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
}

.comment-form button{
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.star-rating .star {
  cursor: pointer;
  font-size: 22px;
  color: #ccc;
}

.star-rating .star.selected,
.star-rating .star:hover {
  color: #ffcc00;
}

.review {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.review:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author {
  font-weight: bold;
  font-size: 16px;
}

.review-date {
  font-size: 13px;
  color: #777;
}

.review-stars {
  font-size: 18px;
  color: #ffcc00;
  margin-top: 5px;
  display: block;
}

.review-text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.review-product-name {
  margin-top: 6px;
  font-size: 14px;
  color: #999;
  font-style: italic;
  display: block;
}

@media (max-width: 768px) {

  .rating-summary {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 25px 15px;
  }

  .rating-left-top {
    justify-content: center;
  }

  .rating-left-top h2 {
    font-size: 36px;
  }

  .rating-left-top .stars-big {
    font-size: 22px;
  }

  .rating-left p {
    font-size: 14px;
  }

  .rating-right {
    width: 100%;
  }

  .rating-row {
    gap: 10px;
  }

  .row-stars {
    width: 70px;
    font-size: 13px;
  }

  .bar {
    width: 100%;
    margin: 0;
  }

  .count {
    width: auto;
    font-size: 13px;
  }

  .reviews-container {
    padding: 25px 15px;
  }

  .product-reviews h3 {
    font-size: 22px;
    text-align: center;
  }

  .toggle-review-btn {
    width: 100%;
    text-align: center;
  }
}

.titulo-seccion {
  text-align: center;
}

.cont-vermas{
  display: flex;
  justify-content: center;
}
.ver-mas {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  margin-top: 50px !important;
  text-decoration: none;
}

.ver-mas:hover {
  box-shadow: none;
  border: 1px solid black;
}

.pedido-gracias {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 150px;
}

.pedido-gracias h2 {
    color: #2ecc71;
    margin-bottom: 15px;
}

.btn-volver {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

.politicas{
  margin-top: 100px;
  padding: 0px 150px;
}

.titulo-politicas{
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
    .politicas{
    margin-top: 100px;
    padding: 0px 10px;
  }

}

.truly-footer {
    background: #ff80c0;
    margin-top: 50px;
    padding: 0px;
    font-family: 'Times New Roman', serif;
}

.footer-wrapper {
    width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
    max-width: 550px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 320px) {
    .footer-logo {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
  }
}

.footer-input-box {
    display: flex;
    margin-top: 15px;
}

.footer-input-box input {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 15px;
}

.footer-input-box button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.footer-legal {
    font-size: 12px;
    margin-top: 15px;
}

.footer-legal a {
    text-decoration: underline;
}

.footer-social img {
    width: 28px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-right {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    background-color: #fff;
}

@media (max-width: 1023px) {

    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 30px;
    }

    .footer-left{
        max-width: 100%;
        width: 90%;
    }

    .footer-right {
        max-width: 100%;
        width: 100%;
    }

    .footer-right {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }

}
