::-webkit-scrollbar {
  width: 8px; 
  height: 8px; 
  }
  ::-webkit-scrollbar-thumb {
  background-color: #ff6a00; 
  border-radius: 50px;
  border: 2px solid #1c1c1c; 
  }
  ::-webkit-scrollbar-track {
  background-color: #2f2f2f; 
  border-radius: 50px; 
  }
  ::-webkit-scrollbar-button {
  display: none; 
  }
  * {
  scrollbar-width: thin; 
  scrollbar-color: #ff6a00 #2f2f2f; 
  }
  .filters {
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  }
  .filters::-webkit-scrollbar {
  display: none; 
  }
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  body {
  display: flex;
  flex-direction: column; 
  background-color: #181a2a;
  font-family: 'Roboto', sans-serif; 
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
  line-height: 1.6; 
  font-size: 16px; 
  letter-spacing: 0.3px;
  }
  .content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: url(#gooey); 
  z-index: 2;
  position: relative; 
  width: 100%; 
  overflow: hidden; 
  }
  .contenedorA1 {
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .contenedorA1 input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px;
  outline: none;
  font-size: 16px;
  width: 100%;
  }
  .contenedorA1 button {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  }
  .particles {
  position: absolute;
  z-index: -1;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .sub-circle {
  position: absolute;
  border-radius: 50%;
  animation: deform 3s infinite ease-in-out;
  }
  @keyframes moveOnly {
  0% {
    transform: translate(0, 0) scale(0.1);
  }
  5% {
    transform: scale(0.5);
  }
  50% {
  transform: translate(var(--x), var(--y)) scale(1.2) rotate(var(--rotate));
  }
  95% {
  transform: scale(0.5) rotate(calc(var(--rotate) * -1));
  }
  100% {
  transform: scale(0.1);
  }
  }
  @keyframes deform {
  0%, 100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.2) skew(5deg, -5deg) rotate(10deg);
  }
  }
  svg {
  width: 0;
  height: 0;
  }
  #Layer_2{
  width: 300px;
  height: 300px;
  }
  .contenedorA2 {
  width: 100%;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  }
  .contenedorA2-inner {
  max-width: 800px;
  text-align: center;
  }
  .contenedorA2 h1 {
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 20px;
  max-width: 900px;
  font-weight: 400;
  margin: 0 auto 20px auto;
  }
  .contenedorA2 p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  }
  .contenedorA2 button {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  }
  .contenedorA2 button:hover {
  transform: scale(1.05); 
  }
  button{
  background: linear-gradient(90deg, #ff6a00, #d75403, #ff6a00); 
  background-size: 200% 200%; 
  color: #fff;
  border: none;
  animation: gradientAnimation 10s infinite; 
  transition: transform 1.0s ease-in-out; 
  cursor: pointer;
  }
  button:hover {
  background-color: #bc4a02;
  background: linear-gradient(90deg, #e05e02, #bc5003, #e05e02); 
  color: white;
  }
  @keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
  }
  .contenedorA3 {
  width: 100%;
  background-color: #f9f9f9;
  padding: 40px 20px;
  box-sizing: border-box;
  }
  .contenedorA2-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  .grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px;
  width: 100%;
  }
  .grid-item {
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  color: #fff;
  }
  .headline {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff6a00, #ffcdad); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  color: #ff6a00; 
  background-clip: text;
  }
  .subheadline {
  font-size: 18px;
  color: #333;
  }
  @media screen and (max-width: 425px) {
  .grid-layout {
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
  }
  .headline {
  font-size: 1.8rem; 
  }
  .subheadline {
  font-size: 14px; 
  }
  }
  .contenedorA4 {
  width: 100%;
  background-color: #181a2a;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .contenedorA4-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  }
  .headlineA4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  padding: 0 10px;
  }
  .chart-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 40px;
  }
  .chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  }
  .chart-bar {
  width: 10%;
  height: var(--value, 50%);
  background: linear-gradient(135deg, #00ef45, #294ce2);
  border-radius: 5px;
  transition: height 1.5s ease-in-out;
  }
  .contenedorA9 {
    width: 100%;
    background: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
    color: #000000;
  }
  .contenedorA9-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .a9-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .a9-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
  }
  .a9-button {
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
  }
  footer {
    width: 100%;
    background-color: #181a2a;
    padding: 5px 0 0 0;
    color: #fff;
    font-size: 0.9rem;
    box-sizing: border-box;
  }
  .footer-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; 
  }
  .footer-social {
    display: flex;
    gap: 15px;
    flex: 1; 
    flex-wrap: wrap;
    margin: 0 10px;
  }
  .footer-social a {
    display: inline-block;
    transition: transform 0.3s ease;
    color: #fff; 
  }
    .footer-social a i {
      font-size: 24px;
    }
  .footer-social a:hover {
    transform: scale(1.1);
  }
  .footer-info {
    text-align: right;
    margin-left: auto; 
    flex: 1; 
    margin: 0 10px;
  }
  .footer-terms-bar {
    margin-bottom: 5px;
  }
  .footer-terms-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
  }
  .footer-terms-bar a:hover {
    color: #ff6a00;
  }
  .footer-rights {
    font-size: 0.85rem;
  }
  @media (max-width: 660px) {
    .footer-inner {
      flex-direction: column; 
      align-items: center; 
      text-align: center; 
    }
    .footer-info {
      margin-left: 0; 
      margin-top: 10px; 
      text-align: center; 
    }
    .footer-social {
      justify-content: center; 
    }
  }
  .container {
  width: 100%;
  margin: 0 auto; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  }
  header {
  padding: 4px 18px 0 18px;
  height: 60px;
  width: 100%;
  position: relative;
  z-index: 9999;
  }
  .logo {
  display: flex;
  align-items: flex-end; 
  cursor: pointer;
  color: inherit; 
  color: white;
  text-decoration: none;
  }
  .logo img {
  width: auto;
  height: 50px;
  }
  .logo span {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 0.8; 
  }
  .search-login {
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .search-login button {
  padding: 10px 15px;
  background-color: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  }
  .search-login svg {
  width: 18px;
  height: 18px;
  fill: #fff; 
}

      .search-login svg{
        display: none;
    }
    .search-login span{
        display: block;
    }
  @media (max-width: 768px) {
      .logo span {
      font-size: 20px;
      }
      .search-login svg{
          display: block;
      }
      .search-login span{
          display: none;
      }
  }
  @media (max-width: 425px) {
      .logo span {
          display: none;
      }
  }
  .display-none {
      display: none;
  }
  .display-block {
      display: block;
  }
  ::-webkit-scrollbar {
  width: 8px; 
  height: 8px; 
  }
  ::-webkit-scrollbar-thumb {
  background-color: #ff6a00; 
  border-radius: 50px; 
  border: 2px solid #1c1c1c; 
  }
  ::-webkit-scrollbar-track {
  background-color: #2f2f2f; 
  border-radius: 50px; 
  }
  ::-webkit-scrollbar-button {
  display: none; 
  }
  * {
  scrollbar-width: thin; 
  scrollbar-color: #ff6a00 #2f2f2f; 
  }
  .filters {
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  }
  .filters::-webkit-scrollbar {
  display: none; 
  }
  .sidebar {
  width: 0;
  background-color: #181a2a;
  color: #fff;
  padding: 15px 15px 300px 15px;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  position: fixed;
  top: 60px;
  left: 0;
  overflow-y: auto;
  display: none;
  z-index: 120;
  opacity: 0; 
  transition: width 0.8s ease, opacity 0.5s ease; 
  }
  .sidebar.active {
  display: block;
  width: 250px;
  opacity: 1; 
  }
  .sidebar-section {
  margin-bottom: 15px;
  background-color: #312f2f;
  border-radius: 8px;
  padding: 15px;
  }
  .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  }
  .section-header h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 100;
  width: 175px;
  }
  .toggle-icon {
  position: relative;
  width: 1.2em;
  height: 1em;
  min-width: 1.2em;
  }
  .arrow-lines:before, .arrow-lines:after {
  content: '';
  position: absolute;
  width: 0.75em;
  height: 0.125em;
  background-color: white;
  transition: transform 0.3s ease;
  }
  .arrow-lines:before {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  }
  .arrow-lines:after {
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  }
  .down.arrow-lines:before {
  transform: translateY(-50%) rotate(45deg); 
  }
  .down.arrow-lines:after {
  transform: translateY(-50%) rotate(-45deg); 
  }
  .section-content {
  list-style: none;
  margin: 5px 0 5px 0;
  max-height: 150px; 
  overflow-y: auto; 
  transition: max-height 0.5s ease; 
  overflow-x: hidden;
  }
  .section-content.expanded {
  max-height: 300px; 
  }
  .section-content li button {
  padding: 5px 0;
  font-size: 16px;
  color: #5fbdfc;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  letter-spacing: 1.3px;
  }
  .section-content li button:hover {
  color: #ff6a00;
  }
  .toggle-content {
  display: flex;
  justify-content: space-between;
  }
  .show-more, .view-less {
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  }
  .filter-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  outline: none;
  }
  .filter-input:focus {
  border-color: #007bff; 
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); 
  background-color: #fff; 
  }
  .filter-input::placeholder {
  color: #999;
  font-style: italic;
  }
  .filter-input:hover {
  border-color: #007bff;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2); 
  }
  @media (max-width: 768px) {
  .sidebar {
  width: 100%;
  height: calc(100vh - 100px);
  height: calc(100dvh - 100px); 
  position: absolute;
  box-shadow: none;
  top: 100px;
  }
  .sidebar.active {
  display: block;
  width: 100%;
  }
  }
  .content-todo {
  position: absolute;
  top: 60px; 
  transform: translateX(0); 
  height: calc(100vh - 60px); 
  height: calc(100dvh - 60px); 
  display: flex;
  flex-direction: column; 
  background-color: #181a2a;
  padding: 0 10px 10px 10px;
  transition: transform 0.3s ease, width 0.3s ease;
  width: 100%; 
  z-index: 100;
  }
  .content-todo.active {
  transform: translateX(250px); 
  width: calc(100% - 250px); 
  }
  @media (max-width: 768px) {
  .content-todo.active {
  transform: translateX(0); 
  width: 100%; 
  }
  }
  .content-superior {
  display: flex;
  flex-direction: row; 
  height: 40px; 
  width: 100%; 
  min-height: 40px;
  justify-content: space-between;
  background: 
  linear-gradient(to right, #181a2a 50%, transparent 50%), 
  linear-gradient(to bottom, #181a2a 50%, #ffffff 50%); 
  background-size: 50% 100%, 50% 100%; 
  background-position: left, right; 
  background-repeat: no-repeat;
  }
  .content-menu-color {
  width: 100%;
  background: 
  linear-gradient(to right, #181a2a 50%, transparent 50%), 
  linear-gradient(to bottom, #181a2a 0%, #ffffff 100%); 
  background-size: 50% 100%, 50% 0%; 
  background-position: left, right; 
  background-repeat: no-repeat;
  min-width: 280px;
  }
  .content-menu {
  width: 100%;
  height: 100%;
  background-color: #181a2a;
  border-radius: 0 0 15px 0;
  }
  .content-h1 {
  display: flex; 
  flex-grow: 1; 
  background-color: #ffffff; 
  border-radius: 20px 20px 0 0;
  justify-content: center; 
  align-items: center; 
  height: 100%; 
  padding: 0 20px; 
  }
  .content-h1 h1 {
  font-size: 24px; 
  color: #333; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  text-align: left; 
  max-width: 700px;
  transition: max-width 0.5s ease; 
  }
  @media (max-width: 1720px) {
  .content-h1 h1 {
  max-width: 450px;
  }
  }
  @media (max-width: 1480px) {
  .content-h1 h1 {
  max-width: 350px;
  }
  }
  @media (max-width: 1100px) {
  .content-h1 h1 {
  max-width: 300px;
  }
  }
  @media (max-width: 976px) {
  .content-h1 h1 {
  max-width: 180px;
  }
  }
  @media (max-width: 768px) {
  .content-superior {
  flex-direction: column; 
  height: 80px; 
  min-height: 80px;
  background: none ;
  }
  .content-menu {
  width: 100%;
  height: 40px;
  border-radius: 0;
  }
  .content-h1 h1 {
  max-width: 100%;
  }
  }
  .content-inferior {
  display: flex;
  flex-grow: 1; 
  width: 100%;
  height: 100%; 
  overflow-y: hidden;
  }
  .content-filter {
  position: relative;
  width: 0; 
  background-color: #181a2a;
  flex-direction: column;
  height: 100%;
  opacity: 0; 
  transition: width 0.4s ease,min-width 0.4s ease, opacity 0.4s ease; 
  overflow: hidden; 
  height: 100%;
  min-width: 0;
  display: flex;
  }
  .content-filter.active {
  min-width: 250px;
  width: 250px; 
  opacity: 1; 
  }
  @media (max-width: 768px) {
  .content-filter.active {           
  min-width: 100%;
  width: 100%; 
  }
  }
  .content-result {
  transition: border-radius 0.8s ease; 
  }
  .content-result-terceario-one {
  transition: border-radius 0.8s ease;
  }
  .content-result {
  flex-grow: 1; 
  height: 100%; 
  overflow-y: auto; 
  border-radius: 0;
  }
  .content-menu {
  display: flex;
  gap: 5px; 
  align-items: center; 
  }
  .toggle-switch {
  display: flex;
  align-items: center;
  }
  .toggle-label {
  margin-left: 10px; 
  font-size: 16px;
  color: #ffffff;
  }
  #div-filter-toggle{
  display: none;
  }
  .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  }
  .switch input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
  }
  .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  }
  .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  }
  input:checked + .slider {
  background-color: #ff6a00;
  }
  input:checked + .slider:before {
  transform: translateX(24px);
  }
  .slider.round {
  border-radius: 34px;
  }
  .slider.round:before {
  border-radius: 50%;
  }
  .filters .sidebar-section{
      background-color: #c7c7c7;
  }
  .filters .arrow-lines:before, .filters .arrow-lines:after{
      background-color: #000000;
  }
  .filter-title,
  .filter-reset {
  height: 40px;
  min-height: 40px;
  background-color: #ffffff;
  display: flex;
  align-items: center; 
  justify-content: center; 
  }
  .filter-reset {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 20px 20px;
  }
  .reset-filter {
  padding: 10px 20px;
  background-color: #fff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 20px;
  margin: 0 5px;
  }
  .reset-filter:hover {
  background-color: #ccc; 
  }
  .filters {
  flex-grow: 1;
  overflow-y: auto; 
  padding: 10px;
  background-color: #ffffff ;
  border-radius: 20px 0 0 0;
  }
  @media (max-width: 768px) {
  .filters {
  border-radius: 0;
  }
  }
  .filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  }
  #sort-filter, #color-filter {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  }
  .filter-input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  }
  .range-slider {
  width: 100%;
  height: 6px;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  transition: background 0.3s;
  }
  .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #2196F3;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  .range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #2196F3;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  .price-inputs {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  }
  .price-inputs input {
  width: 80px;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ccc;
  }
  .no-point{
  pointer-events: none;
  cursor: default;
  }
  .price-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  }
  
  .price-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  }
  .input-group {
  display: flex;
  align-items: center;
  gap: 5px;
  }
  .price-input {
  width: 80px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  text-align: right;
  }
  .price-separator {
  font-size: 20px;
  }
  .content-result {
      display: flex;
      flex-direction: column;
      height: 100%; 
      overflow: hidden; 
  }
  .content-result-secundario {
      flex-grow: 1; 
      background: linear-gradient(180deg, #ffffff 0%, #181a2a 100%);
      overflow-y: auto; 
      border-radius: 0 0 20px 20px;
      display: none;
  }
  .content-contenido-general {
  width: 100%; 
  height: 100%;
  background-color: #2a2b3b;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  border-radius: 10px 0 20px 0;
  overflow-y: auto;
  padding: 10px;
  }
  .content-result-terceario {
      height: 40px;
      background-color: #d0d0d0; 
  }
  .content-result-terceario {
  display: flex;
  flex-direction: row;
  height: 40px;
  min-height: 40px;
  background-color: #d0d0d0; 
  }
  .content-result-terceario-one-color{
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background-color: #2a2b3b; 
  }
  .content-result-terceario-one{
  width: 100%; 
  height: 100%; 
  background-color: #181a2a; 
  border-radius: 20px 0 0 0
  }
  .product-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
  gap: 20px; 
  justify-content: flex-start; 
  align-items: flex-start; 
  width: 100%; 
  }
  @keyframes fadeInUp {
    0% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .product-card {
  position: relative;
  background-color: transparent; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 180px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding: 10px 0 0 0;
  cursor: pointer;
  backface-visibility: hidden;  
  margin: 0 auto; 
  }
  @keyframes fadeInUp {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  .product-card.animate {
    will-change: transform;
    animation: fadeInUp 0.5s ease forwards;
  }
  .image-container {
  background-color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  }
  .product-actions {
    display: none;
  position: absolute;
  top: 20px;
  left: 10px;
  }
  .elementSwitchInlineheart input {
  display: none;
  }
  .elementSwitchInlineheart svg {
  width: 24px;
  height: 24px;
  fill: red;
  cursor: pointer;
  }
  .product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  }
  .product-footer {
  width: 100%;
  position: relative;
  text-align: center;
  }
  .product-footer svg {
  position: absolute;
  bottom: 92px;
  left: 0;
  width: 100%;
  height: 80px;
  }
  .product-info {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  background: linear-gradient(90deg, #374151, #181a2a);
  }
  
  .product-title-input {
  margin: 0 10px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 160px; 
  text-align: left;
  border: none;
  background-color: transparent;
  pointer-events: auto;
  outline: none;
  cursor: help;  
  }
  #svgitems {
  width: 100%;
  height: 100%;
  }
  #svgitems path {
  fill: url(#gradient);
  }
  .product-details {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  color: white;
  }
  .product-price-input {
  font-size: 16px;
  border: none; 
  background-color: transparent; 
  color: #ffffff; 
  text-align: left; 
  pointer-events: none; 
  outline: none; 
  padding: 0; 
  cursor: default; 
  width: 180px;
  }
  .product-discount-input {
  font-size: 14px;
  border: none;
  background-color: transparent;
  color: #333;
  text-align: left;
  pointer-events: none;
  outline: none;
  padding: 0;
  cursor: default;
  width: auto;
}
  .product-discount-input.positive {
  color: #70ff58; 
  }
  .product-discount-input.negative {
  color: #ff4d4d; 
  }
  .product-discount-input.neutro {
  color: #ffffff; 
  }
  .cont-porcentaje {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  width: 100px;
  background: linear-gradient(90deg, #374151, #181a2a);
  border-radius: 0 6px;
  padding: 5px;
  box-sizing: border-box;
}
.discount-icon {
  flex-shrink: 0;
  margin-right: 4px;
  width: 20px;  
  height: 20px;
}
.negative {fill: #ff4d4d;}
.positive {fill: #70ff58;}


  .content-wrapper {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease; 
  }
  .content-wrapper.expanded {
      max-height: 500px; 
  }
  .menu-icon {
  display: none; 
  height: 45px; 
  position: relative;
  cursor: pointer;
  color: white;   
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  line-height: 1;
  top: -8px;
  }
  .menu-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff; 
  transition: transform 0.2s;
}
  .filter-icon {
  display: none;
  height: 45px; 
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  color: white;   
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  line-height: 1;
  top: -3px;
  }

.filter-icon svg {
  width: 36px;
  height: 30px;
  fill: #fff;
  transition: transform 0.2s;
}
  @media (max-width: 768px) {
  .toggle-label {
  display: none;
  }
  .switch .slider {
  display: none;
  }
  .menu-icon {
  display: inline-block;
  }
  .filter-icon {
  display: inline-block;
  }
  }
  .cat-tema {
  flex-grow: 1;
  background: white;
  border-radius: 0 0 10px 10px;
  overflow-y: auto;
  }
  .cat-tema .tema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
  gap: 20px; 
  padding: 20px;
  }
  .theme-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  cursor: pointer;
  }
  .theme-card img {
  width: 100%; 
  height: 150px; 
  border-bottom: 2px solid #ccc;
  margin: 0 auto; 
  display: block;
  }
  .theme-card h3 {
  padding: 10px;
  font-size: 16px;
  color: #333;
  }
  .theme-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 768px) {
  .cat-tema .tema-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
  }
  }
  .content-result-primario {
  height: 60px;
  background-color: #ffffff;
  min-height: 60px;
  display: none; 
  flex-direction: row; 
  align-items: center; 
  gap: 20px; 
  }
  .arrow-text-container {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  margin-left: 10px;
  cursor: pointer;
  }
  .arrow-text-container:hover {
  transform: scale(1.1); 
  color: #007bff; 
  }
  .arrow-lines-left {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  }
  .arrow-lines-left:before, .arrow-lines-left:after {
  content: '';
  position: absolute;
  width: 1.0em;
  height: 0.2em;
  background-color: #000; 
  transition: transform 0.3s ease;
  }
  .arrow-lines-left:before {
  top: 65%;
  left: 0;
  transform:  rotate(50deg); 
  }
  .arrow-lines-left:after {
  top: 20%;
  left: 0;
  transform: rotate(135deg); 
  }
  .arrow-text-container span {
  font-size: 16px;
  color: #333;
  }
  .filtros-selectos {
  margin-top: 10px;
  overflow-x: auto; 
  white-space: nowrap; 
  display: flex; 
  align-items: center; 
  }
  .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: #e0f7fa; 
  color: #00796b; 
  border: 1px solid #00796b; 
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  }
  .filter-tag span {
  margin-right: 8px;
  }
  .remove-filter {
  background: none;
  border: none;
  color: #00796b;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  padding: 0;
  transition: color 0.2s ease-in-out;
  }
  .remove-filter:hover {
  color: #e57373; 
  background-color: none;
  background: none;
  }
  .filter-tag:hover {
  background-color: #b2ebf2; 
  border-color: #004d40; 
  }
  .menu-produc-select{
  padding: 10px;
  border-radius: 8px;
  min-width: 165px; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  }
  .menu-produc-select:hover {
  background-color: #2196F3; 
  color: #fff;
  }
  .menu-produc-select label{
  margin-right: 5px;
  }
  .cat-prod-general {
  flex-grow: 1;
  border-radius: 0 0 10px 10px;
  display: none;
  }
  .cat-prod {
  flex-grow: 1;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  overflow-y: auto;
  height: calc(100vh - 210px);
  height: calc(100dvh - 210px); 
  padding-top: 10px;
  }
  .header-prod-container {
  width: 100%;
  background-color: #ffffff;
  padding: 5px 10px 5px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  border-radius: 0;
  }
  .cont-cat-prod {
  display: grid;
  grid-template-columns: 180px 1fr 1fr; 
  grid-template-rows: auto; 
  grid-gap: 20px; 
  max-width: 1200px;
  margin: 0 auto;
  }
  .product-image {
  max-width: 180px; 
  height: auto; 
  object-fit: contain; 
  }
  .cont-img-prod {
  grid-column: 1; 
  background-color: #ffffff;
  padding: 5px 0;
  border-radius: 10px;
  }
  .cont-medio-prod, .cont-tblinfo-prod {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%; 
  }
  .cont-graf-prod {
  grid-column: 1 / span 3; 
  background-color: #ffffff;
  padding: 20px 20px 0 20px;
  border-radius: 10px;
  height: 300px;
  }
  .cont-empres-prod {
  grid-column: 1 / span 3; 
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(134, 134, 134, 0.1);
  }
  @media (max-width: 768px) {
  .cat-prod {
  height: calc(100vh - 246px);
  height: calc(100dvh - 246px); 
  }
  .cont-cat-prod {
  grid-template-columns: 1fr; 
  }
  .cont-img-prod {
  max-width: 180px;
  margin: 0 auto; 
  }
  .cont-medio-prod, .cont-tblinfo-prod {
  grid-column: 1 / span 3; 
  width: 100%; 
  }
  .cont-graf-prod {
  grid-column: 1 / span 3; 
  }
  .cont-empres-prod,.cont-tblinfo-prod{
  grid-column: 1 / span 3; 
  padding: 0 10px;
  }
  }
  .button-cont-grafprods {
  display: flex;
  gap: 10px;
  overflow-x: auto; 
  padding: 10px 0;
  white-space: nowrap; 
  }
  .cont-graf-prods button {
  background-color: #FF5733;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0; 
  }
  .cont-graf-prods button:hover {
  background-color: #e04b29;
  }
  .cont-graf-prods button:active {
  background-color: #cc4526;
  }
  #btn-reset-filtro {
  background-color: #CCCCCC;
  color: #ffffff;
  }
  #btn-reset-filtro:hover {
  background-color: #b3b3b3;
  }
  #btn-reset-filtro:active {
  background-color: #999;
  }
  .cont-empres-prod {
  width: 100%;
  margin: 40px 0 5px 0;
  border-radius: 8px;
  background-color: #f9f9f9; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
  padding: 0 10px;
  }
  .cont-empres-prod table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  border-radius: 8px;
  overflow: hidden;
  }
  .cont-empres-prod th {
  background-color: #2c3e50; 
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: left; 
  padding: 12px 15px;
  border-bottom: 2px solid #ddd;
  color: #ffffff;
  }
  .cont-empres-prod th:last-child{
  text-align: center;
  }
  .cont-empres-prod td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  background-color: #fff;
  text-align: right; 
  }
  .cont-empres-prod td:first-child {
  text-align: left;
  width: 100%;
  }
  .cont-empres-prod td:nth-child(2) {
  min-width: 120px;
  }
  .cont-empres-prod td:last-child {
  text-align: right;
  min-width: 170px;
  }
  .cont-empres-prod td input {
  width: 120px;
  padding: 5px;
  background-color: transparent; 
  border: none;
  color: #333;
  font-size: 16px;
  }
  .btn-ver-producto {
  display: inline-block;
  padding: 8px 15px;
  background-color: #ff6a00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .btn-ver-producto:hover {
  background-color: #e65a00;
  box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
  }
  .cont-empres-prod td input:focus {
  outline: none; 
  box-shadow: none; 
  }
  .cont-empres-prod td input[readonly] {
  cursor: default; 
  }
  @media (max-width: 768px) {
  .cont-empres-prod table {
  display: block;
  }
  .cont-empres-prod thead {
  display: none; 
  }
  .cont-empres-prod tbody,
  .cont-empres-prod tr,
  .cont-empres-prod td {
  display: block;
  width: 100%;
  }
  .cont-empres-prod tr {
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  padding: 20px; 
  text-align: center; 
  }
  .cont-empres-prod td {
  text-align: center; 
  padding: 0;
  border-bottom: none;
  }
  .cont-empres-prod td:before {
  content: none; 
  }
  .cont-empres-prod td input {
  width: 100%;
  padding: 10px;
  border: none;
  color: #333;
  font-size: 16px;
  text-align: center;
  }
  .btn-ver-producto {
  display: inline-block;
  width: 100%; 
  padding: 10px 0;
  background-color: #ff6a00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  }
  .btn-ver-producto:hover {
  background-color: #e65a00;
  box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
  }
  }
  .cont-tblinfo-prod {
  max-width: 100%;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .cont-tblinfo-prod table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  }
  .cont-tblinfo-prod thead tr {
  border-radius: 8px 8px 0 0;
  }
  .cont-tblinfo-prod thead th {
  padding: 12px 15px;
  background-color: #2c3e50;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  }
  .cont-tblinfo-prod thead th:first-child{
  border-radius: 8px 0 0 0;
  }
  .cont-tblinfo-prod thead th:last-child{
  border-radius: 0 8px 0 0;
  }
  .cont-tblinfo-prod tbody td {
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #ddd;
  }
  .cont-tblinfo-prod tbody tr:nth-child(even) {
  background-color: #f3f3f3;
  }
  .cont-tblinfo-prod tbody tr:last-child td {
  border-bottom: none;
  }
  .cont-tblinfo-prod td {
  vertical-align: middle;
  }
  .cont-graf-prods {
  position: relative;
  height: 50px;
  margin-top: 20px;
  grid-column: 1 / span 3; 
  margin: 0 20px;
  }
  #overview-chart {
  width: 100% !important; 
  height: 100px; 
  }
  
  .clickable-div {
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center; 
  gap: 10px; 
  cursor: pointer; 
  width: 100%;
  font-size: 18px;
  }
  .mensaje-adv {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  text-align: justify;
  }
  div#load-more-trigger {
  height: 59px;
  width: 100%;
  background: transparent; 
  position: relative;
  margin-top: -450px; 
  z-index: -1; 
  }
  .content-result-terceario-one{
      overflow-y: auto;
  }
  .oculto {
    display: none;
  }
  .modal.oculto {
    display: none;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2a2b3b; 
    width: 600px;
    max-height: 600px; 
    padding: 20px;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
  }
  .modal.active {
    display: flex;
  }
  .modal-header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 10px;
  }
  .modal-header input[type="search"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #181a2a; 
    color: #fff;
    font-size: 14px;
  }
  .modal-header input::placeholder {
    color: #999;
  }
  .modal-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto; 
    padding-top: 10px;
  }
  .modal-body h3 {
    margin: 0 0 10px 0;
    color: #ccc;
    font-size: 14px;
  }
  .recommended-container {
    flex: 1; 
    overflow-y: auto; 
    background: #181a2a; 
  }
  .recommended-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
  }
  .recommended-list li {
    color: #3498db;
    padding: 8px 10px;
    cursor: pointer;
  }
  .recommended-list li:hover {
    background: #2c2d32; 
    color: #ff6a00
  }
  .recommended-list li:last-child {
    border-bottom: none;
  }
  .modal-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  button#closeModalBtn {
    padding: 10px;
    background: #555;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  button#closeModalBtn:hover {
    background: #666;
  }
  .body-no-scroll {
  overflow: hidden;
  }
  @media (max-width: 768px) {
  .modal {
      top:0;
      left:0;
      transform: translate(0%, 0%);
      width: 100vw;
      max-height: 100vh;
      max-height: 100dvh;
      height: 100vh;
      height: 100dvh; 
      border-radius: 0; 
  }
  .modal-header input[type="search"] {
      font-size: 12px;
      padding: 8px;
  }
  .modal-body h3 {
      font-size: 12px;
  }
  .recommended-list li {
      padding: 6px 8px;
      font-size: 14px;
  }
  button#closeModalBtn {
      padding: 8px;
      font-size: 14px;
  }
  .recommended-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 100%;
  }
  }
  .modal-header .search-bar {
    display: flex;
    gap: 10px; 
    width: 100%;
  }
  .modal-header input[type="search"] {
    flex: 1; 
    padding: 15px 10px;
    border: none;
    border-radius: 4px;
    background: #181a2a;
    color: #fff;
    font-size: 14px;
  }
  .modal-header input::placeholder {
    color: #999;
  }
  #sbg {
    padding: 10px 15px;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .auth-form input {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #181a2a;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
  }
  .auth-form input:focus {
    border-color: #ff6a00; 
    background: #181a2a;
  }
  .auth-form.oculto {
    display: none;
  }
  .auth-btn {
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
  }
  .link-btn, .terms a {
    background: none;
    border: none;
    color: #3498db;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
  }
  .link-btn:hover, .terms a {
    color: #bc4a02;
    background: none;
  }
  .modal-footer p {
    font-size: 0.9rem;
    text-align: center;
    color: #bbb;
  }
  .close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #d2d2d2;
    cursor: pointer;
    transition: color 0.3s;
    position: relative; 
  }
  .close-btn:hover {
    color: #fff;
    background: none
  }
  #auth-title{
    color: white
  }
  .modal-body p{
    color: white
  }
  .input-container {
    position: relative;
    width: 100%;
  }
  .input-container input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #181a2a;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  .input-container input:focus {
    border-color: #3498db;
  }
  .input-container label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    border: none;
    background-color: #181a2a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px); 
  }
  .input-container label.active {
    top: 0px;
    left: 10px;
    font-size: 12px;
    color: #3498db;
    border: 1px solid #3498db;
    padding: 0 5px;
    border-radius: 5px;
  }
  .poltp {
    font-size: 12px;
  }
  .poltp a{
    color: #3498db
  }
  #modal-pais{
    z-index: 9999999;
  }
  #modal-pais .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
  }
  #modal-pais .modal-header .close-btn {
    background: none;
    border: none;
    font-size: 2.2em;
    color: #d1d1d1;
    cursor: pointer;
  }
  #modal-pais .modal-header .close-btn:hover {
    color: #ffffff;
  }
  #modal-pais .modal-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    background: #181a2a;
  }
  #modal-pais .modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #modal-pais .modal-body li {
    padding-bottom: 10px;
    font-weight: bold;
    color: #c6c6c6;
  }
  #modal-pais .modal-body li ul {
    padding-left: 20px;
  }
  #modal-pais .modal-body li ul li a {
    text-decoration: none;
    color: #5cbafe;
    font-size: 1em;
    font-weight: 500;
    display: flex;
  }
  #modal-pais .modal-body li ul li a:hover {
    color: #bc4a02;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    #modal-pais .modal-body {
      max-height: 100%;
    }
  }
  @media (max-width: 768px) {
    .modal {
        padding: 20px 20px 80px 20px
    }
  }
   .config-modal {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .config-modal.hidden {
    display: none;
  }
  #config-modal .config-content {
    background: #181a2a;         
    color: #eee;                
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.3s ease-in-out;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  #config-modal .btn-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color:rgb(196, 196, 196);
    cursor: pointer;
    transition: color 0.3s;
  }
  #config-modal .btn-close-modal:hover {
    color:rgb(255, 255, 255);
    background: none;
  }
  .config-tabs {
    display: flex;
    align-items: flex-end;
    border-bottom: 2px solid #444;
  }
  .config-tab {
    background: #181a2a;
    border: 1px solid #444;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 500;
    color: #ccc;
    transition: background 0.3s, color 0.3s;
    position: relative;
    top: 0;
  }
  .config-tab:hover {
    background: #1f222e;
  }
  .config-tab.active {
    background: #2c313e;
    color: #fff;
    font-weight: bold;
    top: 2px;
    z-index: 1;
    border: none;
  }
  .config-body {
    height: 436px;          
    overflow-y: auto;        
    border: 1px solid #444;
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: #2c313e;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
    animation: fadeTab 0.3s ease-in-out;
  }
  @keyframes fadeTab {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  #product-name {
    font-size: 1.8rem;
    color: #ff6600;
  }
  .lista-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  #lista-label, #nueva-label {
    font-weight: 600;
  }
  #nueva-lista-container {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0; 
  }
  #config-modal select, 
  #config-modal input[type="text"], 
  #config-modal input[type="number"] {
    background: #222a38;
    color: #eee;
    border: 1px solid #444;
    padding: 6px 10px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
  }
  #config-modal select{
    width: 100%;
  }
  select:focus, input[type="text"]:focus {
    border-color: #ff9a9a;
  }
  .btn-nueva {
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .btn-nueva:hover {
    background: #ffc8c8;
  }
  .btn-close-nueva {
    background: #ff7777;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  .btn-close-nueva:hover {
    background: #ff5555;
  }
  .precio-section {
    margin-bottom: 20px;
  }
  .precio-section p {
    font-weight: 600;
    margin-bottom: 8px;
  }
  .precio-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .precio-section li {
    margin: 5px 0;
  }
  .precio-section input[type="radio"] {
    margin-right: 5px;
  }
  #input-otro-precio {
    width: 100%;
    max-width: 230px;
    background: transparent;
    color: #eee;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding: 4px;
  }
  .config-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .btn-aceptar,
  .btn-cancelar {
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
  }
  .btn-cancelar {
    background: #ccc;
    color: #333;
  }
  .btn-cancelar:hover {
    background: #bbb;
  }
  @media (max-width: 480px) {
    #config-modal .config-content {
      width: 95%;
      padding: 16px;
    }
    .config-tab {
      margin-right: 4px;
      padding: 8px 10px;
    }
    #product-name {
      font-size: 1.5rem;
    }
  }
      #configuracion-tab.tab-content {
        padding: 3rem 2rem 2rem 2rem;
        background: #f9f9f9;
        font-family: Arial, sans-serif;
      }
      #configuracion-tab h1 {
        font-size: 2.2rem;
        color: #294ce2;
        margin-bottom: 0.5rem;
      }
      #configuracion-tab p {
        color: #555;
        margin-bottom: 1.5rem;
      }
      .config-container {
        display: flex;
        gap: 1rem;
      }
      .config-menu {
        width: 200px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
      }
      .config-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .config-menu li {
        padding: 1rem;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        transition: background 0.3s;
        color: #333;
        font-weight: bold;
      }
      .config-menu li:hover {
        background: #f0f0f0;
      }
      .config-menu li.active {
        background: linear-gradient(90deg, #00ef45, #294ce2);
        color: #fff;
      }
      .config-content {
        flex: 1;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 1rem;
        position: relative;
        min-height: 400px;
      }
      .config-section {
        display: none;
        animation: fadeIn 0.4s ease forwards;
      }
      .config-section.active {
        display: block;
      }
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      .btn-back {
        position: relative;
        top: 0;
        left: 0;
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #3d3d3d;
        transition: color 0.3s;
        display: none; 
        z-index: 999;
        margin-bottom: 10px;
      }
      .btn-back:hover {
      background: none;
      color: #6f6f6f;
      }

      .btn-back svg {
  width: 24px;
  height: 24px;
  fill: #6c6c6c;
  transition: transform 0.2s;
}

.btn-back svg:hover{
  transform: scale(1.1);
}
      .perfil-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 0;
      }
      .perfil-form .form-group {
        margin-bottom: 1rem;
      }
      .perfil-form label {
        display: block;
        margin-bottom: 0.3rem;
        font-weight: bold;
        color: #333;
      }
      .perfil-form input[type="text"],
      .perfil-form input[type="email"],
      .perfil-form input[type="tel"] {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        box-sizing: border-box;
      }
      .perfil-form input[readonly] {
        background: #f0f0f0;
        color: #999;
      }
      .perfil-buttons {
        margin-top: 1rem;
        display: flex;
        gap: 0.5rem;
      }
      .btn-edit, .btn-save, .btn-cancel {
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 0.95rem;
      }
      .btn-cancel {
        background: #717171;
      }
      .btn-cancel:hover {
        background: #929292;
      }
      @media (max-width: 600px) {
        .config-container {
          flex-direction: column;
        }
        .config-menu {
          width: 100%;
        }
        .config-content {
          width: 100%;
        }
        .config-menu,
        .btn-back {
          display: block;
        }
        .config-content.active {
          display: block;
        }
        .perfil-form h2, .clave-content h2 {
          font-size: 1.5rem;
          margin-bottom: 1rem;
          margin-top: 40px;
        }
      }
  .custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
  }
  .custom-alert-overlay.active {
    display: block;
    opacity: 1;
  }
  .custom-alert-modal {
    position: fixed;
    top: 50%;
    left: -100%; 
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    max-height: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 10000;
    transition: left 0.4s ease;
    display: none;
  }
  .custom-alert-modal.active {
    display: block;
    left: 50%; 
  }
  .custom-alert-modal.closing {
    left: 110%; 
  }
  .custom-alert-icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .custom-alert-message {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .custom-alert-accept {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .custom-alert-warning .custom-alert-icon {
    color: #f0ad4e;
  }
  .custom-alert-warning .custom-alert-accept {
    background-color: #f0ad4e;
  }
  .custom-alert-error .custom-alert-icon {
    color: #d9534f;
  }
  .custom-alert-error .custom-alert-accept {
    background-color: #d9534f;
  }
  .custom-alert-success .custom-alert-icon {
    color: #5cb85c;
  }
  .custom-alert-success .custom-alert-accept {
    background-color: #5cb85c;
  }
  @media (max-width: 600px) {
    .custom-alert-modal {
      max-width: 90%;
    }
    .custom-alert-accept {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    .custom-alert-icon {
      font-size: 2.5rem;
    }
  }
  .tbl-keyword-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
  }
  .tbl-keyword-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
  }
  .tbl-keyword-item:last-child {
    border-bottom: none;
  }
  .tbl-keyword-item:hover {
    background: rgba(52, 152, 219, 0.1);
  }
  .tbl-keyword-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10x 0;
  }
  .keyword-checkbox {
    transform: scale(1.2);
    cursor: pointer;
    accent-color: #3498db;
    transition: transform 0.2s ease-in-out;
  }
  .keyword-checkbox:hover {
    transform: scale(1.4);
  }
  .keyword-textprd {
    font-size: 16px;
    color: #b7b6b6;
    transition: color 0.2s ease-in-out;
  }
  .keyword-checkbox:checked + .keyword-textprd {
    font-weight: bold;
    color: #dddddd;
  }
  .heart-icon {
    fill: rgb(255, 255, 255); 
    stroke: red;
  }
  .social-login {
    text-align: center;
    display: none;
  }
  .separator {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
  }
  .social-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: #444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, border 0.3s;
  }
  .social-btn:hover {
    background: #606060;
    border-color: #ccc;
  }
  .activation-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: 20px auto 0 auto;
  }
  .activation-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  .activation-container p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
  }
  .activation-code {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .activation-code input {
    width: 60px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
  }
  .activation-code input:focus {
    border-color: #ff6a00 ;
  }
  .activation-container button {
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }
   .contenedor-terminos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 1rem; 
  }
  .terminos-inner {
    max-width: 900px;
    width: 100%;
    background-color: #f9f9f9;
    color: #333; 
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .terminos-titulo {
    margin-top: 0;
    font-size: 2rem;
    color: #294ce2; 
    margin-bottom: 0.5rem;
  }
  .terminos-fecha {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  .terminos-texto h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00af32; 
    font-size: 1.3rem;
  }
  .terminos-texto p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .terminos-texto a {
    color: #294ce2;
    text-decoration: underline;
  }
  #pais-btn{
    display: none;
  }
  .oculto {
    display: none;
  }
  .conuser-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .conuser-menu {
    position: absolute;
    top: 60px; 
    right: 20px; 
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 200px;
    display: none;
  }
  .conuser-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .conuser-menu-item {
    border-bottom: 1px solid #eee;
  }
  .conuser-menu-item:last-child {
    border-bottom: none;
  }
  .conuser-menu-link,
  .conuser-menu-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    font-size: 14px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }
  .conuser-menu-link:hover,
  .conuser-menu-btn:hover {
    background: #f5f5f5;
    color: #333;
  }
  .conuser-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 300px;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
  }
  .conuser-panel.active {
    transform: translateX(0);
  }
  @media (max-width: 480px) {
    .conuser-panel {
      width: 100%;
      max-width: 100%;
    }
  }
  .conuser-panel-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 45px 20px 20px 20px;
  }
  .conuser-panel-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #000;
  }
  .conuser-panel-close:hover {
    background:none;
    color: #535353;
  }
  .menu-product-list {
    display: flex;            
    flex-direction: column;   
    align-items: center;      
    gap: 1rem;                
    margin-top: 1rem;
  }
  .menu-product-card {
    display: flex;
    flex-direction: column;  
    width: 230px;            
    border: 1px solid #ccc;
    border-radius: 10px;
    padding-top: 0.5rem;
    position: relative;      
    background-color: #fff;
  }
  .menu-product-image img {
    max-width: 180px;   
    max-height: 180px;  
    object-fit: cover;  
    display: block;
    margin: 0 auto;     
  }
  .menu-product-info{
    padding: 10px;
    background: linear-gradient(90deg, #374151, #181a2a);  
    border-radius: 0 0 10px 10px;
  }
  .menu-product-name {
    font-size: 16px;
    margin: 0.5rem 0;
    text-align: center;
    font-weight: bold;
    color: #ff6a00;
  }
  .menu-price-alert {
    margin: 0.5rem 0;
    text-align: center;
    font-weight: bold;
    color: rgb(255, 255, 255);
  }
  .menu-product-list-info {
    margin: 0.5rem 0;
    text-align: center;
    color: rgb(255, 255, 255);
  }
  .menu-product-buttons {
    display: flex;
    justify-content: space-around; 
    margin-top: 0.5rem;
  }
  .menu-btn-config,
  .menu-btn-view {
    flex: 1;                
    margin: 0 0.25rem;
    padding: 0.5rem;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
  }
  .menu-btn-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: bold;
  }
  #menu-list-filter {
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 8px;
  }
  #menu-product-count {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  .confirm-delete-modal.hidden {
    display: none;
  }
  .confirm-delete-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .confirm-delete-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
  }
  .confirm-delete-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
  }
  .confirm-delete-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  #btn-delete-accept {
    background: #d9534f;
    color: #fff;
  }
  #btn-delete-cancel {
    background: #ccc;
    color: #333;
  }
  #menu-keywords-container {
    padding: 1rem;
    background-color: #f9f9f9; 
  }
  #menu-keywords-container p {
    margin-bottom: 1rem;
    font-weight: bold;
  }
  #menu-keywords-list {
    list-style: none;     
    margin: 0;
    padding: 0;
  }
  #menu-keywords-list li {
    display: flex;                
    align-items: center;          
    justify-content: space-between; 
    padding: 0.5rem;
    margin-bottom: 0.5rem;        
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;       
  }
  .keyword-text {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  .delete-keyword-btn {
    border: none;
    background: #f44336;        
    color: #fff;
    cursor: pointer;
    width: 24px;                
    height: 24px;
    border-radius: 50%;
    text-align: center;         
    line-height: 24px;          
    font-size: 14px;            
    transition: background 0.3s;
  }
  .delete-keyword-btn:hover {
    background: #e53935;        
  }
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .modal-overlay.active {
    display: flex;
    opacity: 1;
  }
  .modal-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  .modal-overlay.active .modal-content {
    transform: scale(1);
  }
  .modal-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
  }
  .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .btn-accept {
    background-color: #5cb85c;
    color: #fff;
  }
  .btn-cancel {
    background-color: #d9534f;
    color: #fff;
  }
  @media (max-width: 600px) {
    .btn {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    #keywords-list li {
      flex-direction: row;
    }
  }
  .delete-keyword-btn {
    background: none;
    border: none;
    color: #d9534f; 
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; 
    height: 32px;
    border-radius: 50%;
  }
  .delete-keyword-btn:hover {
    transform: scale(1.1);
    color:rgb(243, 243, 243); 
  }

  

  @media (min-width: 769px) {
    .aplicar-filter{
      display:none
    }
  }


  .price-range-container {
    position: relative;
    width: 100%;
    height: 60px; 
  }
  
  #slider-track {
    position: absolute;
    height: 30px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #dadae5; 
    border-radius: 5px;
    z-index: 1;
  }
  input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    height: 0;
    width: 100%;
    pointer-events: none; 
    top: 50%;
    transform: translateY(-50%);
    margin: 0; 
    z-index: 2;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 10px;
    border-radius: 20px;
    background-color: #ff6a00;
    cursor: pointer;
    pointer-events: auto; 
    margin-top: 0px; 
  }
  input[type="range"]::-moz-range-thumb {
    height: 30px;
    width: 10px;
    border-radius: 20px;
    background-color: #ff6a00;
    cursor: pointer;
    pointer-events: auto;
    border: none;
  }
  input[type="range"]::-ms-thumb {
    height: 30px;
    width: 10px;
    border-radius: 20px;
    background-color: #ff6a00;
    cursor: pointer;
    pointer-events: auto;
  }
  .hist-range-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;       
    pointer-events: none;
  }
  
  #hist-track {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    background: rgba(50, 100, 254, 0.3);
    z-index: 1;
    pointer-events: none; 
  }
  
  #hist-min,
  #hist-max {
    appearance: none;
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    pointer-events: none; 
    z-index: 2;
  }
  
  #hist-min::-webkit-slider-thumb,
  #hist-max::-webkit-slider-thumb {
    appearance: none;
    width: 8px;
    height: 50px;
    border-radius: 10px;
    background: #ff6a00 ;
    cursor: pointer;
    pointer-events: auto;
    margin-top: 0; 
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
  }
   .intro-steps {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
  }
  .intro-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
  }
  .intro-steps p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
  }
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .feature-item {
    flex: 1 1 250px;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
opacity: 0; 
animation: fadeInUp 0.8s ease forwards;
  }

.features-grid .feature-item:nth-of-type(1) {
animation-delay: 0.1s;
}
.features-grid .feature-item:nth-of-type(2) {
animation-delay: 0.2s;
}
.features-grid .feature-item:nth-of-type(3) {
animation-delay: 0.3s;
}
.features-grid .feature-item:nth-of-type(4) {
animation-delay: 0.4s;
}
.features-grid .feature-item:nth-of-type(5) {
animation-delay: 0.5s;
}
  .feature-item h3 {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #333;
  }
  .feature-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
  }
  .feature-icon {
    font-size: 2rem;
    background: #2a2b3b;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .feature-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  transition: transform 0.2s;
}

  .follow-us {
    background: #fff;
    padding: 30px;
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
  }
  .follow-us h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
  }
  .follow-us p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff6a00;
    transition: background 0.3s ease;
  }

  .social-icons a svg {
  width: 24px;
  height: 24px;
  fill: #fff; 
  transition: transform 0.2s;
  }
  .social-icons a:hover {
    background: #d95c02;
  }

  @media (max-width: 600px) {
    .feature-item {
      flex: 1 1 100%;
    }
    .intro-steps,
    .follow-us {
      margin: 10px;
    }
  }


  .reset-container {
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-top: 20px; 
    margin-left: auto;
    margin-right: auto;
  }
  
  .reset-container h2 {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .reset-container .input-container {
    margin-bottom: 1.25rem;
    position: relative; 
  }
  
  .reset-container .input-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .reset-container .input-container input[type="password"],
  .reset-container .input-container input[type="text"] {
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem; 
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
  }
  
  .toggle-visibility {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #555;
    cursor: pointer;
  }
  
  #btn-change-pass {
    width: 100%;
    padding: 0.75rem;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #btn-change-pass:hover {
    background-color: #0056b3; 
  }
  
  .error-msg {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffe8e8;
    border: 1px solid #f5c2c2;
    color: #d9534f;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
  }
  
  .error-msg h2 {
    margin-bottom: 1rem;
    color: #d9534f;
  }
  
  .error-msg a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #d9534f;
    font-weight: bold;
  }
  
  .error-msg a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 480px) {
    .reset-container {
      margin: 0 1rem;
    }
    .error-msg {
      margin: 1rem;
    }
  }

  .offline-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    height: 100dvh; 
    background: #181a2a;
    color: #fff;
    text-align: center;
  }
  .offline-logo {
    width: 80px;
    margin-bottom: 1rem;
  }
  .offline-button {
    margin-top: 1.5rem;
    border-radius: 10px;
  }
  .offline-button a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #00ef4400;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
  }

  .install-container {
    padding: 1rem;
    border-radius: 8px;
    display: none;
    margin-top: 1.5rem;
  }
  .install-button {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
  }

  .cont-filters-prod {
    display: block;             
    width: 100%;                
    box-sizing: border-box;     
    margin-top: 1.25rem;
    font-family: sans-serif;
    grid-column: 1 / span 3; 
    padding: 0 10px;
    margin: 0 0 100px 0;
  }
  
  
  .cont-filters-prod table {
    width: 100%;
    table-layout: fixed;       
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .cont-filters-prod th,
  .cont-filters-prod td {
    padding: 0.75rem;
    border-bottom: 1px solid #E0E0E0;
    text-align: left;
    word-wrap: break-word;
  }
  
  .cont-filters-prod tr:nth-of-type(odd) {
    background-color: #eeeeee;  
  }
  
  .cont-filters-prod tr:hover {
    background-color: rgb(223, 224, 226);
  }
  
  .cont-filters-prod thead th {
    position: sticky;           
    top: 0;
    background: #2c3e50;
    border-bottom: 2px solid #2c2e3f48;
    z-index: 2;
    color: white;
  }
  
  .cont-filters-prod {
    flex: 1 1 auto;           
  }
  
  
  #sg-buscador-general {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    background: #2a2b3b00;
  }

  #sg-search-container {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
    padding: 0;
  }
  #sg-buscador-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 18px;
    border: 1px solid #bbb;
    border-radius: 6px 0 0 6px;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  #sg-buscador-input:focus {
    border-color: #ff6a00;
  }
  #sg-search-btn {
    padding: 0 16px;
    background: #ff6a00;
    border: 1px solid #ff6a00;
    border-radius: 0 6px 6px 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  #sg-search-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff; 
  transition: transform 0.2s;
}

  #sg-search-btn:hover {
    background: #e05e01;
  }

#sg-resultados-productos {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 10px;
overflow-y: auto;
padding: 10px 0;
align-items: stretch;    
}

.sg-producto-item {
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
margin: 0 auto;
min-width: 180px;
}

.sg-producto-card {
display: flex;
flex-direction: column;
flex: 1;
border-radius: 8px;
overflow: hidden;
transition: transform .2s, box-shadow .2s;
max-width: 180px;
}
.sg-producto-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.sg-producto-card img {
width: 100%;
height: 180px;
object-fit: cover;
flex-shrink: 0;
background: #fff;
}

.sg-producto-card p {
margin: 0;
padding: 8px;
font-size: 14px;
text-align: center;
color: #fff;
background-color: #2a2b3b;
display: flex;
align-items: center;
justify-content: center;
flex: 1;                 
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: #fff; 
  transition: transform 0.2s;
}

.footer-social a:hover svg {
  transform: scale(1.1);
}

.btn-blog{padding: 10px 0;border-radius: 20px;}
.btn-blog a{padding: 10px 15px;border-radius: 20px;}

.category-bar-simple {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #2a2b3b;    
  padding:0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
  margin: 10px 0;
}
.cat-simple__wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  justify-content: flex-start;       
  -ms-overflow-style: none;    
  scrollbar-width: none;       
}
.cat-simple__wrapper::-webkit-scrollbar {
  display: none;              
}
.cat-simple__wrapper.centered {
  justify-content: center;
}
.cat-simple__item {
  flex: 0 0 auto;
  margin: 0 0.25rem;
  text-align: center;
}


.cat-simple__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.cat-simple__link:hover {
  background-color: #e46103;
}

.cat-simple__icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.cat-simple__icon svg{
  fill:#fff;
  width: 24px;
  height: 24px;

}

.cat-simple__label {
  font-size: 0.875rem;
  line-height: 1.2;
}
.cat-simple__prev,
.cat-simple__next {
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  width: 32px;
  height: 90px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0;        
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.cat-simple__prev:hover,
.cat-simple__next:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.cat-simple__prev svg,
.cat-simple__next svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.cat-simple__prev[disabled],
.cat-simple__next[disabled] {
  visibility: hidden; 
}

@media (max-width:768px){
  .menu-wrapper{
    position:relative;
    display:inline-flex;      
  }

  .menu-wrapper::before{
    content:"";
    position:absolute;
    top:50%;
    left:-10px;
    transform:translateY(-50%);
    width:55px;                  
    height:calc(100% + 6px);
    background: linear-gradient(90deg, #ff6a00, #d75403, #ff6a00);
    animation: gradientAnimation 10s infinite;
    border-radius:0 10px 10px 0;
    z-index:1;                   
  }

  .menu-wrapper .switch,
  .menu-wrapper .toggle-label{
    position:relative;
    z-index:2;
  }
}
.menu-produc-select[disabled]{
  opacity: .45;           
  cursor: not-allowed;    
  pointer-events: none;  
}

@media (max-width:768px){

  #div-filter-toggle{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  #div-filter-toggle::before{
    content:"";
    position:absolute;
    width:36px;            
    height:32px;
    z-index:0;            
    background:#0070ff;    
    border-radius:18%;    
    top:50%;
    left:20px;
    transform:translate(-50%,-50%); 
    pointer-events:none;   
    background: linear-gradient(90deg, #ff6a00, #d75403, #ff6a00);
    animation: gradientAnimation 10s infinite;
  }

  #div-filter-toggle svg{
    z-index:2;           
  }
}


    .cont-h2-prod {
    grid-column: 1 / span 3;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1.8em;
}

.product-title-input {
  margin: 0 10px;
  width: 160px;
  height: 68px;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: bold;
  color: white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; 
  line-clamp: 4;          
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  text-overflow: ellipsis;
  background: transparent;
  border: none;
  cursor: help;
}

