/** Shopify CDN: Minification failed

Line 107:0 Unexpected "<"
Line 218:0 Unexpected "<"

**/
.quick-view-icon.product-quickview { display: none !important; }


.sanford-card-cart {
  width: 100%;
  margin-top: 10px;
}

.sanford-add-btn {
  width: 60%;
  height: 40px;
  background: #16224e;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.1s ease; /* smooth effect */
}
.sanford-add-btn:hover {
  background: red; /* or #ff0000 */
}
.product-card-colors {
  margin-top: 12px;
}

.slide-button {
  /* Basic styling from your screenshot */
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 10px 15px;
  font-family: Arial, sans-serif; /* Replace with your site's font */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  border-radius: 8px;
  cursor: pointer;
  
  /* Required for the animation */
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  display: inline-block;
}

/* The white background that slides in */
.slide-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start outside the button */
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: left 0.4s ease;
  z-index: -1;
}

/* Ensure text stays above the sliding background */
.slide-button span {
  position: relative;
  z-index: 2;
}

/* Hover States */
.slide-button:hover {
  color: #000000; /* Text turns black */
}

.slide-button:hover::before {
  left: 0; /* Background slides into view */
}

/* Mobile view: full width button */
@media (max-width: 768px) {

  .sanford-add-btn {
    width: 100%;
  }


  .product-card {
    min-height: 390px !important;
    max-height: unset !important;
    height: auto !important;
    overflow: visible !important;
  }

}


.product-card {
    position: relative;
    min-height: 450px;
    max-height: 600px;
    overflow-y: auto;
}



<style>
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.product-item {
  text-align: center;
}

input {
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
}

button {
  background: #2f6ecb;
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.badge-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 110px solid #ffe600;
  border-right: 110px solid transparent;
  z-index: 2;
    border-top-left-radius: 12px; /* rounded corner */

}

.badge-text {
  font-family: 'AlbertSans', Arial, sans-serif;
  position: absolute;
  top: 18px;
  left: 0px;
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: bold;
  color: #000;
  z-index: 3;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  width: 80px;           /* keeps text inside triangle */
}


@media (max-width: 480px) {
  .badge-triangle {
    border-top: 65px solid #ffe600;
    border-right: 65px solid transparent;
  }

  .badge-text {
    top: 10px;
    left: -5px;
    font-size: 10px;
    width: 50px;
  }
}


.product-card-img {
  position: relative;
}

.product-image-colors {
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  display: flex;
  gap: 6px;
  z-index: 3;

  background: rgba(255,255,255,0.85); /* optional */
  padding: 6px 6px;
  border-radius: 10px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.color-more {
  font-size: 11px;
  color: #333;
}

</style>