@media (max-width: 768px) {
    .products.columns-1 .product {
        width: calc(50% - 10px); /* Two columns with 10px gap */
        margin: 0 5px 10px 5px;  /* top/bottom and left/right spacing */
        float: left;              /* make them align side by side */
    }
    .products.columns-1::after {
        content: "";
        display: table;
        clear: both;
    }
}
/* ----- Preorder Gothic Button (High-Contrast Blue + Bright Yellow Text) ----- */
.gtr-hero-cta {
  text-align: center;
  margin-top: 28px;
}

.gtr-gothic-button {
  display: inline-block;
  padding: 1rem 2.3rem;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: inherit;
  color: #fff563; /* vivid golden-yellow text */
  text-shadow: 0 0 8px rgba(255, 230, 100, 0.9),
               0 0 15px rgba(255, 215, 70, 0.6),
               0 0 25px rgba(255, 200, 50, 0.4);
  text-decoration: none;

  background: linear-gradient(135deg, #15266b 0%, #2041d0 100%); /* vibrant blue gradient */
  border: 2px solid #6b7bff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(32, 65, 208, 0.4),
              inset 0 -4px 8px rgba(0, 0, 0, 0.25);

  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;

  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease, color 0.25s ease;
}

/* Hover / focus effect */
.gtr-gothic-button:hover,
.gtr-gothic-button:focus {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #2b46e3 0%, #4d69ff 100%);
  border-color: #9cb6ff;
  color: #fffda3; /* softer golden white */
  text-shadow: 0 0 12px rgba(255, 245, 130, 1),
               0 0 25px rgba(255, 240, 100, 0.8);
  box-shadow: 0 10px 35px rgba(75, 110, 255, 0.65),
              inset 0 -6px 10px rgba(0, 0, 0, 0.45);
  outline: none;
}

.gtr-gothic-button:focus {
  outline: 3px solid rgba(255, 255, 140, 0.4);
  outline-offset: 3px;
}

/* Optional glowing pulse animation */
@keyframes gtr-pulse {
  0%   { box-shadow: 0 8px 25px rgba(32,65,208,0.4); }
  50%  { box-shadow: 0 16px 45px rgba(75,110,255,0.7); }
  100% { box-shadow: 0 8px 25px rgba(32,65,208,0.4); }
}
.gtr-gothic-button.pulse {
  animation: gtr-pulse 3.5s ease-in-out infinite;
}

@media (max-width: 640px) {
  .gtr-gothic-button {
    display: block;
    width: min(92%, 420px);
    margin: 0.7rem auto;
    padding: 1rem 1.3rem;
    font-size: 1.15rem;
  }
}