/* discount area start */
.discount-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.discount-wrapper .discount-layout-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 1rem;
  padding: 22px 12px;
  background: #fff8e7;
  color: #444;
  border: 1px solid #eeeeee;
  overflow: hidden;
}
.discount-wrapper .discount-layout-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}
.discount-wrapper .discount-layout-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f9cb34, #e5b820, #f9cb34);
}
.discount-wrapper .discount-layout-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f9cb34;
}
.discount-wrapper .discount-layout-badge-text {
  font-size: 13px;
  font-weight: 800;
  color: #222;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.discount-wrapper .discount-layout-badge-text span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}
.discount-wrapper .discount-layout-offers {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  row-gap: 10px;
}
.discount-wrapper .discount-layout-offer-row {
  display: contents;
}
.discount-wrapper .discount-layout-offer-qty {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid #eeeeee;
}
.discount-wrapper .discount-layout-offer-text {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}
.discount-wrapper .discount-layout-offer-percent {
  font-size: 20px;
  font-weight: 800;
  color: #444;
  letter-spacing: -0.5px;
}
.discount-wrapper .discount-layout-offer-suffix {
  margin-left: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #e5b820;
}
.discount-wrapper .discount-layout-separator {
  width: 1px;
  height: 72px;
  background: #eeeeee;
}
.discount-wrapper .discount-layout-code-area {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex: 0 0 30%;
  min-width: 30%;
  gap: 8px;
}
.discount-wrapper .discount-layout-code-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.discount-wrapper .discount-layout-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #222;
  background: #f9cb34;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.discount-wrapper .discount-layout-copy-btn:hover {
  background: #e5b820;
  transform: translateY(-1px);
}
.discount-wrapper .discount-layout-code-value {
  font-size: 15px;
  font-weight: 800;
  color: currentColor;
  letter-spacing: 1px;
}
.discount-wrapper .discount-layout-copy-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: currentColor;
  stroke: currentColor;
}
.discount-wrapper .discount-layout-code-hint {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  white-space: normal;
  text-align: center;
  transition: color 0.3s ease;
}
.discount-wrapper .discount-layout-code-hint.is-copied {
  font-weight: 600;
}
/* Discount style 2 */
.discount-wrapper.discount-layout--style-2 .discount-layout-container {
  color: #1a1a1a;
  border: 1px solid #e8e0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background:
    radial-gradient(ellipse 220px 180px at 85% 15%, rgba(240, 208, 96, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 180px 160px at 10% 85%, rgba(212, 160, 23, 0.1) 0%, transparent 70%),
    repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(212, 160, 23, 0.04) 18px, rgba(212, 160, 23, 0.04) 19px),
    #fff9ee;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-top-bar {
  background: linear-gradient(90deg, #d4a017, #f0d060, #d4a017);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-corner-deco {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  pointer-events: none;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-corner-deco::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -12px;
  width: 60px;
  height: 16px;
  background: #e74c3c;
  transform: rotate(-45deg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-corner-label {
  position: absolute;
  top: 8px;
  left: 1px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  transform: rotate(-45deg);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-badge {
  background: #d4a017;
  box-shadow: 0 3px 10px rgba(212, 160, 23, 0.25);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-badge svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-offer-qty {
  border-radius: 6px;
  border: 1px solid #e8e0d0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-offer-percent {
  color: #e74c3c;
  letter-spacing: -0.3px;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-offer-suffix {
  margin-left: 3px;
  color: #555555;
  font-size: 14px;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-separator {
  flex-shrink: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #e8e0d0, transparent);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-code-label {
  color: #888888;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
  border-radius: 8px;
  background: #d4a017;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(212, 160, 23, 0.25);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn:hover {
  background: #c49415;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.35);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn:active {
  transform: translateY(0) scale(0.97);
}
.discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
  color: #ffffff;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-code-hint.is-copied {
  color: #d4a017;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-deco-dots {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 5px;
  opacity: 0.2;
  pointer-events: none;
}
.discount-wrapper.discount-layout--style-2 .discount-layout-deco-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4a017;
}
.discount-wrapper .discount-tips span {
  font-size: 14px;
  padding-left: 5px;
}
/* discount area end */

@media (min-width: 993px) and (max-width: 1023px) {
  .discount-wrapper .discount-layout-badge {
    display: none;
  }
  /* Discount style 1 start */
  .discount-wrapper.discount-layout--style-1 .discount-layout-container {
    padding: 18px 10px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-main {
    gap: 0px;
    padding: 0px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-area {
    padding: 0;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-value {
    font-size: 14px;
  }
  /* Discount style 2 */
  .discount-wrapper.discount-layout--style-2 .discount-layout-container {
    min-height: 150px;
    padding: 18px 14px;
    gap: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-qty {
    padding: 5px 10px;
    font-size: 13px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-text {
    font-size: 14px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-percent {
    font-size: 22px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
    padding: 9px 14px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-value {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  /* Discount style 1 end */
  .discount-wrapper .discount-tips span {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  /* Discount style 1 */
  .discount-wrapper.discount-layout--style-1 .discount-layout-container {
    padding: 24px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-main {
    flex: 1 1 auto;
    gap: 20px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-qty {
    font-size: 15px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-percent {
    font-size: 24px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-area {
    padding: 0 20px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-copy-btn {
    padding: 10px 18px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-value {
    letter-spacing: 1.5px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-container {
    padding: 22px 18px;
    gap: 16px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* Discount */
  .discount-wrapper.discount-layout--style-2 .discount-layout-container {
    min-height: auto;
    padding: 20px 14px;
    gap: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-badge {
    width: 48px;
    height: 48px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-badge svg {
    width: 24px;
    height: 24px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-qty {
    padding: 4px 10px;
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-text {
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-percent {
    font-size: 20px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-suffix {
    font-size: 11px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
    padding: 8px 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-value {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .discount-wrapper .discount-tips span {
    font-size: 13px;
  }
}

@media (min-width: 375px) and (max-width: 480px) {
  /* Discount Area Start */
  /* Discount style 1 */
  .discount-wrapper.discount-layout--style-1 .discount-layout-container {
    padding: 16px 10px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-main {
    flex: 1 1 auto;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-badge {
    display: none;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-qty {
    font-size: 12px;
    padding: 4px 10px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-text {
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-percent {
    font-size: 18px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-suffix {
    font-size: 11px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-value {
    font-size: 13px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-copy-btn svg {
    width: 13px;
    height: 13px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-container {
    min-height: auto;
    padding: 18px 12px;
    gap: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-badge {
    display: none;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-qty {
    padding: 4px 9px;
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-text {
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-percent {
    font-size: 18px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-suffix {
    font-size: 11px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
    padding: 8px 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-value {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .discount-wrapper .discount-tips span {
    font-size: 12px;
  }
  /* Discount Area End */
}

@media (max-width: 374px) {
  /* discount area start */
  /* Discount style 1 */
  .discount-wrapper.discount-layout--style-1 .discount-layout-container {
    padding: 18px 0px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-badge {
    display: none;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-percent {
    font-size: 16px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-suffix {
    font-size: 10px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-text,
  .discount-wrapper.discount-layout--style-1 .discount-layout-offer-qty {
    font-size: 10px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-label,
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-hint {
    font-size: 9px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-area {
    padding: 0;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-copy-btn {
    padding: 8px 12px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-code-value {
    font-size: 12px;
  }
  .discount-wrapper.discount-layout--style-1 .discount-layout-copy-btn svg {
    width: 12px;
    height: 12px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-container {
    min-height: auto;
    padding: 18px 8px;
    gap: 8px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-badge,
  .discount-wrapper.discount-layout--style-2 .discount-layout-corner-deco,
  .discount-wrapper.discount-layout--style-2 .discount-layout-deco-dots {
    display: none;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-qty {
    padding: 4px 8px;
    font-size: 10px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-text,
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-label,
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-hint {
    font-size: 9px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-percent {
    font-size: 16px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-offer-suffix {
    font-size: 10px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-copy-btn {
    padding: 8px 10px;
  }
  .discount-wrapper.discount-layout--style-2 .discount-layout-code-value {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .discount-wrapper .discount-tips span {
    font-size: 12px;
  }
  /* discount area end */
}
