.mzk-feedback-page {
  --fb-clr-primary: var(--color-primary);
  --fb-clr-primary-hover: var(--color-primary);
  --fb-clr-primary-rgb: 8, 124, 250;
  --fb-clr-text: #0F172A;
  --fb-clr-muted: #64748B;
  --fb-clr-label: #334155;
  --fb-clr-border: #E2E8F0;
  --fb-clr-bg: #FFFFFF;
  --fb-clr-error: #EF4444;
  --fb-clr-success: #10B981;
  --fb-radius: 14px;
}

.mzk-feedback-container {
  padding: 32px 24px 48px;
}

.mzk-feedback-header {
  margin-bottom: 20px;
}

.mzk-feedback-info {
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--fb-clr-border);
  border-radius: var(--fb-radius);
  background: #FAFBFC;
}

.mzk-feedback-info p {
  margin: 0 0 6px;
  color: var(--fb-clr-muted);
  font-size: 14px;
  line-height: 1.5;
}

.mzk-feedback-info p:last-child {
  margin-bottom: 0;
}

.mzk-feedback-info__title {
  margin: 0 0 10px;
  color: var(--fb-clr-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.mzk-feedback-email {
  font-size: 15px;
  font-weight: 600;
}

.mzk-feedback-email a {
  color: var(--fb-clr-primary);
  text-decoration: none;
}

.mzk-feedback-email a:hover {
  text-decoration: underline;
}

.mzk-feedback-title {
  margin: 0 0 12px;
  color: var(--fb-clr-text);
  font-size: 28px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.mzk-feedback-desc {
  margin: 0;
  color: var(--fb-clr-muted);
  font-size: 15px;
  line-height: 1.5;
}

#sendmail {
  display: flex;
  flex-direction: column;
}

.mzk-fgrp {
  margin-bottom: 20px;
}

.mzk-flabel {
  display: block;
  margin-bottom: 8px;
  color: var(--fb-clr-label);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mzk-fctrl {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--fb-clr-border);
  border-radius: var(--fb-radius);
  color: var(--fb-clr-text);
  background: var(--fb-clr-bg);
  font-family: inherit;
  font-size: 15px;
  line-height: 52px;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.mzk-fctrl::placeholder {
  color: #94A3B8;
}

.mzk-fctrl:focus {
  border-color: var(--fb-clr-primary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--fb-clr-primary-rgb), .12);
}

.mzk-fctrl.is-invalid {
  border-color: var(--fb-clr-error);
}

.mzk-fctrl.is-invalid:focus {
  border-color: var(--fb-clr-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.mzk-fctrl--area {
  height: auto;
  min-height: 160px;
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
}

.mzk-fctrl--file {
  padding: 10px 16px;
  line-height: 1.4;
}

.mzk-fctrl-err {
  display: block;
  min-height: 0;
  margin-top: 6px;
  color: var(--fb-clr-error);
  font-size: 12px;
  line-height: 1.4;
}

.mzk-fctrl-err:empty {
  min-height: 0;
}

.mzk-select-wrap {
  position: relative;
}

.mzk-frecip {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.mzk-select-wrap select {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 40px 0 16px;
  border: 1px solid var(--fb-clr-border);
  border-radius: var(--fb-radius);
  color: var(--fb-clr-text);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat right 14px center / 18px,
    var(--fb-clr-bg);
  font-family: inherit;
  font-size: 15px;
  line-height: 52px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mzk-select-wrap select:focus {
  border-color: var(--fb-clr-primary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--fb-clr-primary-rgb), .12);
}

.mzk-select-wrap select.is-invalid {
  border-color: var(--fb-clr-error);
}

.mzk-select-wrap select.is-invalid:focus {
  border-color: var(--fb-clr-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.mzk-select-wrap--enhanced select {
  display: none;
}

.mzk-select-custom {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--fb-clr-border);
  border-radius: var(--fb-radius);
  background: var(--fb-clr-bg);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s ease, background .2s ease;
  box-sizing: border-box;
}

.mzk-select-custom:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.mzk-select-custom.is-open {
  border-color: var(--fb-clr-primary);
  box-shadow: 0 0 0 3px rgba(var(--fb-clr-primary-rgb), .12);
}

.mzk-select-custom:focus {
  border-color: var(--fb-clr-primary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--fb-clr-primary-rgb), .12);
}

.mzk-select-custom.is-invalid {
  border-color: var(--fb-clr-error);
}

.mzk-select-custom__text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  color: #64748B;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mzk-select-custom__text.is-selected {
  color: var(--color-text-primary);
  font-weight: 600;
}

.mzk-select-custom__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #94A3B8;
  transition: transform 200ms ease;
}

.mzk-select-custom.is-open .mzk-select-custom__arrow {
  transform: rotate(180deg);
}

.mzk-select-custom__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 100;
  display: block;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mzk-select-custom.is-open .mzk-select-custom__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mzk-select-custom__opt {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: 10px;
  color: #334155;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.mzk-select-custom__opt:hover,
.mzk-select-custom__opt:focus,
.mzk-select-custom__opt.is-highlighted {
  background: #F1F5F9;
  color: var(--color-primary-text);
  outline: 0;
}

.mzk-select-custom__opt.is-selected {
  background: var(--color-primary-soft);
  color: var(--color-primary-text);
  font-weight: 600;
}

.mzk-select-custom__opt .mzk-select-custom__check {
  display: none;
  flex-shrink: 0;
  color: var(--color-primary-text);
}

.mzk-select-custom__opt.is-selected .mzk-select-custom__check {
  display: block;
}

.mzk-fgrp--capcha {
  padding: 16px 0;
}

.mzk-fgrp--capcha img,
.mzk-fgrp--capcha iframe {
  border-radius: 10px;
}

.mzk-fgrp--submit {
  margin-top: 4px;
  margin-bottom: 0;
}

.mzk-feedback-btn {
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--fb-radius);
  color: #fff;
  background: var(--fb-clr-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.mzk-feedback-btn:hover {
  background: var(--fb-clr-primary-hover);
  transform: translateY(-1px);
}

.mzk-feedback-btn:active {
  transform: translateY(0);
}

.mzk-feedback-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--fb-clr-primary-rgb), .32);
}

.mzk-feedback-btn:disabled,
.mzk-feedback-btn.is-loading {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.mzk-feedback-btn.is-loading svg {
  animation: mzk-fb-spin .8s linear infinite;
}

@keyframes mzk-fb-spin {
  to { transform: rotate(360deg); }
}

.mzk-feedback-toast {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--fb-radius);
  border: 1px solid;
}

.mzk-feedback-toast--success {
  border-color: #D1FAE5;
  background: #F0FDF4;
}

.mzk-feedback-toast--error {
  border-color: #FECACA;
  background: #FEF2F2;
}

.mzk-feedback-toast__icon {
  flex-shrink: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
}

.mzk-feedback-toast--success .mzk-feedback-toast__icon {
  color: var(--fb-clr-success);
  background: #D1FAE5;
}

.mzk-feedback-toast--error .mzk-feedback-toast__icon {
  color: var(--fb-clr-error);
  background: #FECACA;
}

.mzk-feedback-toast__content {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}

.mzk-feedback-toast__content strong {
  display: block;
  color: var(--fb-clr-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.mzk-feedback-toast__content p {
  margin: 4px 0 0;
  color: var(--fb-clr-muted);
  font-size: 13px;
  line-height: 1.5;
}

.mzk-feedback-bottom-sheet {
  display: none;
}

@media (max-width: 599px) {
  .mzk-feedback-container {
    padding: 24px 16px 36px;
  }
  .mzk-feedback-title {
    font-size: 24px;
  }
  .mzk-feedback-btn {
    width: 100%;
    height: 48px;
  }

  .mzk-select-custom__dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    max-height: 60vh;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    border: 0;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, .15);
    transform: translateY(100%);
    overflow-y: auto;
  }

  .mzk-select-custom.is-open .mzk-select-custom__dropdown {
    transform: translateY(0);
  }

  .mzk-feedback-bottom-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(15, 23, 42, .4);
    opacity: 0;
    transition: opacity 200ms ease;
  }

  .mzk-feedback-bottom-sheet.is-visible {
    display: block;
    opacity: 1;
  }

  .mzk-select-custom__opt {
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
  }

  .mzk-select-custom__dropdown::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    margin: 0 auto 8px;
    border-radius: 2px;
    background: #CBD5E1;
  }
}


.mzk-select-custom__check svg { display:block; width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
