.hyvfqk1 {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .hyvfqk2 {
    border: none;
    outline: none;
    text-overflow: ellipsis;
}

.hyvfqk1, .hyvfqk2 {
    padding: var(--spacing-2XS);
}

  .hyvfqk3:hover {
    cursor: text;
}

.hyvfqk3 {
    display: inline-flex;
    padding: 5px;
    color: var(--palette-interaction-main);
}
  

  @media (min-width: 1024px) {
    .hyvfqk4 {
        border-width: 1px!important;
    }
}

.hyvfqk4 {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-width: 0;
    border-radius: var(--shape-borderRadius);
    border-style: solid;
    border-color: var(--palette-borderColor);
}

@media (min-width: 1024px) {
    .hyvfqk1:hover .hyvfqk4 {
        border-width: 2px!important;
        border-color: var(--palette-interaction-main);
    }
}

@media (min-width: 1024px) {
    .hyvfqk1:focus-within .hyvfqk4 {
        border-width: 2px;
    }
}
  
  ._1jdhsle0 {
      width: 100%;
      box-sizing: border-box;
      font-family: var(--typography-body1-fontFamily);
      font-size: var(--typography-body1-fontSize);
      font-weight: var(--typography-body1-fontWeight);
      letter-spacing: var(--typography-body1-letterSpacing);
      line-height: var(--typography-body1-lineHeight);
      text-transform: var(--typography-body1-textTransform);
  }

._1nymodn1{
    display: none;
}


/* Coupon Modal CSS */
.open-modal-btn {
  background-color: #ff9800;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.open-modal-btn:hover {
  background-color: #e68900;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  overflow: auto;
  z-index: 99999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
}

.logo-container {
  margin-bottom: 15px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.coupon-title {
  font-size: 24px;
  font-weight: 600;
  margin: 12px 0;
  color: #333;
}

.coupon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  background-color: #f9f9f9;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.coupon-code {
  font-size: 20px;
  background-color: #ffe5d0;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: #d35400;
}

.copy-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #218838;
}

.close-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #e63946;
}

.hidden {
  display: none;
}

#modal-img{
  object-fit: fill;
}

.coupon-title{
  line-height: normal;
}