/* COMS Template: custom_list_view_2 */

a {
  text-decoration: none !important;
}

/* ── Container ── */
.coms-clv2-container {
  width: 100%;
}

.coms-clv2-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 0;
}

/* ── Offers List ── */
.coms-clv2-offers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 48px;
}

/* ── Offer Item ── */
.coms-clv2-offer-item {
  width: 100%;
  background: #333333;
  border-radius: 4px;
  padding: 16px 24px;
  position: relative;
}

.coms-clv2-offer-item--numbered {
  margin-bottom: 6px;
}

/* ── Number Badge ── */
.coms-clv2-number-badge {
  position: absolute;
  top: -14px;
  left: 9px;
  background: #efc32d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coms-clv2-number {
  font-size: 17px;
  font-weight: 700;
  color: #101010;
}

/* ── Offer Content ── */
.coms-clv2-offer-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── Logo ── */
.coms-clv2-offer-logo {
  flex-shrink: 0;
  width: 188px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}

.coms-clv2-logo-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.coms-clv2-logo-placeholder {
  width: 172px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

/* ── Offer Details ── */
.coms-clv2-offer-details {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 40px;
  width: 100%;
}

.coms-clv2-offer-details ul {
  padding-bottom: 0 !important;
}

.coms-clv2-offer-details ul li{
  color: #cccccc !important;
}

.coms-clv2-offer-details div:first-child {
  width: 361px;
}

.coms-clv2-offer-title {
  font-family: "Montserrat", serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 600 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  color: #efc32d !important;
}

.coms-clv2-offer-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 !important;
  padding-bottom: 0 !important;
}

.coms-clv2-offer-title a {
  color: #000;
  text-decoration: none;
}

.coms-clv2-offer-title a:hover {
  color: black;
  text-decoration: none;
}

/* ── Rating ── */
.coms-clv2-offer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.coms-clv2-rating-value {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.coms-clv2-review-link {
  font-size: 13px;
  text-decoration: none;
}

.coms-clv2-review-link:hover {
  text-decoration: underline;
}

/* ── Info List ── */
.coms-clv2-info-list {
  margin-bottom: 12px;
}

.coms-clv2-info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 0;
}

.coms-clv2-info-label {
  color: #666;
  font-weight: 400;
}

.coms-clv2-info-value {
  color: #000;
  font-weight: 600;
  text-align: right;
}

/* ── Payment Methods ── */
.coms-clv2-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.coms-clv2-pm-logo {
  max-height: 30px;
  max-width: 50px;
  object-fit: contain;
}

/* ── CTA Button ── */
.coms-clv2-offer-cta {
  width: 175px;
}

.coms-clv2-btn-cta {
  padding: 10px 24px;
  background: #0a8a0f;
  color: white !important;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s ease;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coms-clv2-btn-cta:hover {
  background: #42bb0d;
  color: white !important;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .coms-clv2-offer-content {
    flex-direction: column;
  }

  .coms-clv2-offer-logo {
    width: 100%;
    text-align: center;
  }

  .coms-clv2-logo-img,
  .coms-clv2-logo-placeholder {
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .coms-clv2-offer-details {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .coms-clv2-offer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .coms-clv2-offer-cta {
    width: 100%;
    max-width: 172px;
    margin: 0 auto;
  }

  .coms-clv2-offer-logo {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .coms-clv2-offer-logo a:first-child {
    max-width: 188px;
  }

  .coms-clv2-offer-item {
    padding: 16px;
  }
}

@media (max-width: 830px) {
  .coms-clv2-offer-details div:first-child {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .coms-clv2-offer-logo a:first-child {
    max-width: 105px;
  }
}
