div.grid-container {
	padding: 0px 1em;
}
#products {
	margin-left: auto;
	margin-right: auto;	
}
#products th {
	text-transform: uppercase;
	letter-spacing: 1px;
}
#products tr {
	font-size: 0.9em;
}

@media (max-width: 768px) {
  div.content-area {
    margin-bottom: 0.5em;
  }
  #products,
  #products tr,
  #products th,
  #products td {
    display: block;
  }
  #products {
    border-collapse: collapse;
  }
  #products thead {
    display: none;
  }
  #products tbody {
    width: 100%;
    display: block;
  }
  #products th,
  #products td {
    border: none;
  }
  #products tr {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 1em;
    padding: 0.5em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  #products td {
    display: block;
    width: 100%;
    padding-left: 50%;
    text-align: right;
    position: relative;
  }
  #products td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%; /* ligeramente menor que padding-left */
    font-weight: bold;
    text-align: left;
  }
  #products th {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
	#products {
		width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
}
@media (min-width: 1024px) {
	#products {
		max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
}