body {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  margin: 0px;
   padding: 0px;
   color: #222222;
   line-height: 1.4;
   font-size: 1rem;
    }

header {
  padding: 32px;
  border-bottom: #CACACA 0.5px solid;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0px;
}

section {
  padding: 32px 20px;
  margin: 0 auto;
  text-align: left;
  width: 80%;
}

h1 {
  font-size: 2.4rem !important;
  padding: 0;
  margin: 0;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  margin-bottom: 24px;
}

nav {
  border-bottom: #222 2px solid;
  border-top: #222 2px solid;
  padding: 18px 0px;
  margin: 0;
  text-align:center;
}

#product-section {
  justify-content: left !important;
  --ts-gutter-y: 30px;
  --ts-gutter-x: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--ts-gutter-y));
  margin-inline-end: calc(-.5 * var(--ts-gutter-x));
  margin-inline-start: calc(-.5 * var(--ts-gutter-x));
}

a {
  color: #222222;
  margin: 0;
  text-decoration: none;
  padding: 0;
}

a:hover {
  text-decoration: underline;
}

a:active {
  font-weight: bold;
}

h3 {
  padding: 0;
  margin: 0;
  display: block;
  font-weight: bold;
  line-height: 20px;
}

.product img {
  width: 300px;
  height: 300px;
}

.listing-tool {
  height: 40px;
  background: #226F54;
  display:block;
  width: 100%;
  line-height: 40px;
  color: #fff!important;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  margin: 8px 0px 12px!important;
}

.return {
  height: 40px;
  background: #6F2223;
  display:block;
  width: 100%;
  line-height: 40px;
  color: #fff!important;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

.item-details {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto 24px;
  width: 80%;
}

.details-container {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  gap: 20px; /* Space between items */
  justify-content: left; /* Distribute space between columns */
}

.image-column, .transaction-details, .product-details {
  flex: 1; /* All columns have equal width */
  margin: 0 10px; /* Space between columns */
}

.image-column img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
}

.transaction-details, .product-details {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-top: 0;
}

a {
  color: #222222;
  font-size: 1rem;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  font-weight: bold;
}

.product-info {
  width: 300px;
  margin: 0 auto;
}

.product {
  flex: 1 1 calc(25% - 20px); /* 25% width minus the gap */
  box-sizing: border-box; /* Ensure padding and border are included in width */
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.25rem;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
}

.card-content {
  padding: 1.25rem;
}

.product-name {
  color: #1a202c;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.info-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-group:last-child {
  border-bottom: none;
}

.info-label {
  color: #718096;
  font-size: 0.875rem;
  font-weight: 500;
}

.info-value {
  color: #2d3748;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .container {
      padding: 1rem;
  }
  
  .products-grid {
      grid-template-columns: 1fr;
  }
  
  .product-card {
      margin-bottom: 1rem;
  }
}