/* Global Container Styles */
.go-ah-container img {
  max-width: 100%;
  height: auto;
}

.go-ah-container .go-ah-row-products {
  display: flex;
  align-items: center;
}

.go-ah-container .go-ah-row-products:hover {
  background-color: #f9f9f9;
}

.go-ah-container a.btn {
  background-color: var(--gonect-primary-color);
  color: var(--white);
  padding: 7px 14px;
  display: block;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42857143;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.go-ah-container a.btn:hover {
  background-color: var(--gonect-primary-color-dark);
}

.go-ah-container .status-instock {
  color: #7ad03a;
}

.go-ah-container .go-ah-label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* Product Row Styles */
.go-ah-container .go-ah-row-products > div {
  padding: 18px 10px;
}

/* Flexbox Utilities */
.go-ah-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Absolute Position Utilities */
.go-ah-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.go-ah-cegg-wrap {
  position: relative;
  z-index: 2;
}

.go-ah-top {
  gap: 0.5rem;
}

/* List Container Styles */
.go-ah-listcontainer {
  border-bottom: 1px solid #eee;
}

.go-ah-listcontainer a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  box-shadow: none;
}

/* Product Column Styles */
.go-ah-prod-col {
  text-align: center;
  position: relative;
}

.go-ah-prod-col-1 {
  width: 20%;
}

.go-ah-prod-col-2 {
  width: 45%;
  text-align: left !important;
}

.go-ah-prod-col-3 {
  width: 15%;
}

.go-ah-prod-col-4 {
  width: 20%;
}

/* Label Colors */
.go-ah-label-green {
  background-color: #58c649;
}

.go-ah-label-orange {
  background-color: var(--gonect-primary-color);
}

/* Stock Status */
.go-ah-container .go-ah-stock-status {
  font-size: 80%;
  color: #7ad03a;
}

/* Position Styles */
.go-ah-position-container {
  display: inline-block;
  position: absolute;
  width: auto;
  z-index: 10;
  top: 50%;
  margin-top: -20px;
  left: -20px;
}

.go-ah-position-text {
  color: #fff;
  font-weight: 700;
  background: var(--gonect-primary-color);
  width: 28px;
  height: 28px;
  display: inline-block;
  line-height: 28px;
  border-radius: 50%;
  font-size: 15px;
  position: relative;
}

/* Media Queries */
@media screen and (max-width: 767px) {
  .go-ah-container .go-ah-row-products {
    display: block !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 35px;
    border-radius: 0.3rem;
  }

  .go-ah-prod-col,
  .go-ah-prod-col-1,
  .go-ah-prod-col-2,
  .go-ah-prod-col-4 {
    width: 100% !important;
  }

  .go-ah-prod-col-3 {
    display: none;
  }

  .go-ah-container a.btn {
    padding: 5px 2px;
    font-size: 12px;
    line-height: 1.3;
  }

  .go-ah-position-container {
    right: 0 !important;
    left: 0 !important;
    top: 5px !important;
  }
}
