/* CSS Variables */
:root {
  /* Colors */
  --color-bg-primary: #e2eff9;
  --color-bg-gradient-start: rgba(98, 169, 220, 1);
  --color-bg-gradient-end: rgba(255, 255, 255, 0);
  --color-text-primary: #27245d;
  --color-text-secondary: rgba(39, 36, 93, 0.5);
  --color-text-placeholder: rgba(0, 0, 0, 0.5);
  --color-accent-blue: #62a9dc;
  --color-text-link: #62a9dc;
  --color-border: #90d5ee;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-button-disabled: rgba(98, 169, 220, 0.5);

  /* Typography */
  --font-family: "Fredoka", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 32px;
  --font-size-xxl: 40px;
  --font-size-title: 48px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --line-height-base: 1.21;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 10px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 35px;
  --spacing-xxl: 50px;

  /* Border */
  --border-radius: 7px;
  --border-width: 1px;
  --border-style-dashed: 6px;

  /* Layout */
  --container-max-width: 1920px;
  --form-max-width: 846px;
  --form-field-width-half: 413px;
  --form-field-width-full: 846px;
  --form-field-width-time: 200px;
  --form-field-width-days: 343px;
  --input-height: 40px;
  --input-height-large: 67px;
  --textarea-height: 197px;
  --upload-height: 155px;
  --button-height: 48px;
  --button-padding-x: 50px;
  --button-padding-y: 8px;

  /* Breakpoints */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1440px;

  /* Error */
  --color-error: #ff0000;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  direction: rtl;
  text-align: right;
}

/* Page */
.page {
  min-height: 100vh;
  position: relative;
}

.page__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 828px;
  background: linear-gradient(
    180deg,
    var(--color-bg-gradient-start) 0%,
    var(--color-bg-gradient-end) 100%
  );
  opacity: 0.3;
  z-index: -1;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 36px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-top: 0;
  width: 100%;
  max-width: var(--form-max-width);
  padding-right: 0;
  padding-left: 0;
  position: relative;
  gap: 80px;
}

.header__logo {
  width: 140px;
  height: 108px;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title Section */
.title-section {
  text-align: center;
  margin-bottom: 73px;
  width: 100%;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.title-section__step {
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.title-section__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
}

/* Form */
.form {
  width: 100%;
  max-width: var(--form-max-width);
  margin: 0 auto;
}

.form__row {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  /*justify-content: flex-start;*/
  justify-content: space-between;
  align-items: flex-start;
}

.form__row--street {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: var(--spacing-sm);
  margin-bottom: 0;
  position: relative;
}

/*#houseNumber-error {
    position: absolute;
    bottom: -20px;
    right: 0;
}*/

.form__row--city {
  margin-bottom: 32px;
  flex-wrap: nowrap;
}

.form__row--right-align {
  /*justify-content: flex-start;*/
}

.form__row--right-align .form__field {
  /*margin-left: auto;*/
}

.form__row--business-name {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: var(--spacing-sm);
  position: relative;
}

.form__row--business-name .form__field {
  width: 100%;
  max-width: var(--form-field-width-half);
}

.form__row--delivery-time .form__field .form__field--checkbox:first-child {
  margin-bottom: 0;
}

.form__field .form__field--checkbox:first-child {
  margin-bottom: 12px;
}

.form__row--checkbox .form__field--checkbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  position: relative;
}

.form__row--checkbox .form__field--checkbox .form__error-message-text {
  order: 3;
  flex-basis: 100%;
  margin-top: 6px;
}

#businessImage-error,
#logo-error {
  padding-top: 5px;
}

.form__row--checkbox .form__field--checkbox:focus-within {
  outline: none;
}

.form__row--business-name-trade {
  position: relative;
  max-width: 364px;
}

.form__row--business-name-trade
  .form__field--business-phone
  .form__phone-number {
  position: relative;
}

.form__row--multiple-single {
  gap: 22px !important;
  flex-wrap: nowrap;
}

.form__row--multiple-coupon .form__upload,
.form__row--multiple-coupon .form__field--coupon-terms textarea {
  height: 197px !important;
  max-height: 197px !important;
}

.form__row--coupon-limits-numbers .form__field--half {
  max-width: 200px !important;
}

.contact-section .form__row--contact-person-name {
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: var(--form-field-width-half);
  margin-bottom: 0;
}

.business-edit .form__row--contact-person {
  justify-content: start;
}

.business-edit .form__row--contact-person .form__field--half {
  width: 100%;
  flex: 0 0 100%;
  max-width: 32.4%;
}

.contact-section .form__row--contact-person-name .form__field--half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 200px;
}

.form__field--business-phone .form__error-message {
  right: 0;
  left: auto;
  text-align: right;
}

.form__field--checkbox .form__label {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 0;
  cursor: pointer;
  order: 2;
  gap: var(--spacing-sm);
  position: relative;
  font-size: var(--font-size-sm);
}

.form__multiple-single-description {
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 15px;
  color: rgba(39, 36, 93, 0.5);
}

.form__checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  order: 1;
}

.form__checkbox + .form__radio-icon + .form__label-text::before,
.form__checkbox + .form__label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 4px;
  position: relative;
  background-color: var(--color-white);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-border);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form__checkbox + .form__radio-icon + .form__label-text::before,
.form__checkbox:checked + .form__label::before {
  background-color: var(--color-accent-blue);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-border);
}

.form__field--radio {
  display: flex;
  flex-direction: row !important;
  gap: 32px;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  margin-top: var(--spacing-md);
}

.form__field--coupon-limits {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 32px;
}

.form__field--coupon-limits-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
}

.form__field--coupon-limits-item .form__radio-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* First item: icon (launch) on left, checkbox, label on right */
.form__field--coupon-limits-item:first-child .form__radio-icon {
  order: 3;
}

.form__field--coupon-limits-item:first-child .form__checkbox {
  order: 2;
}

.form__field--coupon-limits-item:first-child .form__label {
  margin-bottom: 0;
  order: 1;
  justify-content: end;
}

/* Second item: stars icon, alert icon, checkbox, label */
.form__field--coupon-limits-item:last-child
  .form__radio-icon:not(.form__alert-icon) {
  order: 4;
}

.form__field--coupon-limits-item:last-child .form__alert-icon {
  order: 3;
  cursor: pointer;
}

.form__field--coupon-limits-item:last-child .form__checkbox {
  order: 2;
}

.form__field--coupon-limits-item:last-child .form__label {
  margin-bottom: 0;
  order: 1;
}

.form__field--coupon-limits-item-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: var(--spacing-sm);
}

.form__field--coupon-limits-item .form__tooltip {
  order: 5;
  position: absolute;
}

.form__field--coupon-limits-item-with-tooltip {
  position: relative;
}

.form__field--coupon-limits-container {
  width: 100% !important;
}

.form__field--coupon-limits-container .form__field {
  width: 100% !important;
}

.form__field--coupon-limits-container
  .form__field
  .form__field--coupon-limits-item {
  width: 100%;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
}

/* Tooltip */
.form__tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  right: -28px;
  bottom: -80px;
  margin-bottom: 8px;
  background-color: #ea841c;
  color: var(--color-white);
  padding: 19px 15px 19px 15px;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  white-space: nowrap;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form__tooltip::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 58px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ea841c;
}

/* Links in label */
.form__link {
  color: var(--color-text-link);
  text-decoration: underline;
  cursor: pointer;
}

.form__link:hover {
  color: var(--color-accent-blue);
}

.site-info a {
  color: var(--color-text-link);
}

@media (max-width: 485px) {
  .site-info {
    font-size: 12px !important;
  }
}

.form__field--multiple-single {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.form__radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  order: 1;
}

.form__radio + .form__label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  border: 2px solid #62a9dc;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form__radio:checked + .form__label::before {
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 2px var(--color-accent-blue);
}

.form__radio:focus + .form__label::before {
  outline-offset: 2px;
}

.form__field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form__field--business-name {
  position: relative;
}

.form__field--half {
  width: var(--textarea-height);
  flex: 0 0 var(--form-field-width-half);
  max-width: 100%;
}

.form__field--half.form__field--street {
  max-width: var(--textarea-height);
  position: relative;
}

.form__field--half.form__field--house-number {
  max-width: 98px;
}

.form__field--full {
  width: 100%;
  flex: 0 0 100%;
  max-width: 415px;
}

.form__field--time {
  width: var(--form-field-width-time);
}

.form__field--days {
  width: 413px;
  position: relative;
}

.form__field--description {
  width: 415px;
  flex: 0 0 415px;
  max-width: 100%;
}

.form__field--discount-type,
.form__field--coupon-title {
  width: 100%;
  max-width: 415px;
}

/* Activity Days - Mobile version (hidden on desktop) */
.form__field--activity-days-mob {
  display: block;
}

/* Activity Days - Desktop version (hidden on mobile) */
.form__field--activity-days-desk {
  display: flex;
  width: 413.88px;
  flex: 0 0 413.88px;
  max-width: 413.88px;
  align-self: flex-start;
}

/* Activity Days Table */
.form__label--activity-days {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 16px;
  text-align: right;
  letter-spacing: -0.794048px;
  width: 285px;
  display: flex;
  align-items: center;
}

.activity-days-table {
  width: 413.88px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.activity-days-table__table {
  width: 100%;
  /* border-collapse: collapse;
    table-layout: fixed; */
  display: block;
}

.activity-days-table__table thead {
  border-bottom: 1px solid #fff;
  display: block;
}

.activity-days-table__table thead tr {
  display: table-row;
  display: flex;
}

.activity-days-table__table tbody {
  display: table-row-group;
  display: block;
}

.activity-days-table__header-cell {
  font-size: 16px;
  line-height: 19px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-align: right;
  letter-spacing: -0.794048px;
  padding: 0;
  padding-bottom: 10px;
  vertical-align: middle;
  flex-grow: 0;
  flex-basis: auto;
  width: auto;
}

.activity-days-table__header-cell--day {
  flex: 0 0 50px;
}

.activity-days-table__header-cell--from {
  flex: 0 0 98px;
  color: var(--color-black);
}

.activity-days-table__header-cell--to {
  flex: 0 0 98px;
  color: var(--color-black);
}

.activity-days-table__header-cell--delete {
  display: block;
  width: 90px;
  max-width: 90px;
  margin-left: 0;
}

.activity-days-table__row {
  border-bottom: 1px solid #fff;
  display: flex;
}

.activity-days-table__row:last-child {
  /* border-bottom: none; */
}

.activity-days-table__row-cell {
  font-size: 16px;
  line-height: 19px;
  color: var(--color-black);
  font-weight: var(--font-weight-normal);
  text-align: right;
  padding: 10px 0;
  vertical-align: middle;
  flex-grow: 0;
  flex-basis: auto;
}

.activity-days-table__header-cell--handle {
  flex: 0 0 28px;
}

.activity-days-table__row-cell--day {
  flex: 0 0 50px;
}

.activity-days-table__row-cell--from {
  flex: 0 0 98px;
}

.activity-days-table__row-cell--to {
  flex: 0 0 98px;
}

.activity-days-table__row-cell--delete {
  text-align: left;
  display: block;
  width: 90px;
  max-width: 90px;
  margin-left: 0;
}

.activity-days-table__delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--color-accent-blue);
  font-size: 16px;
  line-height: 19px;
  font-weight: var(--font-weight-normal);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}

.activity-days-table__delete-btn:hover {
  opacity: 0.7;
}

.activity-days-table__delete-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  position: relative;
  flex-shrink: 0;
}

.activity-days-table__delete-icon::before,
.activity-days-table__delete-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: var(--color-accent-blue);
  border-radius: 1px;
}

.activity-days-table__delete-icon::before {
  transform: rotate(45deg);
}

.activity-days-table__delete-icon::after {
  transform: rotate(-45deg);
}

.activity-days-table__add-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.activity-days-table__add-row-inputs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex: 1;
}

.activity-days-table__select-wrapper {
  position: relative;
}

.activity-days-table__select-wrapper:first-child {
  width: 97px;
  flex-shrink: 0;
}

.activity-days-table__select-wrapper:nth-child(2) {
  width: 98px;
  flex-shrink: 0;
}

.activity-days-table__select-wrapper:last-child {
  width: 98px;
  flex-shrink: 0;
}

.activity-days-table__select {
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  padding-left: calc(16px + 17px + 10px);
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 19px;
  color: var(--color-black);
  text-align: right;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.activity-days-table__select-wrapper .form__select-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  pointer-events: none;
  z-index: 1;
}

.activity-days-table__select:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}

.activity-days-table__select option {
  color: var(--color-black);
}

.activity-days-table__select option:disabled {
  color: rgba(0, 0, 0, 0.5);
}

.btn--add-day {
  width: 90px;
  height: 40px;
  padding: 0;
  background-color: var(--color-accent-blue);
  color: var(--color-white);
  border: none;
  border-radius: 7px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 19px;
  font-weight: var(--font-weight-normal);
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn--add-day:hover {
  opacity: 0.9;
}

.activity-days-table__time-error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  margin-top: 8px;
  text-align: right;
}

.form__field--coupon-description .form__textarea-wrapper,
.form__field--coupon-description .form__textarea-wrapper textarea {
  height: 180px !important;
  max-height: 180px !important;
}

.form__field--empty {
  visibility: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.form__field--offset-left {
  margin-left: auto;
}

.form__field--align-right {
  margin-right: auto;
}

.form__field--days-range {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 13px;
  margin-top: var(--spacing-sm);
}

.form__field--days-range .form__field {
  width: 100%;
  position: relative;
}

.form__field--days-range .form__field span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: right;
  z-index: 9;
}

.form__field--days-range .form__field .form__select {
  text-align: left;
}

/* Date Inputs */
.form__date-inputs {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  flex-direction: row;
}

.form__date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 200px;
}

.form__date-input-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  background-image: url(../assets/images/calendar.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
  cursor: pointer;
  border: none;
}

.form__date-icon {
  position: absolute;
  left: var(--spacing-sm);
  width: 16px;
  height: 18px;
  pointer-events: none;
  z-index: 2;
}

.form__input--date {
  width: 200px;
  height: 40px;
  padding-right: calc(var(--spacing-sm) + 16px + var(--spacing-sm));
  padding-left: var(--spacing-md);
  position: relative;
  color: transparent;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.form__input--date:valid {
  color: var(--color-black);
}

.form__date-placeholder {
  position: absolute;
  right: calc(var(--spacing-sm) + 16px + var(--spacing-sm));
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-placeholder);
  pointer-events: none;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  z-index: 2;
}

.form__input--date:valid ~ .form__date-placeholder {
  display: none;
}

.form__input--date::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form__input--date::-moz-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form__input--date::-webkit-inner-spin-button,
.form__input--date::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.form__input--date[type="number"]::-webkit-inner-spin-button,
.form__input--date[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.form__input--date {
  -webkit-tap-highlight-color: transparent;
}

.form__input--date::-webkit-search-cancel-button,
.form__input--date::-webkit-search-decoration {
  -webkit-appearance: none;
  display: none;
}

.form__label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: right;
}

.form__field--tax-id-desk .form__label {
  text-wrap: nowrap;
}

.form__label--city {
  margin-bottom: var(--spacing-md);
}

/* Input */
.form__input {
  width: 100%;
  height: var(--input-height);
  padding: var(--spacing-sm) var(--spacing-md);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-black);
  text-align: right;
  transition: border-color 0.3s ease;
}

.form__input::placeholder {
  color: var(--color-text-placeholder);
  opacity: 0.5;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}

.form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__input-wrapper--password .form__input-toggle {
  position: absolute;
  top: 50%;
  inset-inline-end: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.form__input-wrapper--password .form__input-toggle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/eye.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form__input-wrapper--password .form__input-toggle.is-visible::before {
  background-image: url("../assets/images/eye.svg");
}

.form__row--discount-kind {
  margin-bottom: 0;
}

.coupon-empty-block {
  opacity: 0;
}

/* Counter */
.form__counter {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: right;
}

.form__counter-business-name {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: auto;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: left;
}

/* Select */
.form__select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form__select {
  width: 100%;
  height: var(--input-height);
  padding: var(--spacing-sm) var(--spacing-md);
  padding-left: calc(var(--spacing-md) + 17px + var(--spacing-sm));
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-black);
  text-align: right;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.form__select:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}

.form__select-arrow {
  position: absolute;
  left: var(--spacing-sm);
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  pointer-events: none;
}

/* Phone Input */
.form__phone-wrapper {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.form__phone-code {
  width: 98px;
  flex: 0 0 98px;
  position: relative;
}

.form__phone-number {
  flex: 1;
  position: relative;
}

.form__input--phone-code {
  width: 100%;
}

.form__input--phone-number {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.form__select-wrapper--phone {
  width: 100%;
}

.form__select--phone-code {
  padding-left: calc(var(--spacing-md) + 17px + var(--spacing-sm));
  width: 100%;
}

/* Textarea */
.form__textarea-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__textarea {
  width: 100%;
  height: 100%;
  height: 145px;
  max-height: 145px;
  padding: var(--spacing-sm) var(--spacing-md);
  padding-bottom: calc(
    var(--spacing-sm) + var(--font-size-sm) + var(--spacing-sm)
  );
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-black);
  text-align: right;
  resize: none;
  transition: border-color 0.3s ease;
}

.form__textarea::placeholder {
  color: var(--color-text-placeholder);
  opacity: 0.5;
}

.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}

.form__textarea-wrapper .form__counter {
  bottom: -20px;
}

/* Upload */
.form__upload {
  width: 100%;
  height: var(--upload-height);
  border: none;
  border-radius: var(--border-radius);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='7' ry='7' stroke='%2390D5EE' stroke-width='2' stroke-dasharray='12%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: relative;
  overflow: hidden;
}

.form__upload--dragover {
  background-color: rgba(98, 169, 220, 0.1);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='7' ry='7' stroke='%2362A9DC' stroke-width='2' stroke-dasharray='12%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.form__upload--has-file {
  background-color: rgba(98, 169, 220, 0.08);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='7' ry='7' stroke='%2362A9DC' stroke-width='2'/%3e%3c/svg%3e");
}

.form__upload--has-file .form__upload-text {
  color: #34ac9c;
  font-weight: 600;
}

.form__upload--has-file .form__upload-drag {
  display: none;
}

.form__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.form__upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form__upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.form__upload-icon {
  width: 48px;
  height: 48px;
}

.form__upload-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: center;
}

.form__upload-drag {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: center;
}

.form__upload-hint {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-secondary);
  text-align: center;
}

.form__upload-success-message {
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: var(--line-height-base);
  color: #34ac9c;
  text-align: center;
}

/* Days */
.form__days {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.form__field--days .form__days {
  border-radius: var(--border-radius);
  justify-content: space-between !important;
}

.form__days-border {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.form__day {
  width: 52px;
  height: var(--input-height);
  border: none;
  border-radius: var(--border-radius);
  background-color: transparent;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-accent-blue);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form__day:hover {
  border-color: var(--color-accent-blue);
}

.form__day--active {
  background-color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  color: var(--color-white);
}

/* Divider */
.form__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  margin: var(--spacing-xxl) 0;
}

/* Contact Section */
.contact-section {
  margin-bottom: var(--spacing-xxl);
  width: 100%;
}

.contact-section__title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.contact-section__title--additional {
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

.additional-contact-section {
  margin-top: var(--spacing-xl);
  width: 100%;
}

/* Actions */
.form__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-xxl);
}

#backToStage1 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: transparent;
  color: var(--color-accent-blue);
  border: 1px solid var(--color-accent-blue);
}

/* Button */
.btn {
  min-width: 167px;
  height: var(--button-height);
  padding: var(--button-padding-y) var(--button-padding-x);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  text-align: right;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn--primary {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
}

.btn--primary:hover:not(.btn--disabled) {
  opacity: 0.9;
}

.btn--secondary {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
}

.btn--secondary:hover {
  opacity: 0.9;
}

.btn--disabled {
  background-color: var(--color-button-disabled);
  cursor: not-allowed;
  opacity: 0.5;
}

.btn--loading {
  position: relative;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: vc-spin 0.8s linear infinite;
}

@keyframes vc-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form__error-message {
  position: absolute;
  bottom: -22px;
  right: 0;
  right: auto;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
}

.form__error-message-text {
  color: var(--color-error);
}

/* Error position for radio button errors (all breakpoints) */
.form__field--checkbox .form__radio ~ .form__error-message {
  position: static !important;
  bottom: auto;
  margin-top: 4px;
}

@media (max-width: 1441px) {
  .form__discount-row {
    flex-direction: column;
  }
}

.form__field--address {
  display: none;
}

.ui-autocomplete {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 20;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
}

.ui-menu-item-wrapper.ui-state-active {
  background: rgba(98, 169, 220, 0.12);
  border: none;
}

/* Street autocomplete locked state */
.form__street-wrapper {
  position: relative;
  width: 100%;
}

.form__street-clear {
  position: absolute;
  left: var(--spacing-sm);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.form__street-clear-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.form__street-clear-icon::before,
.form__street-clear-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  background-color: var(--color-accent-blue);
  border-radius: 1px;
}

.form__street-clear-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form__street-clear-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form__street-clear:hover .form__street-clear-icon::before,
.form__street-clear:hover .form__street-clear-icon::after {
  background-color: var(--color-text-primary);
}

.form__input--locked {
  background-color: #f5f5f5;
  padding-left: calc(var(--spacing-md) + 20px + var(--spacing-sm));
  cursor: default;
}

.form__field--facebook-mob {
  display: none;
}

.form__field--time-wrapper-mob {
  display: none;
}

.form__field--coupon-limits-mob {
  display: none;
}

.form__row--working-days {
  flex-wrap: nowrap;
  gap: 35px !important;
}

.activity-days-table .form__select {
  padding-left: calc(var(--spacing-md) + 3px + var(--spacing-sm));
}

.form__row--street-mob,
.form__field--tax-id-mob,
.form__field--time-wrapper-desk {
  display: none;
}

.form__field--delivery-time-text {
  position: relative;
}

.business-template-default .container {
  padding-bottom: 99px;
}

.site-edit-business {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

/* Desktop: Show desktop activity days, hide mobile */
@media (min-width: 769px) {
  .form__field--activity-days-mob {
    display: none;
  }

  .form__field--activity-days-desk {
    display: flex;
  }
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .container {
    padding: var(--spacing-xl) var(--spacing-xxl);
  }

  .header,
  .title-section,
  .form {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  /* .form__field--half {
        width: calc(50% - var(--spacing-xl) / 2);
        flex: 0 0 calc(50% - var(--spacing-xl) / 2);
        max-width: calc(50% - var(--spacing-xl) / 2);
    } */

  .form__field--full {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 912px) {
  .form__field--tax-id-desk,
  .form__row--street-desk {
    display: none;
  }

  .form__row--whatsapp-business-website {
    width: 100%;
    flex-direction: column-reverse;
  }

  .form__row--whatsapp-business-website .form__field--half {
    width: 100%;
    max-width: 413px;
    flex: 0 0 0 !important;
  }

  .form__field--tax-id-mob,
  .form__row--street-mob {
    width: 100%;
    display: flex !important;
    width: 100% !important;

    margin-bottom: 32px;
  }

  .form__row--street-mob {
    gap: 30px !important;
  }

  .form__field--half.form__field--street {
    max-width: 50% !important;
  }

  .form__field--half.form__field--house-number {
    max-width: 21% !important;
  }

  .form__row--working-days,
  .form__row--multiple-single {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-title: 36px;
    --font-size-xxl: 32px;
    --font-size-xl: 24px;
    --font-size-lg: 18px;
  }

  .title-section {
    margin-bottom: 40px;
  }

  .form__field--half {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .container {
    padding: var(--spacing-md);
  }

  .header__logo {
    width: 100px;
    height: auto;
  }

  .title-section__step {
    font-size: 21px;
    margin-bottom: 10px !important;
  }

  .title-section__heading {
    font-size: 16px;
  }

  .contact-section__title {
    font-size: 21px;
  }

  .form__row {
    gap: 15px;
    margin-bottom: 32px;
  }

  .form__label {
    margin-bottom: var(--spacing-sm);
  }

  .form__row--linkedin-tiktok,
  .form__field--whatsapp-business,
  .form__row.form__row--checkbox,
  .form__row--business-name-trade,
  .form__field--delivery-time-text,
  .form__field--facebook-desk,
  .form__field--days-range,
  .form__field--coupon-type,
  .form__row--coupon-limits-numbers,
  .form__row--city {
    /* display: none; */
  }

  /* Show mobile activity days, hide desktop */
  .form__field--activity-days-mob {
    display: block;
  }

  .form__field--activity-days-desk {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .activity-days-table__header-cell--day {
    width: 15%;
  }

  .activity-days-table__header-cell--from {
    width: 25%;
  }

  .activity-days-table__header-cell--to {
    width: 25%;
  }

  .activity-days-table__header-cell--delete {
    width: 35%;
  }

  .activity-days-table__select-wrapper:first-child,
  .activity-days-table__select-wrapper:nth-child(2),
  .activity-days-table__select-wrapper:last-child {
    width: auto;
    flex: 1;
  }

  .activity-days-table__body {
    width: 100% !important;
  }

  .activity-days-table__table {
    width: 100% !important;
  }

  .activity-days-table__add-row-inputs {
    gap: 6px;
  }

  .activity-days-table {
    width: 100% !important;
  }

  .form__row--business-phone {
    flex-direction: column-reverse;
  }

  .form__row--business-name {
    flex-direction: column;
    align-items: start;
  }

  .form__row--logo-business-image {
    flex-direction: column;
  }

  .form__field--address {
    display: flex;
    max-width: 100% !important;
  }

  .form__row--delivery-time {
    flex-direction: row !important;
  }

  .form__field--facebook-mob {
    display: flex;
  }

  .form__field--description {
    width: 100% !important;
    max-width: 100% !important;
  }

  .form__field--description .form__textarea-wrapper,
  .form__field--description .form__textarea-wrapper textarea {
    height: 115px !important;
    max-height: 115px !important;
  }

  .form__field--time-wrapper-desk {
    display: none;
  }

  .form__field--time-wrapper-mob {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .form__days-border {
    display: none;
  }

  .form__field--days .form__days {
    gap: 10px;
    justify-content: start !important;
    align-items: start !important;
  }

  .form__day--active {
    background: var(--color-accent-blue) !important;
    color: #fff;
  }

  .form__day {
    max-width: 78px !important;
    border: 1px solid var(--color-border);
    background: #fff;
  }

  .form__divider {
    margin-top: 15px;
    margin-bottom: 37px;
  }

  .form__row--working-days {
    flex-wrap: wrap;
  }

  /* Contact section */
  .contact-section {
    margin-bottom: 0 !important;
  }

  .contact-section .contact-section__title {
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-section
    .form__row--contact-person-name.form__row--contact-person-name-mob {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-section
    .form__row--contact-person-name.form__row--contact-person-name-mob
    .form__field--half {
    flex: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .form__row--sms-verification {
    margin-bottom: 0 !important;
  }

  .form__actions {
    margin-top: 0;
  }

  .form__field--multiple-single-type {
    width: 100% !important;
  }

  .form__field--checkbox .form__label {
    /* justify-content: space-between; */
    width: 100%;
    flex-direction: row-reverse;
  }

  .form__field--multiple-single-type .form__field--checkbox .form__label {
    justify-content: space-between;
  }

  .form__field--radio {
    width: fit-content;
  }

  .form__field--checkbox {
    width: 100%;
  }

  .form__field--coupon-limits-container
    .form__field
    .form__field--coupon-limits-item {
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  .form__field--coupon-limits-item-content {
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
  }

  .form__field--coupon-limits-container
    .form__field
    .form__field--coupon-limits-item.form__field--coupon-limits-item-with-tooltip {
    flex-direction: row-reverse !important;
  }

  .form__field--coupon-limits-item-content-mob {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
  }

  .form__tooltip {
    left: -2px;
    right: auto;
    bottom: -94px;
    display: block;
    max-width: 272px;
    font-size: 14px;
  }

  .form__tooltip p {
    font-weight: 500;
    line-height: 17px;
    text-align: right;
    text-wrap: auto;
    letter-spacing: -0.794048px;
  }

  .form__tooltip::after {
    left: 34px;
    right: auto;
  }

  .form__field--checkbox .form__radio ~ .form__error-message {
    position: static !important;
    bottom: auto;
    margin-top: 4px;
  }

  /* stage 2 */
  .form__field--description {
    flex: auto;
  }

  .form__row--multiple-single,
  .form__row--multiple-coupon {
    flex-direction: column;
  }

  .form__row--multiple-coupon {
    gap: 35px;
  }

  .form__row--discount-type-coupon-type {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
  }

  .form__field--coupon-limits-desk {
    display: none;
  }

  .form__field--coupon-limits-mob {
    display: flex;
  }

  .form__field--activity-days-desk {
    max-width: 100% !important;
  }

  .form__row--coupon-limits-numbers {
    flex-direction: row !important;
    flex-wrap: nowrap;
  }

  .form__row--street-mob {
    gap: 25px !important;
  }

  .form__field--delivery-time-text .form__field--radio .form__field--checkbox {
    max-width: 50px !important;
  }

  .btn-big {
    padding: 10px 0 10px 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-title: 28px;
    --font-size-xxl: 24px;
    --font-size-xl: 21px;
  }

  .header {
    gap: 30px;
    margin-bottom: 40px;
  }

  .header__logo {
    width: 55px;
    height: 55px;
  }

  .header__logo:last-child {
    width: 65px;
    height: 50px;
  }

  .title-section {
    margin-bottom: 20px;
  }

  .container {
    padding: var(--spacing-md);
  }

  .business-template-default .container {
    padding: 16px 0 0 0;
  }

  .form__field--days {
    width: 100% !important;
    max-width: 100% !important;
  }

  .form__field--days .form__days {
    gap: 8px;
  }

  .form__day {
    flex: 0 0 calc(33.333% - var(--spacing-sm) * 2 / 3);
  }

  .form__field--description,
  .form__field--time {
    flex: auto;
  }

  .form__row {
    flex-direction: column;
    /* margin-bottom: 25px; */
  }

  .form__field--multiple-single-type-date {
    width: 100% !important;
    max-width: 100% !important;
  }

  .form__date-inputs {
    width: 100% !important;
    justify-content: space-between;
  }

  .form__actions {
    gap: 11px;
  }

  .form__actions .btn {
    width: 50% !important;
  }

  .form-stage--1 .form__actions .btn {
    width: 100% !important;
  }

  .form-stage--1 .form__field--checkbox .form__label {
    flex-direction: row !important;
  }

  .form-stage--2 .form__actions .btn {
    padding: 9px 0px;
  }

  .form-stage--2 .form__field--checkbox .form__label {
    font-size: 16px !important;
  }

  .form__field--coupon-limits-item-content span {
    font-size: 16px !important;
    text-wrap: nowrap;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    justify-content: center;
  }

  .activity-days-table__row {
    /*gap: 66px;*/
  }

  .activity-days-table .form__select {
    width: 100%;
    padding: 8px 8px 8px 30px;
  }

  .btn-big {
    padding: 12px 60px !important;
  }

  .form__row--coupon-limits-numbers .form__field--half,
  .form__date-input-wrapper {
    width: 162px !important;
    max-width: 162px !important;
  }

  .form__label {
    font-size: 14px;
  }

  /* .form__field--radio {
        width: 100%;
    } */

  .btn--add-day {
    width: 50px;
  }

  .business-edit {
    padding: 20px !important;
  }

  .business-edit .form__actions button {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .business-edit .activity-days-table__select-wrapper:first-child,
  .business-edit .activity-days-table__select-wrapper {
    width: 100% !important;
  }

  .business-edit .activity-days-table__select-wrapper .form__select-arrow {
    width: 11px;
  }

  .business-edit .activity-days-table .form__select {
    padding: 4px 4px 4px 21px;
  }

  .business-edit .form__field--half.form__field--house-number {
    max-width: 30% !important;
  }
  .business-edit .form__field--half.form__field--street {
    max-width: 35% !important;
  }
}

/* Form Stages */
.form-stage {
  width: 100%;
  max-width: var(--form-max-width);
  margin: 0 auto;
}

.form-stage .form__field--coupon-type {
  margin-bottom: 0 !important;
}

.form-stage--hidden {
  display: none;
}

/* SMS Verification Modal */
.sms-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.sms-modal.sms-modal--active {
  display: flex;
}

.sms-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #62a9dc50;
  z-index: 1;
}

.sms-modal__container {
  position: relative;
  width: 494px;
  height: 423px;
  background: #ffffff;
  border-radius: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 52px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sms-modal__header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.sms-modal__title {
  font-size: 21px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  margin: 0;
}

.sms-modal__close {
  background: #e2eff9;
  border: none;
  cursor: pointer;
  padding: 11.5px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: end;
  justify-content: end;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  position: absolute;
  top: 16.5px;
  right: 16px;
}

.sms-modal__close:hover {
  opacity: 0.7;
}

.sms-modal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sms-modal__label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: right;
}

.sms-modal__code-inputs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.sms-modal__code-input {
  width: 60px;
  height: 40px;
  border: 1px solid #90d5ee;
  border-radius: 8px;
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  text-align: center;
  color: var(--color-black);
  transition: border-color 0.3s ease;
}

.sms-modal__code-input:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}

.sms-modal__code-input.sms-modal__code-input--error {
  border-color: var(--color-error);
}

.sms-modal__message {
  max-width: 278px;
  margin: 0 auto 32px;
  min-height: 40px;
  text-align: center;
}

.sms-modal__message-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: rgba(39, 36, 93, 0.7);
  text-align: center;
  display: block;
}

.sms-modal__message-text.sms-modal__message-text--error {
  color: var(--color-error);
}

.sms-modal__resend {
  margin-bottom: 24px;
  text-align: center;
}

.sms-modal__resend-link {
  background: none;
  border: none;
  color: var(--color-accent-blue);
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}

.sms-modal__resend-link:hover:not(:disabled) {
  opacity: 0.7;
}

.sms-modal__resend-link:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.sms-modal__footer {
  display: flex;
  justify-content: center;
}

.sms-modal__submit-btn {
  width: 100%;
  height: 48px;
  background-color: var(--color-accent-blue);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.sms-modal__submit-btn:hover {
  opacity: 0.9;
}

/* Success Notification */
.sms-success {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  align-items: center;
  gap: 16px;
  width: 494px;
  min-height: 105px;
  font-size: 21px;
}

.sms-success.sms-success--active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sms-success__text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  text-align: right;
}

.sms-success__close {
  background: #e2eff9;
  border: none;
  cursor: pointer;
  padding: 11.5px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: end;
  justify-content: end;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  position: absolute;
  top: 16.5px;
  right: 16px;
}

.sms-success__close:hover {
  opacity: 0.7;
}

#couponTypeDescriptionCounter {
  text-align: left;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .sms-modal__container {
    width: calc(100% - 32px);
    max-width: 494px;
    height: auto;
  }

  .form__row--terms-of-use .form__label {
    flex-direction: row;
    align-items: start;
  }

  span,
  p {
    font-size: 14px !important;
  }

  .form__error-message-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sms-modal__container {
    padding: 20px 20px 32px 20px;
  }

  .sms-modal__code-inputs {
    gap: 4px;
    justify-content: space-between;
  }

  .sms-modal__code-input {
    width: 48px;
    height: 30px;
    font-size: 16px;
  }

  .btn--secondary {
    font-size: 18px;
    padding: 9px 10px;
    text-align: center;
  }

  .form__row--street-mob {
    gap: 0 !important;
    flex-direction: row !important;
    justify-content: space-between;
  }

  .form__field--radio {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 374px) {
  .form__row {
    flex-direction: column !important;
  }

  .form__row--street-mob {
    flex-direction: column !important;
    align-items: start;
  }

  .form__field--half.form__field--house-number,
  .form__field--half.form__field--street {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.site-footer {
  margin-top: 80px;
}

.business-template-default .site-footer,
.business-template-default #colophon {
  display: none;
}

.business-template-default .title-section__step {
  margin-bottom: 40px !important;
}

.business-template-default section .section_container {
  padding: 40px 40px !important;
}

@media only screen and (max-width: 768px) {
  .business-template-default section .section_container {
    padding: 30px 20px !important;
  }
  .business-template-default .title-section__step {
    margin-bottom: 20px !important;
  }
}

.form__label-required {
  color: var(--color-error);
}

.btn-big {
  padding: 12px 106px;
}

.flex-start {
  justify-content: flex-start;
}

/* ============================================
   Login Page Styles
   ============================================ */

/* Login Page Layout */
.login-page {
  position: relative;
  width: 100%;
}

/* Background Image */
.login-page__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/login-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}

/* Heading */
.login-page__heading {
  text-align: center;
  margin-bottom: 40px;
}

.login-page__title {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-text-primary);
}

/* Login Card */
.login-page__card {
  width: 100%;
  max-width: 414px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 auto;
}

/* Error Message */
.login-page__error {
  background-color: rgba(255, 0, 0, 0.08);
  border: 1px solid var(--color-error);
  border-radius: var(--border-radius);
  color: var(--color-error);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
  text-align: center;
}

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
}

.login-form__field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.login-form__field .form__label {
  margin-bottom: 16px;
}

/* Submit Button */
.login-form__submit {
  width: 100%;
  height: var(--button-height);
  margin-bottom: 30px;
  font-size: var(--font-size-lg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
}

/* Links */
.login-form__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login-form__link-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.login-form__link-text {
  font-family: var(--font-family);
  font-size: 21px;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
}

.login-form__link {
  font-family: var(--font-family);
  font-size: 21px;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-link);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.login-form__link:hover {
  opacity: 0.8;
}

.login-form__link--forgot {
  color: var(--color-text-link);
}

.container:has(.login-page) {
  justify-content: space-between;
  height: 100dvh;
}

.container:has(.coupon-approve-page) {
  justify-content: space-between;
  height: 100dvh;
}

.container:has(.coupon-approve-page) .header {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  body:has(.login-page),
  html:has(.login-page) {
    overflow: hidden;
    height: 100vh;
  }

  body:has(.coupon-approve-page),
  html:has(.coupon-approve-page) {
    overflow: hidden;
    height: 100vh;
  }

  .login-page {
    justify-content: center;
    overflow: hidden;
  }

  .login-page__heading {
    margin-bottom: 30px;
  }

  .login-page__title {
    font-size: 24px;
  }

  .login-page__card {
    max-width: 100%;
    padding: 30px 20px;
  }

  .login-page__bg {
    background-position: center;
    background-size: contain;
    background-image: url("../assets/images/login-bg-mob.png");
    background-position-y: 130px;
  }
}

@media (max-width: 480px) {
  .login-form__field .form__label {
    margin-bottom: 12px;
  }

  .login-form__link-text {
    font-size: 18px !important;
  }

  .login-form__link {
    font-size: 18px !important;
  }

  .login-form__submit {
    margin-bottom: 20px;
  }

  .login-page__title {
    font-size: 21px !important;
  }

  .login-page__card {
    padding: 20px;
    background-color: #fff;
    border-radius: 7px;
  }

  .login-form__links {
    align-items: center;
    gap: 12px;
  }
}

/* ============================================
   Business Dashboard Additional Styles
   ============================================ */

/* Empty coupons state */
.coupons_empty {
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  margin-top: 20px;
}

.coupons_empty_text {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ============================================
   My Account Page Styles
   ============================================ */

.my-account-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Status Banner */
.my-account-status {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.my-account-status--pending {
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid #ffc107;
}

.my-account-status--approved {
  background-color: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
}

.my-account-status--declined {
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
}

.my-account-status__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.my-account-status__label {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.my-account-status__value {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.my-account-status--pending .my-account-status__value {
  color: #856404;
}

.my-account-status--approved .my-account-status__value {
  color: #155724;
}

.my-account-status--declined .my-account-status__value {
  color: #721c24;
}

.my-account-status__reason {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.my-account-status__help {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--color-text-link);
  margin: 0;
}

/* Current Images */
.my-account-current-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid var(--color-border);
}

.my-account-current-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-account-current-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.my-account-current-images .my-account-current-image {
  margin-bottom: 0;
}

/* Form Message */
.form__current-images:empty {
  display: none;
}

.my-account-form__message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
}

.my-account-form__message--success {
  background-color: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  color: #155724;
}

.my-account-form__message--error {
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #721c24;
}

/* Links Section */
.my-account-links {
  margin-top: 30px;
  text-align: center;
}

/* Disabled Form Styles */
.my-account-form input:disabled,
.my-account-form select:disabled,
.my-account-form textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .my-account-page {
    padding: 15px;
  }

  .my-account-status__content {
    flex-direction: column;
    gap: 5px;
  }

  .my-account-current-image {
    width: 80px;
    height: 80px;
  }
}

.text-left {
  text-align: left;
}

/* Make new_info_block_button work as link */
.new_info_block .new_info_block_button {
  display: inline-block !important;
  text-decoration: none !important;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.new_info_block .new_info_block_button:hover {
  opacity: 0.9;
}

/* Business Edit Page Styles */
.business-edit-header {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.business-edit-header__title {
  margin: 0;
  color: #27245d;
  font-size: clamp(21px, 3vw, 48px);
  font-weight: 500;
}

.business-edit-header__button {
  background-color: #62a9dc;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: background-color 0.2s;
  margin-bottom: 8px;
}

.business-edit-info-block {
  padding-bottom: 24px;
}

.business-edit-info-block__card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px;
  gap: 20px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.business-edit-info-block__content {
  flex: 1;
}

.business-edit-info-block__title {
  margin: 0 0 8px 0;
  color: #27245d;
  font-size: clamp(16px, 2.5vw, 21px);
  font-weight: 500;
}

.business-edit-info-block__category {
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #27245d;
  font-weight: 400;
}

.business-edit-info-block__icon {
  background-color: #e0f0fa;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0;
}

.business-edit-info-block__icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.business-edit {
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 40px;
  max-width: 100%;
}

.business-edit .form__title {
  margin-bottom: 40px;
  color: #27245d;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 500;
}

.business-edit .my-account-status {
  margin-bottom: 20px;
}

.business-edit .form__error-message {
  display: none;
}

.business-edit .form__current-images {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.business-edit .form__current-images:empty {
  display: none;
}

/* .business-edit .form__current-images img {
    max-width: 200px;
    height: auto;
} */

.business-edit .form__actions p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.business-edit .form__field--half {
  width: 100%;
  flex: 0 0 100%;
  max-width: 364px;
}

.business-edit .form__row--street {
  width: 100%;
  max-width: 364px;
  flex-wrap: nowrap;
}

.business-edit .form__row--street .form__field--half {
  width: auto;
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
}

.business-edit .form__field--activity-days-desk {
  max-width: 364px;
  width: 100%;
  flex: 0 0 364px;
}

.business-edit .form__field--description {
  max-width: 364px;
}

.business-edit .activity-days-table {
  max-width: 364px;
  width: 100%;
}

.business-edit .activity-days-table__table {
  width: 100%;
}

.business-edit .activity-days-table__table thead {
  width: 100%;
}

.business-edit .activity-days-table__select-wrapper {
  width: 88px;
}

.business-edit .activity-days-table__select-wrapper:first-child {
  width: 68px;
}

.business-edit .form__actions {
  margin-top: 56px;
  justify-content: start;
}

.business-edit .form__actions button {
  padding: 10px 16px;
  box-sizing: border-box;
  min-width: 127px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-edit-account-actions {
  padding: 40px;
  display: flex;
  flex-direction: row;
  gap: 21px;
  background: linear-gradient(
    180deg,
    rgba(98, 169, 220, 0.0015) -16%,
    rgba(98, 169, 220, 0) -44%,
    #ffffff 11%,
    #ffffff 75%
  );
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.business-edit-account-actions__item {
  flex: 1 1 0;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: start;
  font-size: clamp(18px, 2.5vw, 21px);
  font-weight: 500;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  background: none;
}

.business-edit-account-actions__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.business-edit-account-actions__item--logout {
  border-color: #fff0e2;
  color: #27245d;
  max-width: 374px;
  width: 100%;
}

.business-edit-account-actions__item--delete {
  border-color: #ffecf6;
  color: #27245d;
}

.business-edit-account-actions__item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Coupons list cards */
.coupons_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 24px;
}

.coupons_list .coupons_list_item {
  background: #ffffff;
  border: 2px solid var(--color-bg-primary);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 374px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.coupons_list .coupons_list_item_image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 273px;
}

.coupons_list .coupons_list_item_image img {
  display: block;
  width: 100%;
  height: 100%;
}

.coupons_list .coupons_list_item_image .status {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  border-radius: 4px;
  font-family: Fredoka-Medium, sans-serif;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.coupon-card-remove {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ce3889;
  cursor: pointer;
}

.coupon-card-remove img {
  display: block;
  width: 24px !important;
  height: 24px !important;
}

.coupon-card-edit {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #62a9dc;
  cursor: pointer;
}

.coupon-card-edit img {
  display: block;
  width: 24px !important;
  height: 24px !important;
}

.coupons_list_item_content {
  width: 100%;
  padding-top: 16px;
}

.coupons_list
  .coupons_list_item
  .coupons_list_item_main_content
  .coupons_list_item_content
  .product_name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupons_list
  .coupons_list_item
  .coupons_list_item_main_content
  .coupons_list_item_content
  .product_description {
  max-width: 326px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupons_list .coupons_list_item_footer {
  padding: 16px 24px;
}

/* Footer counters in coupons card */
.coupons_list .coupons_list_item .coupons_list_item_footer .about_product {
  display: flex;
  gap: 24px;
}

.coupons_list
  .coupons_list_item
  .coupons_list_item_footer
  .about_product
  .about_product_item {
  position: relative;
  display: flex;
  align-items: center;
}

.coupons_list
  .coupons_list_item
  .coupons_list_item_footer
  .about_product
  .about_product_item
  .about_product_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupons_list
  .coupons_list_item
  .coupons_list_item_footer
  .about_product
  .about_product_item
  .about_product_item_text {
  position: absolute;
  top: 0px;
  left: 8px;
  right: auto;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 7px;
  background-color: #ffffff;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 100%;
  color: #29265b;
}

.activity-days-table__row-cell.activity-days-table__row-cell--handle {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 915px) {
  .coupons_list {
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .coupons_list .coupons_list_item {
    max-width: 100% !important;
  }

  .coupons_list .coupons_list_item_footer {
    padding: 12px 18px;
  }
}

@media screen and (max-width: 768px) {
  .coupons_list
    .coupons_list_item
    .coupons_list_item_footer
    .about_product
    .about_product_item
    .about_product_item_text {
    left: 18px;
  }
}

@media (max-width: 480px) {
  .activity-days-table__row {
    gap: 6px;
  }
  .activity-days-table__row-cell {
    width: auto;
    flex: 1;
  }
  .activity-days-table__row-cell--delete {
    width: 50px;
    max-width: 50px;
  }

  .activity-days-table__delete-btn {
    gap: 2px;
  }

  .activity-days-table__delete-btn span {
    font-size: 13px !important;
  }

  .activity-days-table__delete-icon {
    width: 13px;
    height: 13px;
  }

  .activity-days-table__table thead tr {
    gap: 6px;
  }

  .activity-days-table__header-cell {
    width: auto;
    flex: 1;
  }

  .activity-days-table__header-cell--delete {
    width: 50px;
    max-width: 50px;
  }
}

@media (max-width: 430px) {
  .coupons_list .coupons_list_item .coupons_list_item_footer .about_product {
    gap: 4px;
  }
}

.status_active {
  background-color: #34ac9c !important;
}

.status_pending {
  background-color: #eb841c !important;
}

.status_not_active {
  background-color: #bfbfbf !important;
}

.coupon-approve-page {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.coupon-approve-container {
  width: 100%;
  max-width: 600px;
}

.coupon-approve-card {
  background: #ffffff;
  border-radius: 7px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.coupon-approve-card:has(.coupon-approve-title--after-action) {
  background: none;
}

.coupon-approve-title {
  color: #27245d;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.coupon-approve-title--after-action {
  text-align: start;
}

.coupon-approve-description {
  color: #000000;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  font-weight: 400;
  padding-bottom: 20px;
}

.coupon-approve-code-label {
  color: #000000;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  padding-bottom: 10px;
}

.coupon-approve-code-box {
  background: #ffffff;
  border: 1px solid #90d5ee;
  border-radius: 15px;
  padding: 10px 13.5px;
  text-align: center;
  font-size: 43px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 2px;
  font-family: "Arial", sans-serif;
  margin-bottom: 20px;
}

.coupon-approve-actions {
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  justify-content: center;
}

.coupon-approve-button {
  padding: 12px 32px;
  height: 40px;
  width: 100%;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.2s;
}

.coupon-approve-button:hover {
  opacity: 0.9;
}

.coupon-approve-button--approve {
  background: #62a9dc;
  border: 2px solid #62a9dc;
  color: #ffffff;
}

.coupon-approve-button--decline {
  background: #ffffff;
  color: #62a9dc;
  border: 2px solid #62a9dc;
}

.coupon-approve-button--back {
  background: #62a9dc;
  color: #ffffff;
}

.coupon-approve-message {
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.coupon-approve-message--success {
  background: #d4edda;
  color: #155724;
}

.coupon-approve-message--error {
  background: #f8d7da;
  color: #721c24;
}
