.cupon-alt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cupon-alt-item {
  display: flex;
  justify-content: space-between;
  border: 2px dashed #4a90e2;
  padding: 15px;
  border-radius: 12px;
  flex: 1 1 calc(100% / 3 - 24px);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  margin: 0;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.cupon-alt-item:hover {
  transform: translateY(-2px);
}

.discount-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 150px;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.discount-alt .amount-alt {
  font-size: 36px;
  font-weight: 800;
  color: #2c7be5;
  margin: 0;
  line-height: 1;
}

.discount-alt .label-alt {
  font-size: 14px;
  color: #6c757d;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.cupon-alt-content {
  flex-grow: 1;
}

.cupon-alt-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  color: #2d3a4b;
  line-height: 1.3;
}

.cupon-alt-description {
  font-size: 14px;
  color: #5e6e82;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cupon-alt-code {
  margin-bottom: 12px;
}

.expiration-alt {
  font-size: 12px;
  color: #6c757d;
  margin-top: 8px;
}

.container-code-alt {
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

.code-field-alt {
  flex: 1;
  padding: 10px !important;
  border: none;
  font-size: 15px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  font-weight: 600;
  color: #495057;
}

.copy-button-alt {
  padding: 10px 18px;
  background-color: #4a90e2;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.copy-button-alt:hover {
  background-color: #3a7cd6;
}

.cupon-alt-footer {
  width: 100%;
  margin-top: 12px;
}

.offer-link-alt {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background-color: #4a90e2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  font-weight: 600;
  transition: background-color 0.2s;
}

.offer-link-alt:hover {
  background-color: #3a7cd6;
}

.stores-name-alt {
  color: #2c7be5;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.no-coupons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
}

.no-coupons-content p {
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
  .cupon-alt-item {
    flex: 1 1 100%;
    margin: 0;
  }
  
  .container-code-alt {
    flex-direction: column;
  }
  
  .code-field-alt {
    padding: 12px !important;
  }
  
  .copy-button-alt {
    width: 100%;
  }
}