:root {
  --color-bg: #f4f4f4; /* Color de fondo */
  --color-primary: #212121; /* Color primario */
  --color-secondary: #e74c3c; /* Color secundario */
  --color-text: #333; /* Color de texto */
  --color-muted: #ccc; /* Color gris claro */
  --color-border: #ddd; /* Color de borde */
  --color-hover-bg: #f0f0f0; /* Color de fondo al hover */
  --color-hover-border: #999; /* Color del borde al hover */
  --color-price: #ff6600; /* Color del precio */
  --color-disabled: #ccc; /* Color para elementos deshabilitados */
  --color-white: #fff; /* Color blanco */
  --color-black: #000; /* Color negro */
  --color-shadow: rgba(0, 0, 0, 0.1); /* Color de sombra */
  --color-highlight: #ffcc00; /* Color de resaltado */
  /* Agrega más colores según sea necesario */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.product-details-container,
.product-images,
.product-info {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


body {
  font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
  Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
  Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background-color:  var(--color-bg);
  animation: fadeIn 0.8s ease-in-out;
}

.product-details-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-images {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.carousel {
  display: flex;
  flex-direction: column;
  margin-right: 10px; 
  overflow: hidden; 
  max-width: 80px; 
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px; 
  overflow-y: auto;
  height: 100%; 
}

.carousel-image {
  width: 80px; 
  height: 80px;
  object-fit: cover;
  cursor: grab;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-image.active {
  border: 1px solid var(--color-primary);
  opacity: 1;
}

.carousel-image:hover {
  opacity: 1;
  cursor: grabbing;
}
.navigation-arrows {
    position: absolute;
    bottom: 0; 
    right: 0; 
    display: flex;
    z-index: 2; 
}

.navigation-arrows button {
    background-color: var(--color-white);
    border: 1px solid var(--color-muted);   
    cursor: pointer;
    padding: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navigation-arrows button:hover {
    background-color: var(--color-hover-bg);   
    border-color: var(--color-hover-border); 
}

.navigation-arrows button svg {
    width: 17px; 
    height: 17px; 
    fill: var(--color-text);
}

.navigation-arrows button:hover svg {
    fill: #555; 
}

.prev-arrow {
    transform: rotate(180deg); 
}

.next-arrow {
    transform: rotate(0deg); 
}

.slick-arrow:active {
    cursor: grabbing; 
}

.main-image-container {
  position: relative;
  flex: 1; 
  overflow: hidden;
  max-width: 500px;
}

.main-image-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  cursor: grab; 

}

.main-image-carousel img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.product-info {
  padding: 0 40px;
}

.product-title {
  font-size: 38px;
  margin-bottom: 10px;
}

.product-sku {
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 20px;
  margin-bottom: 10px;
}
.product-brand {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.product-prices {
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-price-before {
  text-decoration: line-through;
  color: var(--color-hover-border);
}

.product-price {
  color: var(--color-secondary);
  font-weight: bold;
}


.color-options, .talla-options {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.color-label, .talla-label {
    display: block; 
    margin-bottom: 8px; 
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-border);    
    cursor: pointer;
    transition: border 0.3s, box-shadow 0.3s; 
}

.color-option.selected {
    border: 2px solid var(--color-white); 
    box-shadow: 0 0 0 1px black; 
}

.talla-options {
  display: flex;
  gap: 10px;
}

.talla-option {
  padding: 10px 15px; 
  border: 2px solid var(--color-border);  
  cursor: pointer;
  transition: background-color 0.3s, border 0.3s, box-shadow 0.3s; 
  font-weight: bold; 
  text-transform: uppercase; 
}

.talla-option:hover {
  background-color: rgba(51, 51, 51, 0.1); 
  border: 2px solid var(--color-text); 
}

.talla-option.selected {
  background-color:var(--color-text); 
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px black; 
}


.producto-agregar,
.producto-agregar * ,
.producto-agregar :after,
.producto-agregar :before,
.producto-agregar:after,
.producto-agregar:before {
  border: 0 solid;
  box-sizing: border-box;
}

.producto-agregar {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--color-primary);
  background-image: none;
  color: var(--color-white);
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(var(--color-primary), var(--color-white));
  padding: 0;
}

.producto-agregar:disabled {
  cursor: default;
}

.producto-agregar:-moz-focusring {
  outline: auto;
}

.producto-agregar svg {
  display: block;
  vertical-align: middle;
}

.producto-agregar [hidden] {
  display: none;
}

.producto-agregar {
  border-width: 1px;
  padding: 1rem 2rem;
  position: relative;
  text-transform: uppercase;
}

.producto-agregar:before {
  --progress: 100%;
  background: var(--color-white);
  -webkit-clip-path: polygon(
    100% 0,
    var(--progress) var(--progress),
    0 100%,
    100% 100%
  );
  clip-path: polygon(
    100% 0,
    var(--progress) var(--progress),
    0 100%,
    100% 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  transition: -webkit-clip-path 0.2s ease;
  transition: clip-path 0.2s ease;
  transition: clip-path 0.2s ease, -webkit-clip-path 0.2s ease;
}

.producto-agregar:hover:before {
  --progress: 0%;
}

.producto-agregar .text-container {
  display: block;
  overflow: hidden;
  position: relative;
}

.producto-agregar .text {
  display: block;
  font-weight: 900;
  mix-blend-mode: difference;
  position: relative;
}

.producto-agregar:hover .text {
  -webkit-animation: move-up-alternate 0.3s ease forwards;
  animation: move-up-alternate 0.3s ease forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.product-description {
    margin-top: 30px;
}

.product-description, .product-specifications {
    border-radius: 8px; 
    margin-top: 20px; 
}

.product-description h3, .product-specifications h3 {
    font-size: 24px; 
    color: var(--color-text);
    padding-bottom: 10px;
    margin-bottom: 15px; 
}

.accordion-toggle {
    display: none;
}

.accordion-icon {
    margin-right: 10px;
    width: 20px; 
    height: auto;
}

.accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border-top: 1px solid var(--color-border); 
    border-bottom: 1px solid var(--color-border); 
    transition: background-color 0.3s ease; 
}

.accordion-content {
    max-height: 0;
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
    padding: 0 15px;
}

.accordion-toggle:checked + .accordion-header + .accordion-content {
    max-height: 200px; 
    padding: 15px; 
}

.accordion-content ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.accordion-content li {
    padding: 5px 0; 
}

.product-specifications {
    margin-top: 20px;
}

.icon-closed {
    display: inline;
    margin-left: auto;
}

.icon-open {
    display: none; 
    margin-left: auto;
}

.accordion-toggle:checked + .accordion-header .icon-closed {
    display: none; 
}

.accordion-toggle:checked + .accordion-header .icon-open {
    display: inline; 
}

.icon-closed, .icon-open {
    width: 12px;
    height: auto; 
}


/*productos relacioandos*/
.btn-relacionado-agregar {
  border: 0 solid;
  box-sizing: border-box;
  background-color: var(--color-primary);  
  color: var(--color-white);
  cursor: pointer;
  font-size: 100%;
  width: 100%;
  font-weight: 900;
  line-height: 1.5;
  padding: 1rem 2rem;
  margin-top: 1rem;
  text-transform: uppercase;
  position: relative;
  transition: background-color 0.3s ease;
}

.btn-relacionado-agregar:disabled {
  cursor: default;
  background-color: var(--color-muted);  
}

.btn-relacionado-agregar:hover {
  background-color: #444; 
}

.btn-relacionado-agregar:before {
  --progress: 100%;
  background: var(--color-white);
  clip-path: polygon(
    100% 0,
    var(--progress) var(--progress),
    0 100%,
    100% 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  transition: clip-path 0.2s ease;
}

.btn-relacionado-agregar:hover:before {
  --progress: 0%;
}

.btn-relacionado-agregar .text-container {
  display: block;
  overflow: hidden;
  position: relative;
}

.btn-relacionado-agregar .text {
  display: block;
  font-weight: 900;
  mix-blend-mode: difference;
  position: relative;
}

.btn-relacionado-agregar:hover .text {
  animation: move-up-alternate 0.3s ease forwards;
}

@keyframes move-up-alternate {
  0% { transform: translateY(0); }
  50% { transform: translateY(10%); }
  51% { transform: translateY(-10%); }
  to { transform: translateY(0); }
}

.related-products {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-products h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px;
    max-width: 1200px; 
    padding: 0 15px; 
    justify-content: center; 
}
.related-product-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; 
    height: auto; 
    width: 100%;
}

.related-product-item img {
    width: 100%; 
    height: auto; 
    margin-bottom: 15px; 
    display: block; 
}

.related-product-item h4 {
    margin: 0; 
    font-size: 20px; 
    color: var(--color-text);
    width: 100%; 
}

.related-product-item .product-price-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px 0; 
}

.related-product-item .product-price {
    font-size: 18px;
    color: var(--color-price);
    margin-right: 10px; 
}

.related-product-item .product-price-before {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
}

.related-product-item .producto-colores,
.related-product-item .producto-tallas {
    width: 100%;
    margin: 10px 0; 
    display: flex;
    flex-direction: column; 
}

.related-product-item .color-section,
.related-product-item .talla-section {
    display: flex;
    flex-direction: column; 
}

.related-product-item .color-options,
.related-product-item .talla-options {
    display: flex; 
    margin-top: 5px; 
}

.related-product-item button.producto-agregar {
    background-color: var(--color-price);
    color: var(--color-white);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; 
    margin-top: auto; 
}

.related-product-item button.producto-agregar:hover {
    background-color: #e65500;
}/* Responsividad para pantallas más pequeñas */
@media (max-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: repeat(1, 1fr); 
    }
}

@media (max-width: 480px) {
    .related-product-item {
        padding: 15px; 
    }
}


@media (max-width: 767px) {
  .product-details-container {
    padding: 0;
  }

  .product-images {
    flex-direction: column-reverse; 
  }

  .carousel {
    margin: 0; 
    padding: 0px 0px 0px 20px;
    margin-top: 20px;
    max-width: 100%; 
    max-height: 100px; 
  }

  .carousel-wrapper {
    flex-direction: row; 
    height: auto; 
    overflow-x: auto; 
  }

  .carousel-image {
    width: 60px; 
    height: 60px;
  }

  .main-image-container {
    padding: 0; 
    max-width: none;
  }

  .main-image-carousel img {
    width: 100%; 
  }
  .producto-agregar {
    width: 100%;
  }
  .product-info {
    padding: 20px;
    margin-top: 0px;
  }
}

/* Estilos para tabletas (hasta 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .product-details-container {
    padding: 0; 
  }

  .product-images {
    flex-direction: row; 
  }

  .main-image-container {
    max-width: none; 
  }

  .main-image-carousel img {
    width: 100%; 
  }

  .carousel {
    max-width: 100px; 
  }

  .carousel-wrapper {
    height: auto; /* Ajusta la altura automáticamente en tabletas */
    overflow-x: hidden; /* Oculta el desbordamiento horizontal */
  }
  .producto-agregar {
    width: 100%;
  }
  .product-info {
    padding: 20px 20px 0px 100px; /* Padding específico para tabletas */
  }
}

/* Estilos para pantallas mayores a 1024px */
@media (min-width: 993px) {
  .product-details-container {
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-info {
    max-width: 50%; /* Ajusta el tamaño según sea necesario */
  }

  .product-images {
    flex-direction: row; /* Mantiene la disposición en fila para pantallas grandes */
    max-width: 45%;
  }

  .main-image-container img {
    max-width: 500px;
  }

  .carousel-image {
    width: 80px;
    height: 80px;
  }
}

/* imagenes usuarios */
.k {
  display: flex;
  align-items: center; 
  justify-content: center; 
  background: var(--color-bg);
  overflow: hidden; 

}

.moca {
  max-width: 1200px;
  width: 95%;
}

.image-item-moca {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important; /* Cambiado a flex-start para alinear a la izquierda */
  position: relative !important;
}
.image-username {
  margin-top: 8px !important;
  font-size: 14px !important;
  color: #333; /* Cambia el color según tu preferencia */
  text-align: left; /* Asegúrate de que esté alineado a la izquierda */
  width: 100%; /* Asegúrate de que ocupe el ancho completo del contenedor */
}

.image-item:hover {
  /* Aplica el cursor al pasar el mouse sobre las imágenes */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em" fill="white"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"></path></svg>') 12 12, auto;
}
.username {
  margin-top: 8px !important;
  font-size: 14px !important;
  color: #333; /* Cambia el color según tu preferencia */
}
.slider-wrapper {
  position: relative !important;
  overflow: hidden !important;
}

#prev-slide {
  left: 10px;
}
#next-slide {
  right: 10px;
}
.image-list {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  grid-template-columns: repeat(10, 1fr);
}
.image-list::-webkit-scrollbar {
  display: none;
}
.image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
}
.slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.scrollbar-track {
  height: 2px;
  width: 100%;
  background: #ccc;
  position: relative;
  border-radius: 4px;
}
.scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 50%;
  background: #000;
  border-radius: inherit;
  cursor: grab;
}
.scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal.active {
  display: flex;
}
.modal-content {
  display: flex;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  max-width: 90%;
  width: 800px;
  height: 500px;
  position: relative;
}
.modal-img-moca {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #333;
  background-color: #333; 
  overflow: hidden; 
}
.modal-content img {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
}
.modal-info {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.modal-info h2 {
  margin-bottom: 10px;
}
.modal-info .username {
  font-weight: bold;
  margin-bottom: 10px;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #000;
}
.modal-arrow {
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
  user-select: none;
}
.arrow-moca {
  background-color: #333;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-prev {
  left: 10px;
}
.modal-next {
  right: 10px;
}
.modal-arrow svg {
  color: var(--color-white);
  font-size: 28px;
}
.magnifying-glass {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em" fill="white"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"></path></svg>') 12 12, auto;
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}
.lupus {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em" fill="white"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"></path></svg>') 12 12, auto;

}
.carplupus {
  width: 40px;
  height: 40px;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  transition: all 0.3s ease;
}
.iconlus {
  fill: var(--color-white);
  font-size: 0.9em;
}

.wow {
  box-sizing: border-box;
  fill: var(--color-white);
  font-size: 1.3em;
}

/* Responsividad */
@media (max-width: 768px) {
  .modal-content {
      flex-direction: column;
      width: 100%;
      height: 100vh; 
      padding: 0; 
  }
  .modal-info {
      width: 100%;
      padding: 20px; 
      position: relative;
  }
  .modal-info h2 {
      margin: 0;
      font-size: 1.8rem; 
      text-align: left; 
  }
  .close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
  }
  .modal-img-moca {
      width: 100%;
      height: 60%; 
      display: flex;
      border-bottom: 1px solid #333;
      border-right: none;
      justify-content: center;
      align-items: center;
  }
  .modal-img-moca img {
      max-height: 100%; 
      width: auto; 
  }
  .modal-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
  }
  .modal-prev {
      left: 10px;
  }
  .modal-next {
      right: 10px;
  }
  .modal-arrow svg {
      color: var(--color-white);
      font-size: 20px;
  }
  .modal-info p {
      margin: 5px 0; 
  }
}

/*------ Settings ------*/
.saleizquerda,
.salederecha {
--color: var(--color-white);
--size: 30px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
cursor: pointer;
font-size: var(--size);
user-select: none;
fill: var(--color);
}
/* ------ Hide the default checkbox ------ */
.saleizquerda input,
.salederecha input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}


.mencion-title {
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 10px;
}

.mencion {
font-size: 1rem;
margin-bottom: 20px;
color: #555;
}


.upload-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin: 20px 0;
}

.upload-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border: 1px solid #a5a5b0;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.upload-btn:hover {
  border: 1px solid #000;
}

.action-buttons {
  display: flex;
  gap: 10px; 
}

.slide-button {
  background-color: rgba(29, 29, 31, 0.7); 
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex; 
  align-items: center;
}

.slide-button svg {
  fill: white; 
  width: 1.0em; 
  height: 1.0em; 
}

.slide-button:hover {
  background-color: #242424; /* Color al pasar el mouse */
}












/* Estilos generales de la plantilla de error */
.error-template {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  margin: 30px auto;
  max-width: 500px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Estilo del encabezado */
.error-template-header {
  padding: 10px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.error-template-title {
  font-size: 24px;
  color: #d32f2f;
  margin: 0;
  font-weight: bold;
}

/* Estilo del cuerpo */
.error-template-body {
  padding: 15px;
  color: #555;
}

.error-template-message {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #666;
}

/* Botón de acción */
.error-template-action {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #d32f2f;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.error-template-action:hover {
  background-color: #b71c1c;
}

/* Responsivo */
@media (max-width: 480px) {
  .error-template {
      padding: 15px;
      margin: 100px auto;
      max-width: 90%;
  }

  .error-template-title {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .error-template-message {
      font-size: 14px;
  }

  .error-template-action {
      padding: 8px 16px;
      font-size: 14px;
  }
}
