@font-face {
  font-family: 'Garage Gothic';
  src: url('https://sossbros.com/wp-content/uploads/2025/06/fonnts.com-GarageGothic_Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}




/* Outer Container (Centers the content) */
.get-merch-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000; /* Page background */
}

/* Wrapper for Cards (Flex for 2 columns) */
.get-merch-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Product Card */
.cb-product-card {
  width: calc(50% - 10px);     /* 2 columns with 20px gap */
  max-width: 500px;
  background: #303030;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Navigation Dots */
.cb-nav-dots {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cb-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: gray;
  cursor: pointer;
}

/* Product Image */
.cb-product-image {
    padding: 50px 0px 10px 0px;
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Product Info */
.cb-product-info {
  padding: 25px;
}
.cb-name {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Garage Gothic', sans-serif;
}
.cb-divider {
  border: none;
  border-top: 1px solid #666;
  margin: 20px 0;
}

/* Variations */
.cb-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  font-family: 'Garage Gothic', sans-serif;
}
.cb-variation {
  padding: 6px 30px;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  background-color: #444;
  color: #ffffff;
  transition: all 0.2s ease;
}
.cb-variation:hover {
  background-color: #555;
}
.cb-variation.active {
  border-color: #fff;
  color: #fff;
   background-color: #D81F27;
}

/* Price + Button Row */
.cb-price-button-row {
  display: flex;
  align-items: center;
  padding: 0px;
  font-family:  'Garage Gothic', sans-serif;
}
.cb-price {
  font-size: 42px;
  font-weight: bold;
  margin-right: auto;
  padding-left: 25px;
}
.cb-add-btn {
  padding: 10px 100px;
  background-color: #FF7200;
  color: #ffffff;
  border: none;
  font-size: 34px;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: 'Garage Gothic', sans-serif;
}
.cb-add-btn:hover {
  background-color: #FF7200;
  color: #ffffff;
}
.cb-add-btn:focus {
  background-color: #FF7200;
  color: #ffffff;
}
.cb-cart-button-wrapper {
  text-align: center;
  
  margin: 50px 0px;
  
}

.cb-confirm-add {
    background-color: rgb(255 114 0) !important;

  font-size: 40px  !important;
 padding: 10px 80px !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer;
  border-radius: 10px !important;
  text-transform: uppercase !important;
    font-family: 'Garage Gothic', sans-serif !important;
}

/* Full Width Button Below (Optional) */
.cb-add-btn-wrapper {
  text-align: center;
  margin-top: 10px;
}
.cb-add-btn-secondary {
  padding: 14px 30px;
  background-color: black;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}
.cb-add-btn-secondary:hover {
  background-color: #222;
}
.cb-error-message{
    color: #D81F27; 
    font-size: 18px;
    display: none;
    margin-bottom: 5px; 
    text-align: center;
    width: 100%;
    margin-bottom:20px;
     font-family: 'Garage Gothic', sans-serif !important;
}
.cb-final-error-message{
    color: #D81F27; 
    font-size: 18px;
    display: none;
    margin-bottom: 5px; 
    text-align: center;
    width: 100%;
    margin-bottom:20px;
     font-family: 'Garage Gothic', sans-serif !important;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .cb-product-card {
    width: 100%;
  }
  .cb-price-button-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cb-price {
    text-align: center;
    width: 100%;
  }
  .cb-add-btn {
    width: 100%;
  }
  .cb-add-btn-wrapper {
    padding: 0 20px;
  }
  .cb-add-btn-secondary {
    width: 100%;
  }
}
