.top-header {
  margin-left: .3vw;
 }


 
 /* Remove old float-based columns and row styles for products */
.column, .row::after, 
.builtdifferent-tshirt, .kgoml-tshirt, .builtdifferent-hoodies, .kgoml-hoodies, .lion-tshirt {
  /* No longer used for product grid */
  display: none !important;
}

/* Product card styles (copied/adapted from womensclothing.css) */
.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1vw;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5vw 1vw 1vw 1vw;
  margin: 1vw 0.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  min-height: 420px;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,128,128,0.15);
  border-color: teal;
}
.product-image {
  width: 80%;
  height: auto;
  border-radius: 0.5vw;
  border: 2px solid teal;
  margin-bottom: 1vw;
  object-fit: contain;
  background: #fafafa;
}
.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5vw 0 0.2vw 0;
  color: #222;
}
.product-price {
  font-size: 1.1rem;
  color: teal;
  margin-bottom: 0.2vw; /* Reduced from 0.7vw */
  text-align: center;
}
.product-link {
  text-decoration: none;
  color: inherit;
}
.product-actions {
  margin-top: 0.2vw; /* Reduced gap between price and actions */
  display: flex;
  gap: 0.7em;
  align-items: center;
  justify-content: center;
}
.add-to-cart-btn {
  background: teal;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5vw;
}
.add-to-cart-btn:hover {
  background: #008080cc;
}

.favorite-btn {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.4rem;
  cursor: pointer;
  margin-right: 0.5em;
  vertical-align: middle;
  transition: color 0.2s;
}
.favorite-btn.favorited,
.favorite-btn:hover {
  color: #e74c3c;
}

/* Grid layout for products */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2vw;
  justify-items: center;
  margin: 2vw 0;
}
.column {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.logo {
  margin: 0 2vw;
  max-width: 20vw;
  width: 100%;
  background-color: white;
  padding: 2vh 1vw;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2vh;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  gap: 1vw;
}

.logo-side-buttons {
  display: flex;
  flex-direction: row;
  margin-right: -.9vw;
  gap: 1vw;
}

.logo-side-buttons.right {
  margin-right: 0;
  margin-left: -.9vw;
}

.side-btn {
  display: inline-block;
  background: none;
  color: teal;
  padding: 0.5em 1em;
  border-radius: 2em;
  text-decoration: none;
  font-size: 1.22rem;
  transition: color 0.2s;
  text-align: center;
  border: none;
  white-space: nowrap;
}

.side-btn:hover {
  background: none;
  color: #008080cc;
}



  /* Style the logo in the center */
  .center {
  width: 50%;
}



body {
  text-align: center;
}




.promo-section {
  margin-top: 1vh;
}

.promo-buttons {
  margin-top: 1vh;
  margin-bottom: 1vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em; /* Increased gap for more space between buttons */
}

.promo-btn {
  font-size: 1.1rem;
  padding: 0.5em 1em;
  border: none;
  background: none;
  color: teal;
  border-radius: 2em;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.promo-btn:hover {
  background: none;
  color: #008080cc;
}



 /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
  width: 100%;
  }
  .logo-row {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .logo-side-buttons {
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 1vh;
    gap: 3vw;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .logo-side-buttons.right {
    margin-left: 0;
  }
  .side-btn {
    /* margin-bottom: 0; not needed for row layout */
  }
  .logo {
    margin: 0;
    max-width: 80vw;
    width: 100%;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
  .product-card {
    min-height: 340px;
    padding: 4vw 2vw 2vw 2vw;
  }
  .promo-buttons {
    gap: 0.3em; /* Slightly less gap on small screens */
  }
}

@media screen and (max-width: 900px) {
  .logo-row {
    flex-wrap: wrap;
    gap: 2vw;
  }
  .logo-side-buttons,
  .logo-side-buttons.right {
    gap: 2vw;
  }
}
