+*html {
  font-size: 14px;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  --giftly-red: #ff5b55;
  --giftly-dark: #20232b;
  --giftly-muted: #6f7380;
  --giftly-border: #ececf2;
  --giftly-lavender: #eeeaff;
  --giftly-special-day-campaign-bg: #ff5b55;
  --giftly-special-day-campaign-shadow: rgba(255, 91, 85, .28);
  --giftly-product-add-bg: #0f766e;
  --giftly-product-add-shadow: rgba(15, 118, 110, .26);
  --giftly-gift-card-bg: #6b5ce7;
  --giftly-gift-card-shadow: rgba(107, 92, 231, .28);
  --giftly-gift-card-bg-soft: #f6f4ff;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-y: scroll;
  color: var(--giftly-dark);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

a {
  color: inherit;
}

.giftly-brand-accent {
  color: var(--giftly-red);
}

.page-shell {
  min-height: 100vh;
  padding: 10px;
}

.giftly-panel {
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
  background: #fbfbfd;
  border: 1px solid #dedcf0;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(37, 39, 51, .1);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 58px;
  padding: 0 28px;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--giftly-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--giftly-red);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.04em;
}

.brand img {
  width: 158px;
  height: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a {
  color: #8a8790;
  text-decoration: none;
}

.main-nav .active {
  color: var(--giftly-red);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mobile-menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: var(--giftly-red);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 91, 85, .22);
  cursor: pointer;
  overflow: hidden;
}

.user-avatar.has-logo {
  background: #fff;
  overflow: hidden;
}

.user-avatar-initials,
.user-avatar-logo {
  grid-area: 1 / 1;
}

.user-avatar-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.mobile-menu-icon {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.business-link {
  white-space: nowrap;
}

.login-button,
.primary-action,
.special-day-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.login-button {
  min-width: 104px;
  min-height: 38px;
  color: #fff;
  background: var(--giftly-red);
  box-shadow: 0 10px 20px rgba(255, 91, 85, .22);
}

.login-menu-wrap {
  position: relative;
}

.login-menu-trigger {
  min-width: 132px;
  padding: 0 14px;
  border: 0;
  cursor: pointer;
}

.login-button-caret {
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

.login-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  display: none;
  width: 230px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(255, 91, 85, .16);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(32, 35, 43, .16);
}

.login-menu-wrap:hover .login-menu-panel,
.login-menu-wrap:focus-within .login-menu-panel,
.login-menu-wrap.is-open .login-menu-panel {
  display: grid;
  gap: 6px;
}

.login-menu-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--giftly-dark);
  text-decoration: none;
  border-radius: 12px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.login-menu-option:hover,
.login-menu-option:focus-visible {
  color: var(--giftly-red);
  background: rgba(255, 91, 85, .08);
  transform: translateY(-1px);
}

.login-menu-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--giftly-red);
  background: rgba(255, 91, 85, .12);
  border-radius: 11px;
}

.login-menu-option-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.login-menu-option span:last-child {
  font-size: 13px;
  font-weight: 800;
}

.user-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: var(--giftly-red);
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 91, 85, .22);
  cursor: pointer;
}

.user-menu-wrap {
  position: relative;
}

.user-menu-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: max(100%, 180px);
  height: 10px;
}

.user-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 180px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--giftly-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(32, 35, 43, .16);
}

.user-menu-wrap:hover .user-menu-panel,
.user-menu-wrap:focus-within .user-menu-panel {
  display: block;
}

.user-menu-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #24262d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.user-menu-panel a {
  display: block;
  color: var(--giftly-red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none; /* remove underline by default */
}

/* Make the first link (Profil Bilgilerim) appear as dark/black */
.user-menu-panel a.profile-link {
  color: #24262d;
}

/* Increase vertical spacing between the two links */
.user-menu-panel a + a {
  margin-top: 8px;
}

/* Disable underline on hover for both links */
.user-menu-panel a:hover {
  text-decoration: none;
}

.profile-page {
  padding: 36px 20px 56px;
  background:
    radial-gradient(circle at top left, rgba(255, 91, 85, .08), transparent 28%),
    linear-gradient(180deg, #fff7fb 0%, #fafafe 100%);
}

.profile-page-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.profile-page-header {
  margin-bottom: 26px;
}

.profile-page-header h1 {
  margin: 0 0 10px;
  color: #1f2330;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.profile-page-header p {
  max-width: 720px;
  margin: 0;
  color: var(--giftly-muted);
  font-size: 15px;
  line-height: 1.65;
}

.profile-eyebrow,
.profile-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  color: #6f63dc;
  background: #edeaff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.profile-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.profile-card {
  padding: 26px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(222, 220, 240, .95);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(37, 39, 51, .08);
}

.profile-card-head {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.profile-card-head > div:first-child {
  flex: 1 1 0;
  min-width: 0;
}

.profile-avatar-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.profile-avatar-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #e0ddf7;
  background: #f7f6ff;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-btn:hover,
.profile-avatar-btn:focus-visible {
  border-color: #7c6ef7;
  box-shadow: 0 0 0 3px rgba(124,110,247,.18);
  outline: none;
}

.profile-avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-avatar-hint {
  font-size: 11px;
  color: var(--giftly-muted);
  text-align: center;
  white-space: nowrap;
}

/* Profil resim yükleme modal */
.profil-resim-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profil-resim-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,28,50,.42);
  cursor: pointer;
}

.profil-resim-modal-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(37,39,51,.18);
  width: min(480px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px 28px 20px;
}

.profil-resim-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--giftly-muted);
  padding: 4px 8px;
}

.profil-resim-dropzone {
  border: 2px dashed #c9c4f0;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #faf9ff;
  transition: border-color .18s, background .18s;
  cursor: default;
  margin: 16px 0;
  position: relative;
}

.profil-resim-dropzone.is-drag-over {
  border-color: #7c6ef7;
  background: #f0eeff;
}

.profil-resim-upload-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0ddf7;
  cursor: default;
}

.profil-resim-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profil-resim-upload-preview img.is-clickable {
  cursor: zoom-in;
}

.profil-resim-file-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.profil-resim-file-field input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.profil-resim-file-label {
  background: #ede9ff;
  color: #5f57d2;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}

.profil-resim-file-label:hover {
  background: #ddd6ff;
}

.profil-resim-file-hint {
  font-size: 12px;
  color: var(--giftly-muted);
}

.profil-resim-dropzone-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(124,110,247,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #5f57d2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
}

.profil-resim-dropzone.is-drag-over .profil-resim-dropzone-overlay {
  opacity: 1;
}

.profil-resim-viewer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10,8,30,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.profil-resim-viewer img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
}

.profile-card-head h2 {
  margin: 14px 0 8px;
  color: #1f2330;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.profile-card-head p {
  margin: 0;
  color: var(--giftly-muted);
  font-size: 14px;
  line-height: 1.6;
}

.profile-card-tag-alt {
  color: #5f57d2;
  background: #f2efff;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.profile-field-full {
  grid-column: 1 / -1;
}

.profile-field label {
  color: #2b3040;
  font-size: 14px;
  font-weight: 800;
}

.profile-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: #1f2330;
  background: #fff;
  border: 1px solid #e5e1f2;
  border-radius: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.profile-input::placeholder {
  color: #9a9fb0;
}

.profile-input:focus {
  border-color: #b8aff8;
  box-shadow: 0 0 0 4px rgba(111, 99, 220, .10);
}

.profile-field-error,
.profile-validation-summary {
  color: #c62828;
  font-size: 12px;
  font-weight: 700;
}

.profile-validation-summary {
  margin-bottom: 14px;
}

.profile-field-error {
  margin-top: -2px;
}

select.profile-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8a83d7 50%), linear-gradient(135deg, #8a83d7 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.profile-checks {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.profile-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2b3040;
  font-size: 13px;
  font-weight: 800;
}

.profile-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--giftly-red);
}

.profile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.profile-actions .primary-action,
.profile-actions .secondary-action {
  min-width: 170px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
}

.profile-actions .primary-action {
  margin-left: auto;
  background: linear-gradient(135deg, var(--giftly-red), #ff776f);
  box-shadow: 0 16px 28px rgba(255, 91, 85, .22);
}

.profile-actions .secondary-action {
  color: #4a4f63;
  background: #fff;
  border: 1px solid #e1def0;
}

.profile-actions-main {
  justify-content: flex-end;
}

.profile-actions-detail {
  justify-content: space-between;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.profile-card-main,
.profile-card-detail {
  width: 100%;
}

.profile-card + .profile-card {
  margin-top: 0;
}

.profile-interests-section {
  margin-top: 4px;
}

.profile-interests-title {
  margin: 0 0 14px;
  color: #1f2330;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.profile-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.profile-category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 116px;
  padding: 14px;
  color: #fff;
  text-align: left;
  background: #444 center / cover no-repeat;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.profile-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .54) 100%);
}

.profile-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.profile-category-card.is-selected {
  border-color: #217346;
  box-shadow: 0 0 0 3px rgba(33, 115, 70, .22), 0 12px 26px rgba(0, 0, 0, .18);
  transform: translateY(-2px) scale(1.01);
}

.profile-category-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #217346;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.profile-category-name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.profile-form .profile-field-full {
  margin-bottom: 16px;
}

@media (max-width: 1100px) {
  .profile-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .profile-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .profile-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .profile-page {
    padding: 22px 14px 36px;
  }

  .profile-card {
    padding: 20px;
    border-radius: 22px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-actions .primary-action,
  .profile-actions .secondary-action {
    width: 100%;
    min-width: 0;
  }
}

.giftly-toast-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 44px));
  padding: 16px 18px;
  color: #fff;
  background: #24262d;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 20px 44px rgba(32, 35, 43, .24);
  cursor: pointer;
  transform: translateX(calc(100% + 32px));
  animation: giftlyToastIn .35s ease forwards;
}

.giftly-toast-panel.is-hiding {
  animation: giftlyToastOut .35s ease forwards;
}

.giftly-toast-success {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 20px 44px rgba(34, 197, 94, .28);
}

.giftly-toast-error {
  background: var(--giftly-red);
}

.birthday-celebration {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  isolation: isolate;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .82), rgba(255, 255, 255, .12) 42%, transparent 70%);
  animation: birthdayLayerOut .8s ease 5.8s forwards;
}

.birthday-card {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100vw - 42px));
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 91, 85, .24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, .18), transparent 32%),
    #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(32, 35, 43, .28);
  transform: scale(.72) rotate(-5deg);
  opacity: 0;
  animation: birthdayCardPop .9s cubic-bezier(.2, 1.5, .35, 1) .18s forwards, birthdayCardFloat 2s ease-in-out 1.2s infinite;
}

.birthday-explosion {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: 1px;
  height: 1px;
  overflow: visible;
}

.birthday-explosion span {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background: hsl(var(--hue), 92%, 58%);
  border-radius: 999px;
  box-shadow: 0 0 18px currentColor;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0) scale(.2);
  animation: birthdayExplosion 1.15s cubic-bezier(.16, 1, .3, 1) var(--delay) 2;
}

.birthday-burst {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #ff5b55, #ffbd4a);
  border-radius: 999px;
  font-size: 42px;
  box-shadow: 0 18px 38px rgba(255, 91, 85, .32);
  animation: birthdayBurstPulse .7s ease-in-out infinite alternate;
}

.birthday-card h2 {
  margin: 0;
  color: #24262d;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
  animation: birthdayTextGlow 1s ease-in-out infinite alternate;
}

.birthday-card p {
  max-width: 390px;
  margin: 18px auto 0;
  color: #5d606b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.birthday-confetti {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.birthday-confetti span {
  position: absolute;
  top: -12vh;
  left: var(--x);
  width: var(--size);
  height: var(--height);
  background: hsl(var(--hue), 90%, 58%);
  border-radius: 4px;
  opacity: .95;
  transform: rotate(var(--rotate));
  will-change: top, transform;
  animation: confettiFall var(--duration) linear var(--delay) infinite;
}

.birthday-confetti span:nth-child(3n) {
  border-radius: 999px;
}

.birthday-confetti span:nth-child(4n) {
  width: 10px;
  height: 10px;
}

@keyframes sgSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes giftlyToastIn {
  to {
    transform: translateX(0);
  }
}

@keyframes birthdayLayerOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes birthdayCardPop {
  70% {
    transform: scale(1.05) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes birthdayCardFloat {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes birthdayBurstPulse {
  to {
    transform: scale(1.1) rotate(8deg);
  }
}

@keyframes birthdayTextGlow {
  to {
    color: var(--giftly-red);
    text-shadow: 0 10px 30px rgba(255, 91, 85, .28);
  }
}

@keyframes confettiFall {
  to {
    top: 112vh;
    transform: translateX(var(--drift)) rotate(720deg);
  }
}

@keyframes giftlyToastOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100% + 32px));
  }
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 430px) 1fr;
  gap: 48px;
  align-items: center;
  padding: 66px 32px 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #5651a8;
  background: var(--giftly-lavender);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero-content h1 {
  max-width: 410px;
  margin: 0;
  color: #24262d;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.06em;
}

.hero-content h1 span {
  color: var(--giftly-red);
}

.hero-content p {
  max-width: 410px;
  margin: 26px 0 34px;
  color: #5d606b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action {
  min-width: 184px;
  color: #fff;
  background: var(--giftly-special-day-campaign-bg);
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px var(--giftly-special-day-campaign-shadow);
}

.special-day-action {
  min-width: 198px;
  color: #fff;
  background: #4f46e5;
  box-shadow: 0 14px 28px rgba(79, 70, 229, .24);
}

.secondary-action {
  min-width: 200px;
  color: #4f4fa6;
  background: #fff;
  border: 2px solid #5a56ad;
  cursor: pointer;
}

.special-day-campaign-action {
  background: var(--giftly-special-day-campaign-bg);
  box-shadow: 0 14px 28px var(--giftly-special-day-campaign-shadow);
}

.product-add-action {
  color: #fff;
  background: var(--giftly-product-add-bg);
  border-color: var(--giftly-product-add-bg);
  box-shadow: 0 14px 28px var(--giftly-product-add-shadow);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.gift-card-back {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(100%, 560px);
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 50px rgba(29, 44, 67, .22);
  transform: rotate(2deg);
}

.gift-card-back img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1),
    filter .8s ease;
}

.gift-card-back img.is-changing {
  opacity: 0;
}

.gift-card-back[data-transition="zoom"] img.is-changing {
  transform: scale(1.06);
}

.gift-card-back[data-transition="slide-left"] img.is-changing {
  transform: translateX(-18px) scale(1.02);
}

.gift-card-back[data-transition="slide-right"] img.is-changing {
  transform: translateX(18px) scale(1.02);
}

.gift-card-back[data-transition="soft-blur"] img.is-changing {
  filter: blur(8px);
  transform: scale(1.03);
}

.plate {
  position: absolute;
  display: grid;
  place-items: center;
  color: #d6d6dc;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, .2), inset 0 -12px 22px rgba(0, 0, 0, .08);
  z-index: 3;
}

.plate-large {
  top: 88px;
  right: 140px;
  width: 158px;
  height: 158px;
  font-size: 58px;
}

.plate-small {
  top: 46px;
  right: 124px;
  width: 90px;
  height: 90px;
  font-size: 34px;
}

.categories-section,
.upcoming-special-days-section,
.bonus-panel-section,
.special-offers-section,
.how-section,
.social-section,
.site-footer {
  padding-right: 32px;
  padding-left: 32px;
}

.bonus-panel-section {
  margin-top: 18px;
}

.bonus-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(320px, .95fr);
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #d8d8dd;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(37, 39, 51, .08);
}

.bonus-panel-art img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.bonus-panel-copy {
  display: grid;
  gap: 8px;
  color: #30333c;
  font-size: 16px;
  line-height: 1.5;
}

.bonus-panel-copy p {
  margin: 0;
}

.bonus-panel-copy strong {
  color: #ff5b55;
  font-weight: 800;
}

.bonus-panel-side {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.bonus-panel-stat {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.bonus-panel-stat img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bonus-panel-stat p {
  margin: 0;
  color: #30333c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.bonus-panel-stat strong {
  color: #30333c;
  font-weight: 800;
}

.bonus-panel-stat span {
  color: var(--giftly-red);
  font-weight: 900;
}

.bonus-panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  background: var(--giftly-red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(255, 91, 85, .24);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.bonus-panel-button:hover {
  color: #fff;
  filter: brightness(.98);
  box-shadow: 0 18px 28px rgba(255, 91, 85, .28);
  transform: translateY(-1px);
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.social-section h2,
.site-footer h2 {
  margin: 0 0 12px;
  color: #383b44;
  font-size: 13px;
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: #6e717d;
  font-size: 13px;
  font-weight: 600;
}

.upcoming-special-days-section .section-heading h2 {
  margin-bottom: 0;
}

.upcoming-special-days-section .section-heading,
.special-offers-section .section-heading {
  text-align: left;
}

.upcoming-special-days-section .section-heading h2,
.special-offers-section .section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.isletme-status-badge.is-active {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 10px 18px rgba(34, 197, 94, .22);
}

.isletme-status-badge.is-passive {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 10px 18px rgba(239, 68, 68, .22);
}

.section-heading-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #ebe6ff;
  border-radius: 999px;
  font-size: 17px;
  box-shadow: 0 10px 22px rgba(79, 70, 229, .14);
}

.special-offers-section {
  margin-top: 18px;
}

@media (max-width: 1199.98px) {
  .bonus-panel {
    grid-template-columns: auto 1fr;
  }

  .bonus-panel-side {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .bonus-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bonus-panel-side {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .bonus-panel-stat {
    justify-items: center;
  }

  .bonus-panel-stat p {
    text-align: left;
  }

  .bonus-panel-button {
    width: 100%;
  }
}

.special-offers-page {
  max-width: 1320px;
  padding-bottom: 36px;
}

.special-offers-page-section {
  margin-top: 0;
  padding-bottom: 82px;
}

.special-offers-page-grid {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.category-card {
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 132px;
  padding: 20px;
  background-color: #30333c;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(0, 0, 0, .55);
  border-radius: 16px;
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .24), 0 16px 36px rgba(37, 39, 51, .08);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-card:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .18), 0 22px 42px rgba(37, 39, 51, .16);
  transform: translateY(-4px) scale(1.02);
}

.category-card h3,
.step-card h3 {
  margin: 0;
  color: #30333c;
  font-size: 13px;
  font-weight: 700;
}

.category-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .95), 0 1px 3px rgba(0, 0, 0, .95);
}

.upcoming-special-days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.upcoming-special-day-card {
  display: grid;
  gap: 4px;
  align-items: start;
  justify-items: center;
  min-height: 78px;
  padding: 8px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #f0f0f3;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(37, 39, 51, .08);
}

.upcoming-special-day-card span,
.upcoming-special-day-card img {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  background: #ebe6ff;
  border-radius: 999px;
}

.upcoming-special-day-card span {
  font-size: 16px;
}

.upcoming-special-day-card img {
  padding: 8px;
  object-fit: contain;
}

.upcoming-special-day-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.upcoming-special-day-card h3 {
  margin: 0;
  color: #30333c;
  font-size: 13px;
  font-weight: 800;
}

.upcoming-special-day-card small {
  margin: 0;
  color: #6e717d;
  font-size: 12px;
  font-weight: 800;
}

.upcoming-special-day-card strong {
  margin: 0;
  color: var(--giftly-red);
  font-size: 13px;
  font-weight: 800;
}

.upcoming-special-day-card em {
  margin: 0;
  color: #6e717d;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.upcoming-special-day-card em .special-day-reminder-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  color: #fff;
  background: var(--giftly-red);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .16), 0 8px 16px rgba(255, 91, 85, .28);
  font-size: 13px;
  vertical-align: middle;
}

.upcoming-special-days-empty {
  margin-top: 30px;
  padding: 18px;
  color: #6e717d;
  text-align: center;
  background: #fff;
  border: 1px dashed #dedcf0;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}

.special-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.special-offer-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 148px;
  overflow: hidden;
  padding: 18px;
  color: #343747;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 196, .62), transparent 36%),
    radial-gradient(circle at bottom left, rgba(207, 213, 255, .72), transparent 38%),
    linear-gradient(135deg, #fff7f3 0%, #f3f0ff 52%, #eef8ff 100%);
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(115, 104, 160, .14);
}

.special-offer-page-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 340px;
  padding: 20px 20px 18px;
  color: var(--offer-ink, #fff);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .22) 0 8%, transparent 9%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, .18) 0 9%, transparent 10%),
    radial-gradient(circle at 82% 92%, rgba(255, 255, 255, .12) 0 14%, transparent 15%),
    linear-gradient(135deg, var(--offer-base, #f4d73f) 0%, var(--offer-base-2, #fff0a8) 100%);
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  box-shadow: 0 22px 46px var(--offer-shadow, rgba(0, 0, 0, .16));
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.special-offer-page-card:hover,
.special-offer-page-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px var(--offer-shadow, rgba(0, 0, 0, .2));
}

.special-offer-page-card::before {
  content: "";
  position: absolute;
  inset: auto -118px -126px auto;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.special-offer-page-card::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -72px;
  width: 212px;
  height: 280px;
  background: rgba(255, 255, 255, .14);
  border-radius: 0 0 190px 190px;
}

.special-offer-brandmark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  color: var(--offer-brand, rgba(255, 255, 255, .86));
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  text-transform: lowercase;
  opacity: .95;
}

.special-offer-page-card .special-offer-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 110px;
}

.special-offer-page-card .special-offer-content small {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: lowercase;
}

.special-offer-page-card .special-offer-content h3 {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.07em;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.special-offer-page-card .special-offer-content p {
  max-width: 90%;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.special-offer-page-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.special-offer-page-footer strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  color: #6f5200;
  background: rgba(255, 255, 255, .9);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(17, 20, 27, .12);
  font-size: 15px;
  font-weight: 900;
  text-shadow: none;
}

.special-offer-page-footer span {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.special-offer-page-card .special-offer-page-footer strong,
.special-offer-page-card .special-offer-page-footer span,
.special-offer-page-card .special-offer-content h3,
.special-offer-page-card .special-offer-content p,
.special-offer-page-card .special-offer-content small {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .85);
}

.special-offer-page-card .special-offer-page-footer strong {
  text-shadow: none;
}

.special-offer-card::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 88px;
  height: 88px;
  background: rgba(255, 174, 151, .34);
  border-radius: 999px;
}

.special-offer-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 14px;
  transform: rotate(10deg);
}

.special-offer-content {
  position: relative;
  z-index: 1;
}

.special-offer-card small {
  display: block;
  color: #77708b;
  font-size: 12px;
  font-weight: 800;
}

.special-offer-card h3 {
  margin: 8px 0 0;
  color: #292c3a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.special-offer-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 36px;
  margin-top: 18px;
  padding: 8px 14px;
  color: #e74f49;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 91, 85, .18);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 146, 124, .22);
}

.special-offers-empty {
  margin-top: 18px;
  padding: 18px;
  color: #6e717d;
  text-align: center;
  background: #fff;
  border: 1px dashed #dedcf0;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}

.how-section {
  margin-top: 96px;
  padding-top: 82px;
  padding-bottom: 104px;
  background: #f4f4f6;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 74px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  height: 1px;
  background: #dddddf;
}

.special-days-steps {
  width: 100%;
  max-width: none;
  margin: 20px 0 12px;
  gap: clamp(18px, 4vw, 52px);
}

.special-days-steps::before {
  top: 40px;
}

.send-gift-steps {
  width: 100%;
  max-width: none;
  margin: 20px 0 12px;
  gap: clamp(12px, 3vw, 40px);
  grid-template-columns: repeat(4, 1fr);
}

.send-gift-steps-section {
  position: relative;
  z-index: 0;
  padding: 0 32px 60px;
}

.send-gift-steps::before {
  top: 40px;
}

.send-gift-steps .step-card span {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  overflow: visible;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(37, 39, 51, .16);
}

.send-gift-steps .step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  overflow: hidden;
  display: block;
}

.send-gift-steps .step-card strong {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--giftly-red);
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: 13px;
  z-index: 2;
}

/* ── SendGift Adım 1 Paneli ─────────────────────────────── */
.send-gift-step-panel {
  padding: 0 32px 40px;
}

/* Adım 2 – kategori seçim grid'i */
.send-gift-category-grid {
  margin-top: 8px;
}

.send-gift-category-card {
  position: relative;
  overflow: hidden;
  border: 2.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.send-gift-category-card.is-selected {
  border-color: #217346;
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .18), 0 0 0 3px rgba(33, 115, 70, .22), 0 12px 26px rgba(0, 0, 0, .18);
  transform: translateY(-3px) scale(1.02);
}

.send-gift-category-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: #217346;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.step-panel-inner {
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(37, 39, 51, .07);
}

.step-panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.step-panel-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.step-panel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(37, 39, 51, .16);
}

.step-panel-img-wrap strong {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--giftly-red);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  z-index: 2;
}

.step-panel-header h2 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  margin: 0 0 4px;
}

.step-panel-header p {
  font-size: 14px;
  color: #6e717c;
  margin: 0;
  max-width: 600px;
}

.step-panel-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step-panel-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-panel-field label {
  font-size: 13px;
  font-weight: 700;
  color: #252733;
}

.step-panel-select,
.step-panel-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dddde0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color .18s;
}

.step-panel-select:focus,
.step-panel-input:focus {
  border-color: var(--giftly-red);
  background: #fff;
}

.step-panel-or {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
}

.step-panel-or span {
  padding: 6px 14px;
  background: #f2f2f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #9a9caa;
  white-space: nowrap;
}

/* ── Send Gift – Başlat Butonu ───────────────────────────── */
.send-gift-start-wrap {
  display: flex;
  justify-content: center;
  padding: 0 32px 52px;
}

.send-gift-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--giftly-red) 0%, #e0454a 100%);
  border: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(255, 91, 85, .34);
  transition: transform .18s ease, box-shadow .18s ease;
}

.send-gift-start-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px rgba(255, 91, 85, .42);
}

/* ── Send Gift – Wizard Modal ────────────────────────────── */
.sg-wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sg-wizard-modal.is-open {
  display: flex;
}

.sg-wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 28, .6);
  backdrop-filter: blur(8px);
}

.sg-wizard-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1000px, 100%);
  max-height: calc(100vh - 40px);
  background: linear-gradient(180deg, #fff 0%, #fbfbff 100%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(20, 22, 31, .32);
  overflow: hidden;
}

/* Progress bar */
.sg-wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 36px 20px;
  border-bottom: 1px solid #ededf0;
  background: #fff;
}

.sg-wizard-progress-line {
  flex: 1;
  height: 2px;
  background: #e0e0e5;
  border-radius: 2px;
  transition: background .3s;
}

.sg-wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #b0b3bf;
  transition: color .2s;
  white-space: nowrap;
}

.sg-wizard-step-dot.is-active,
.sg-wizard-step-dot.is-done {
  color: #252733;
}

.sg-wizard-step-img-wrap {
  position: relative;
  width: 52px;
  height: 52px;
}

.sg-wizard-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  border: 3px solid #e8e8ec;
  filter: grayscale(1) opacity(.5);
  transition: filter .25s, border-color .25s;
}

.sg-wizard-step-dot.is-active .sg-wizard-step-img-wrap img,
.sg-wizard-step-dot.is-done .sg-wizard-step-img-wrap img {
  filter: none;
  border-color: var(--giftly-red);
}

.sg-wizard-step-img-wrap strong {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #ccc;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 10px;
  z-index: 2;
  transition: background .25s;
}

.sg-wizard-step-dot.is-active .sg-wizard-step-img-wrap strong,
.sg-wizard-step-dot.is-done .sg-wizard-step-img-wrap strong {
  background: var(--giftly-red);
}

.sg-wizard-step-dot.is-done .sg-wizard-step-img-wrap strong::before {
  content: "✓";
}

/* Body */
.sg-wizard-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px 24px;
  overscroll-behavior: contain;
}

.sg-wizard-step-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  margin: 0 0 6px;
  color: #252733;
}

.sg-wizard-step-desc {
  font-size: 14px;
  color: #6e717c;
  margin: 0 0 24px;
}

.sg-wizard-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  color: #9a9caa;
}

.sg-wizard-placeholder span {
  font-size: 52px;
}

.sg-wizard-placeholder p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* Footer */
.sg-wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 36px;
  border-top: 1px solid #ededf0;
  background: #fff;
}

.sg-wizard-step-counter {
  font-size: 13px;
  color: #9a9caa;
  font-weight: 600;
}

.sg-wizard-btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  border: none;
}

.sg-wizard-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.sg-wizard-btn-back {
  color: #555;
  background: #f0f0f4;
}

.sg-wizard-btn-back:not(:disabled):hover {
  background: #e4e4ea;
}

.sg-wizard-btn-next {
  color: #fff;
  background: var(--giftly-red);
  box-shadow: 0 8px 22px rgba(255, 91, 85, .28);
}

.sg-wizard-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 91, 85, .36);
}

.sg-wizard-close {
  position: absolute;
  top: 16px;
  right: 18px;
}

/* 2. adım kategori grid – wizard içinde daha küçük */
.sg-wizard-body .send-gift-category-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.sg-wizard-body .category-card {
  min-height: 100px;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--giftly-red);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(255, 91, 85, .22);
}

.special-days-steps .step-card span {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  overflow: visible;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 16px 30px rgba(37, 39, 51, .16);
}

.special-days-steps .step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.special-days-steps .step-card strong {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--giftly-red);
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: 13px;
  z-index: 2;
}

.step-card p {
  max-width: 300px;
  margin: 8px auto 0;
  color: #6e717c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.testimonial-card {
  max-width: 520px;
  margin-top: 26px;
  padding: 32px 36px;
  background: #fff;
  border-left: 6px solid var(--giftly-red);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(37, 39, 51, .08);
}

.testimonial-card p {
  margin: 0 0 24px;
  color: #373a43;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-row > span {
  width: 48px;
  height: 48px;
  background: #f0f0f0;
  border-radius: 999px;
}

.user-row strong,
.user-row small,
.site-footer a {
  display: block;
}

.user-row strong {
  color: #3c3f48;
  font-size: 13px;
}

.user-row small {
  color: #7a7d87;
  font-size: 12px;
  font-weight: 600;
}

.brands-block {
  padding-top: 34px;
}

.brands-block h2 {
  margin-bottom: 36px;
  font-size: 14px;
  letter-spacing: .03em;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.brand-grid span {
  height: 44px;
  background: #dddddf;
  border-radius: 7px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e6e6eb;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(150px, .8fr) minmax(150px, .8fr);
  gap: 70px;
  padding-top: 34px;
  padding-bottom: 42px;
}

.site-footer p {
  max-width: 350px;
  margin: 18px 0 0;
  color: #6f727d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.site-footer h2 {
  margin-bottom: 18px;
}

.site-footer a:not(.brand) {
  margin-top: 10px;
  color: #4d5059;
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  border-top: 1px solid #ececf0;
}

.footer-bottom p {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 18px;
  font-size: 22px;
}

.social-icons a {
  text-decoration: none;
}

.content-page {
  max-width: 820px;
  padding: 82px 32px 72px;
}

.business-register-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 34px;
  max-width: 1320px;
  padding-bottom: 42px;
}

.business-register-hero-copy {
  max-width: 760px;
}

.business-register-hero .content-page p,
.business-register-hero-copy p {
  max-width: 760px;
}

.business-register-hero-art {
  justify-self: end;
  width: min(100%, 560px);
}

.business-register-bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.business-register-bonus-main {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.business-register-bonus-main-image {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.business-register-bonus-main-copy {
  display: grid;
  gap: 2px;
  padding: 0;
}

.business-register-bonus-main-copy p,
.business-register-bonus-row p {
  color: #2a2d39;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.business-register-bonus-main-copy strong,
.business-register-bonus-main-copy em,
.business-register-bonus-row strong,
.business-register-bonus-row em {
  font-style: italic;
}

.business-register-bonus-main-copy strong,
.business-register-bonus-row strong {
  font-weight: 900;
}

.business-register-bonus-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.business-register-bonus-row-icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.business-register-bonus-row p strong,
.business-register-bonus-main-copy strong em,
.business-register-bonus-row strong em {
  color: var(--giftly-red);
}

.content-page h1 {
  margin: 0;
  color: #24262d;
  font-size: clamp(1.06rem, 2.4vw, 1.82rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.send-gift-page h1 {
  font-size: clamp(1.06rem, 2.4vw, 1.82rem);
}

.send-gift-page {
  padding-top: 56px;
  padding-bottom: 0;
}

.send-gift-page p {
  margin-bottom: 0;
}

.send-gift-page + .categories-section {
  padding-bottom: 38px;
}

.content-page p {
  max-width: 660px;
  margin: 24px 0 32px;
  color: #5d606b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.business-register-hero .business-register-bonus-list p {
  margin: 0;
}

@media (max-width: 1080px) {
  .business-register-hero {
    grid-template-columns: 1fr;
  }

  .business-register-hero-art {
    justify-self: start;
    width: min(100%, 560px);
  }
}

@media (max-width: 720px) {
  .business-register-hero-art {
    width: min(100%, 100%);
  }

  .business-register-bonus-main {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .business-register-bonus-main-image {
    width: 76px;
    height: 76px;
  }

  .business-register-bonus-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .business-register-bonus-row-icon {
    width: 44px;
    height: 44px;
  }
}

.isletme-business-info-page {
  padding: 40px 32px 18px;
}

.business-update-panels {
  display: grid;
  gap: 18px;
  padding: 0 32px 44px;
}

.business-update-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(222, 220, 240, .9);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(37, 39, 51, .06);
}

.business-update-panel .special-day-modal-header {
  max-width: none;
  margin-bottom: 0;
}

.business-update-panel .special-day-modal-header h2 {
  font-size: clamp(1.08rem, 2.3vw, 1.8rem);
}

.business-update-panel .special-day-modal-header p {
  margin-top: 10px;
}

.isletme-business-info-page + .business-update-panels {
  padding-top: 0;
}

.business-update-panel .special-day-form {
  gap: 10px;
}

.business-update-panel .special-day-form-grid {
  gap: 10px 12px;
}

.business-update-panel .business-register-checks {
  margin-top: 0;
}

.business-update-panel .special-day-modal-actions {
  margin-top: 0;
}

.special-days-page {
  max-width: none;
  padding-top: 48px;
  padding-bottom: 46px;
}

.special-days-page h1 {
  font-size: clamp(1.06rem, 2.4vw, 1.82rem);
  line-height: 1.12;
}

.special-days-page > p {
  margin: 14px 0 20px;
  line-height: 1.55;
}

.special-days-page .special-day-modal-trigger {
  margin-top: 0;
}

.saved-special-days {
  margin-top: 20px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 91, 85, .16), transparent 34%),
    linear-gradient(135deg, #13243b 0%, #1f314a 100%);
  border-radius: 26px;
  box-shadow: 0 24px 54px rgba(19, 36, 59, .18);
}

.saved-special-days-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.saved-special-days-header > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  font-size: 22px;
}

.saved-special-days h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.saved-special-days-header p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.4;
}

.saved-special-days-list {
  display: grid;
  gap: 12px;
}

.saved-special-day-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 26px rgba(9, 17, 30, .18);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.saved-special-day-card:hover,
.saved-special-day-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  outline: none;
}

.saved-special-day-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .12);
  border-radius: 18px;
  font-size: 32px;
}

.saved-special-day-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.saved-special-day-content p,
.saved-special-day-content small {
  display: block;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.saved-special-day-date {
  display: grid;
  justify-items: end;
  gap: 5px;
  color: #d7c08b;
  font-weight: 800;
  white-space: nowrap;
}

.saved-special-day-date strong {
  font-size: 17px;
}

.saved-special-day-date span {
  color: rgba(215, 192, 139, .86);
  font-size: 13px;
}

.saved-special-day-date .special-day-reminder-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  color: #fff;
  background: var(--giftly-red);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .18), 0 8px 18px rgba(255, 91, 85, .32);
  font-size: 14px;
  vertical-align: middle;
}

.saved-special-days-empty {
  padding: 18px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.special-days-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.special-days-pagination a {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.special-days-pagination a:hover,
.special-days-pagination a.is-active {
  background: var(--giftly-red);
  border-color: var(--giftly-red);
}

.content-section {
  margin-top: 0;
}

.business-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 32px 80px;
}

.business-benefits .category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 204px;
  overflow: hidden;
  padding: 18px 18px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .22) 0 10%, transparent 11%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .18) 0 11%, transparent 12%),
    radial-gradient(circle at 82% 90%, rgba(255, 255, 255, .14) 0 14%, transparent 15%),
    linear-gradient(135deg, var(--benefit-base, #f4d73f) 0%, var(--benefit-base-2, #fff0a8) 100%);
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 30px;
  box-shadow: 0 22px 46px var(--benefit-shadow, rgba(0, 0, 0, .16));
  cursor: default;
  transition: transform .22s ease, box-shadow .22s ease;
}

.business-benefits .category-card::before {
  content: "";
  position: absolute;
  inset: auto auto -92px -88px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.business-benefits .category-card::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -32px;
  width: 112px;
  height: 112px;
  background: rgba(255, 255, 255, .12);
  border-radius: 36% 64% 58% 42% / 44% 36% 64% 56%;
  transform: rotate(12deg);
}

.business-benefits .category-card:nth-child(1) {
  --benefit-base: #f3d21c;
  --benefit-base-2: #ffe052;
  --benefit-shadow: rgba(234, 191, 18, .30);
}

.business-benefits .category-card:nth-child(2) {
  --benefit-base: #a7b82c;
  --benefit-base-2: #c4d63c;
  --benefit-shadow: rgba(158, 177, 38, .30);
}

.business-benefits .category-card:nth-child(3) {
  --benefit-base: #df8f1e;
  --benefit-base-2: #f0ac33;
  --benefit-shadow: rgba(205, 126, 24, .30);
}

.business-benefits .category-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.business-benefits .category-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.06em;
  text-align: left;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .9), 0 6px 16px rgba(0, 0, 0, .75);
}

.business-benefits .category-card p {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 12px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-shadow: none;
}

.business-benefits .category-card:hover {
  box-shadow: 0 26px 54px var(--benefit-shadow, rgba(0, 0, 0, .18));
  transform: translateY(-4px) scale(1.01);
}

.login-form {
  display: grid;
  gap: 18px;
  max-width: 420px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #383b44;
  font-size: 13px;
  font-weight: 700;
}

.login-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--giftly-border);
  border-radius: 8px;
  font: inherit;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  width: 100%;
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #7a7d87;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.password-toggle.is-visible {
  color: var(--giftly-red);
}

.register-prompt {
  max-width: 420px;
  margin: 22px 0 0;
  color: #6f7380;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.register-prompt a {
  color: var(--giftly-red);
  font-weight: 800;
  text-decoration: none;
}

.register-prompt a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.register-modal .modal-dialog {
  max-width: 500px;
}

.register-modal .modal-content {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 91, 85, .16), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfbff 100%);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(32, 35, 43, .25);
}

.register-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.register-modal-header {
  text-align: center;
}

.register-modal-header img {
  width: 52px;
  height: auto;
  margin-bottom: 8px;
}

.register-modal-header span {
  display: block;
  color: var(--giftly-red);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.register-modal-header h2 {
  margin: 14px 0 8px;
  color: #24262d;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.05em;
}

.register-modal-header p {
  margin: 0 auto 18px;
  color: #6f7380;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.register-form {
  display: grid;
  gap: 10px;
}

.register-form label {
  display: grid;
  gap: 6px;
  color: #383b44;
  font-size: 12px;
  font-weight: 800;
}

.register-form input {
  min-height: 44px;
  padding: 0 14px;
  color: #2f323b;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 14px;
  font: inherit;
  font-weight: 600;
  outline: none;
  box-shadow: 0 8px 18px rgba(37, 39, 51, .05);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.register-form input:focus {
  border-color: rgba(255, 91, 85, .72);
  box-shadow: 0 0 0 3px rgba(255, 91, 85, .12), 0 8px 18px rgba(37, 39, 51, .06);
}

.register-form .primary-action {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  border: 0;
}

.register-consent-field {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.register-consent-field input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--giftly-red);
  background: initial;
  border-radius: 3px;
  box-shadow: none;
}

.register-consent-field span {
  display: inline;
  color: #383b44;
  font: inherit;
}

.register-consent-field a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.special-day-modal-trigger {
  border: 0;
  cursor: pointer;
}

.business-register-trigger,
.business-register-form .primary-action {
  border: 0;
  cursor: pointer;
}

.business-register-panel-content {
  width: min(720px, 100%);
}

.business-register-panel-scroll {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 3.6vw, 38px);
  scrollbar-gutter: stable;
}

.business-register-title-field {
  grid-column: 1 / -1;
}

.business-register-checks {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.business-register-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #383b44;
  font-size: 13px;
  font-weight: 800;
}

.business-register-checks input {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 auto;
  padding: 0;
  accent-color: var(--giftly-red);
  background: initial;
  border-radius: 3px;
  box-shadow: none;
}

.special-day-form .business-register-checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
}

.special-day-form .business-register-checks label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.business-register-success {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 10px 6px;
  text-align: center;
}

.business-register-success > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: #20a86b;
  border-radius: 999px;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(32, 168, 107, .22);
}

.business-register-success h3 {
  margin: 8px 0 0;
  color: #24262d;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.business-register-success p {
  max-width: 460px;
  margin: 0;
  color: #5d606b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.business-location-field {
  position: relative;
}

.business-location-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-location-info {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  color: #fff;
  background: var(--giftly-red);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(255, 91, 85, .22);
}

.business-location-help {
  position: absolute;
  top: auto;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(320px, 100%);
  padding: 14px;
  color: #383b44;
  background: #fff;
  border: 1px solid var(--giftly-border);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(32, 35, 43, .16);
}

.business-location-help strong {
  font-size: 14px;
  font-weight: 900;
}

.business-location-help span {
  color: #5d606b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.business-location-help .primary-action {
  min-height: 38px;
  border: 0;
  font-size: 12px;
}

.isletme-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 91, 85, .10), transparent 30%),
    #fbfbfd;
}

.isletme-home-page {
  max-width: 920px;
  padding-bottom: 40px;
}

.isletme-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 32px 80px;
}

.isletme-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 32px 80px;
}

.isletme-service-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .78), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 174, 151, .36), transparent 34%),
    linear-gradient(135deg, #fff7f3 0%, #f3f0ff 56%, #eef8ff 100%);
  border: 1px solid rgba(222, 220, 240, .86);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(115, 104, 160, .16);
}

.isletme-service-card::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 134px;
  height: 134px;
  background: rgba(255, 91, 85, .12);
  border-radius: 999px;
}

.isletme-service-card-campaign {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .78), transparent 28%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, .18), transparent 34%),
    linear-gradient(135deg, #f8f5ff 0%, #fff7f3 52%, #eef8ff 100%);
}

.isletme-service-card-giftcard {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .78), transparent 28%),
    radial-gradient(circle at bottom right, rgba(107, 92, 231, .18), transparent 34%),
    linear-gradient(135deg, #fdfcff 0%, var(--giftly-gift-card-bg-soft) 52%, #eefcfe 100%);
}

.isletme-service-icon,
.isletme-service-content,
.isletme-service-card strong,
.isletme-service-card a {
  position: relative;
  z-index: 1;
}

.isletme-service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 18px;
  font-size: 28px;
  box-shadow: 0 14px 28px rgba(37, 39, 51, .08);
}

.isletme-service-content small {
  display: block;
  color: #77708b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.isletme-service-content h2 {
  margin: 10px 0 12px;
  color: #292c3a;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.05em;
}

.isletme-service-content p {
  margin: 0;
  color: #5d606b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.isletme-service-card strong,
.isletme-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 40px;
  margin-top: 24px;
  padding: 9px 16px;
  color: #fff;
  background: var(--giftly-special-day-campaign-bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px var(--giftly-special-day-campaign-shadow);
}

.isletme-service-card .product-add-badge {
  background: var(--giftly-product-add-bg);
  box-shadow: 0 14px 26px var(--giftly-product-add-shadow);
}

.isletme-service-card .special-day-campaign-badge {
  background: var(--giftly-special-day-campaign-bg);
  box-shadow: 0 14px 26px var(--giftly-special-day-campaign-shadow);
}

.isletme-service-card .gift-card-create-badge {
  background: var(--giftly-gift-card-bg);
  box-shadow: 0 14px 26px var(--giftly-gift-card-shadow);
}

.isletme-giftcard-action {
  background: var(--giftly-gift-card-bg);
  box-shadow: 0 14px 28px var(--giftly-gift-card-shadow);
}

.isletme-campaigns-page {
  max-width: 920px;
  padding-bottom: 32px;
}

.isletme-products-page .primary-action {
  background: var(--giftly-product-add-bg);
  box-shadow: 0 10px 20px var(--giftly-product-add-shadow);
}

.isletme-campaigns-list {
  margin: 0 32px 80px;
  padding: 28px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(222, 220, 240, .86);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(115, 104, 160, .12);
}

.isletme-list-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 22px;
}

.isletme-list-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.isletme-list-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.isletme-search-form {
  display: flex;
  gap: 10px;
}

.isletme-search-form input,
.isletme-status-filter {
  width: min(320px, 48vw);
  min-height: 44px;
  padding: 10px 14px;
  color: #292c3a;
  background: #fff;
  border: 1px solid rgba(205, 203, 224, .96);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.isletme-status-filter {
  min-width: 240px;
  width: auto;
  padding-right: 52px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: linear-gradient(180deg, #fff 0%, #fbfafe 100%);
  box-shadow: 0 10px 24px rgba(118, 105, 170, .08);
}

.isletme-search-form input:focus,
.isletme-status-filter:focus {
  border-color: rgba(255, 91, 85, .75);
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .12);
}

.isletme-search-form input:hover,
.isletme-status-filter:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(118, 105, 170, .12);
}

.isletme-status-filter-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.isletme-status-filter-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  color: #ff5b55;
  font-size: 15px;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(-52%);
}

.isletme-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 22px;
}

.isletme-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: #414452;
  font-size: 14px;
}

.isletme-table th,
.isletme-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(222, 220, 240, .72);
  text-align: left;
  vertical-align: middle;
}

.isletme-table th {
  color: #77708b;
  background: #faf8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.isletme-table tbody tr:last-child td {
  border-bottom: 0;
}

.isletme-table-action-cell {
  width: 1%;
  text-align: right;
  white-space: nowrap;
}

.isletme-products-table td strong,
.isletme-products-table td span {
  display: block;
}

.isletme-products-table td strong {
  color: #292c3a;
  font-weight: 900;
}

.isletme-products-table td span {
  margin-top: 4px;
  color: #77708b;
  font-size: 12px;
  font-weight: 700;
}

.isletme-table-action-cell {
  white-space: nowrap;
}

.isletme-campaign-copy-button,
.isletme-campaign-delete-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 0;
  color: #ff5b55;
  background: rgba(255, 91, 85, .08);
  border: 1px solid rgba(255, 91, 85, .18);
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.isletme-campaign-copy-button {
  color: #6b5ce7;
  background: rgba(107, 92, 231, .08);
  border-color: rgba(107, 92, 231, .18);
}

.isletme-campaign-copy-button:hover,
.isletme-campaign-delete-button:hover {
  transform: translateY(-1px);
}

.isletme-campaign-copy-button:hover {
  box-shadow: 0 10px 22px rgba(107, 92, 231, .14);
}

.isletme-campaign-delete-button:hover {
  box-shadow: 0 10px 22px rgba(255, 91, 85, .14);
}

.isletme-campaign-copy-button:focus-visible,
.isletme-campaign-delete-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .14);
}

.isletme-campaign-list-item {
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.isletme-table tbody .isletme-campaign-list-item:hover,
.isletme-table tbody .isletme-campaign-list-item:focus-visible {
  background: #fff8f8;
}

.isletme-table tbody .isletme-product-list-item:hover,
.isletme-table tbody .isletme-product-list-item:focus-visible {
  background: rgba(15, 118, 110, .06);
}

.isletme-mobile-list-card.isletme-campaign-list-item:hover,
.isletme-mobile-list-card.isletme-campaign-list-item:focus-visible {
  box-shadow: 0 18px 40px rgba(115, 104, 160, .18);
  transform: translateY(-2px);
}

.isletme-mobile-list-card.isletme-product-list-item {
  background: linear-gradient(180deg, #fff 0%, rgba(236, 253, 245, .94) 100%);
}

.isletme-mobile-list-card.isletme-product-list-item:hover,
.isletme-mobile-list-card.isletme-product-list-item:focus-visible {
  box-shadow: 0 18px 40px rgba(15, 118, 110, .14);
}

.isletme-mobile-card-list {
  display: none;
}

.isletme-mobile-list-card {
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(115, 104, 160, .12);
}

.isletme-mobile-list-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.isletme-mobile-list-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.isletme-mobile-list-card-header span:first-child {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--giftly-special-day-campaign-bg);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.isletme-product-list-item .isletme-mobile-list-card-header span:first-child {
  color: var(--giftly-product-add-bg);
}

.isletme-mobile-list-card-header h3 {
  margin: 0;
  color: #292c3a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.isletme-mobile-list-card p {
  margin: 10px 0 14px;
  color: #5d606b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.isletme-mobile-list-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.isletme-mobile-list-card-details div {
  min-width: 0;
  padding: 10px;
  background: rgba(250, 248, 255, .92);
  border: 1px solid rgba(222, 220, 240, .56);
  border-radius: 14px;
}

.isletme-mobile-list-card-details dt {
  margin-bottom: 4px;
  color: #77708b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.isletme-mobile-list-card-details dd {
  margin: 0;
  color: #292c3a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.isletme-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #fff;
  background: var(--giftly-special-day-campaign-bg);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.isletme-status-badge.is-passive {
  background: #8a8790;
}

.isletme-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.isletme-pagination a,
.isletme-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.isletme-pagination a {
  color: #fff;
  background: var(--giftly-special-day-campaign-bg);
  text-decoration: none;
  box-shadow: 0 12px 24px var(--giftly-special-day-campaign-shadow);
}

.isletme-pagination a.disabled {
  pointer-events: none;
  opacity: .45;
}

.isletme-pagination span {
  color: #77708b;
  background: #f4f1ff;
}

.isletme-empty-state {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: #5d606b;
  background: #faf8ff;
  border: 1px dashed rgba(181, 176, 211, .86);
  border-radius: 22px;
  text-align: center;
}

.isletme-empty-state strong {
  color: #292c3a;
  font-size: 18px;
}

.isletme-campaign-modal-panel {
  width: min(1080px, 100%);
}

.isletme-product-modal-panel {
  width: min(1120px, 100%);
  padding: 0;
  overflow: hidden;
}

.isletme-product-campaign-modal-panel {
  width: min(840px, 100%);
  padding: 0;
  overflow: hidden;
}

.isletme-product-modal-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: clamp(16px, 2vw, 24px);
  scrollbar-gutter: stable;
}

.isletme-campaign-form .special-day-modal-actions {
  margin-top: 6px;
}

.isletme-campaign-form [hidden] {
  display: none !important;
}

.isletme-campaign-form-status {
  padding: 12px 14px;
  color: #8a2a2a;
  background: rgba(255, 91, 85, .1);
  border: 1px solid rgba(255, 91, 85, .28);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
}

.isletme-campaign-form-status[data-status-type="success"] {
  color: #18643b;
  background: rgba(34, 197, 94, .1);
  border-color: rgba(34, 197, 94, .28);
}

.isletme-campaign-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.isletme-campaign-main-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 18px;
  align-items: start;
}

.isletme-campaign-main-fields {
  grid-template-columns: 1fr;
}

.isletme-product-form-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.isletme-product-form-panel {
  height: 100%;
}

.isletme-product-images-panel {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 16px;
  background: rgba(248, 247, 255, .88);
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 20px;
}

.isletme-product-images-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.isletme-product-images-header h4 {
  margin: 0;
  color: #292c3a;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.isletme-product-images-header span,
.isletme-product-images-header small {
  color: #77708b;
  font-size: 12px;
  font-weight: 800;
}

.isletme-product-image-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.isletme-product-image-slot {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .94);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(31, 29, 43, .07);
  cursor: pointer;
}

.isletme-product-image-slot:disabled {
  cursor: help;
  opacity: .64;
}

.isletme-product-image-slot.is-locked::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 6;
  max-width: 240px;
  padding: 8px 10px;
  color: #fff;
  background: #24262d;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(32, 35, 43, .22);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.isletme-product-image-slot.is-locked:hover::after,
.isletme-product-image-slot.is-locked:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.isletme-product-image-slot img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 15px;
}

.isletme-product-image-slot:not(:disabled):hover,
.isletme-product-image-slot:not(:disabled):focus-visible {
  border-color: rgba(119, 91, 255, .54);
  outline: none;
  box-shadow: 0 14px 28px rgba(119, 91, 255, .18);
}

.isletme-inline-help {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  color: #fff;
  background: #77708b;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  vertical-align: text-top;
  cursor: help;
  position: relative;
  flex: 0 0 auto;
}

.isletme-inline-help:hover,
.isletme-inline-help:focus-visible {
  background: var(--giftly-red);
  outline: none;
}

.isletme-inline-help.is-open {
  color: transparent;
}

.isletme-inline-help.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
}

.giftly-inline-help-panel {
  position: fixed;
  z-index: 2000;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 24px));
  padding: 10px 12px;
  color: #fff;
  background: #24262d;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(32, 35, 43, .24);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  pointer-events: none;
}

.isletme-product-image-delete {
  position: absolute;
  right: -8px;
  bottom: -8px;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--giftly-red);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(255, 91, 85, .28);
}

.isletme-product-image-upload-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.isletme-product-image-upload-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 43, .42);
}

.isletme-product-image-upload-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(640px, calc(100vw - 40px));
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(31, 29, 43, .22);
  overflow: hidden;
  box-sizing: border-box;
}

.isletme-product-image-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border: 2px dashed rgba(119, 91, 255, .35);
  border-radius: 22px;
  transition: border-color .18s, background .18s;
  box-sizing: border-box;
  min-width: 0;
}

.isletme-product-image-dropzone.is-drag-over {
  border-color: #775bff;
  background: rgba(119, 91, 255, .07);
}

.isletme-product-image-dropzone-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.15rem;
  color: #775bff;
  background: rgba(119, 91, 255, .12);
  opacity: 0;
  transition: opacity .15s;
}

.isletme-product-image-dropzone.is-drag-over .isletme-product-image-dropzone-overlay {
  opacity: 1;
}

.isletme-product-image-file-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.isletme-product-image-file-label-text {
  font-size: .85rem;
  color: #7a788a;
  text-align: center;
}

.isletme-product-image-file-field input[type="file"] {
  max-width: 260px;
}

.isletme-product-image-upload-preview {
  display: grid;
  place-items: center;
  justify-self: center;
  width: calc(100% - 32px);
  max-width: 520px;
  padding: 14px;
  overflow: hidden;
  background: rgba(248, 247, 255, .92);
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 20px;
}

.isletme-product-image-upload-preview img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}

.isletme-product-image-upload-preview img.is-clickable {
  cursor: pointer;
}

.isletme-product-image-upload-preview img.is-clickable:hover,
.isletme-product-image-upload-preview img.is-clickable:focus-visible {
  box-shadow: 0 0 0 4px rgba(119, 91, 255, .14);
}

.isletme-product-image-upload-actions {
  padding-right: 28px;
}

.isletme-product-image-upload-actions .primary-action {
  margin-right: 10px;
}

.isletme-product-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 3005;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 29, 43, .78);
  cursor: pointer;
}

.isletme-product-image-viewer img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.isletme-product-image-file-field {
  display: grid;
  gap: 8px;
  color: #292c3a;
  font-size: 13px;
  font-weight: 900;
}

.isletme-product-image-file-field input {
  width: 100%;
}

.isletme-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 6px;
  background: #f4f1ff;
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 999px;
}

.isletme-product-tab {
  flex: 1 1 220px;
  min-height: 42px;
  padding: 9px 16px;
  color: #77708b;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.isletme-product-tab.is-active {
  color: #fff;
  background: var(--giftly-product-add-bg);
  box-shadow: 0 12px 24px var(--giftly-product-add-shadow);
}

.isletme-product-tab:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.isletme-product-campaign-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(236, 253, 245, .86);
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 18px;
}

.isletme-product-campaign-toolbar strong {
  color: #135e58;
  font-size: 14px;
  font-weight: 900;
}

.isletme-product-campaign-entry-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 18px;
  align-items: start;
}

.isletme-product-campaign-main-card {
  min-width: 0;
}

.isletme-product-campaign-main-card .special-day-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.isletme-product-campaign-preview-area {
  min-width: 0;
}

.isletme-product-campaign-list-panel {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(222, 220, 240, .82);
}

.isletme-product-campaign-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.isletme-product-campaign-list-header h4 {
  margin: 0;
  color: #292c3a;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.isletme-product-campaign-list-header span {
  color: #77708b;
  font-size: 12px;
  font-weight: 900;
}

.isletme-product-campaign-list {
  display: grid;
  gap: 10px;
}

.isletme-product-campaign-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 18px;
}

.isletme-product-campaign-table {
  min-width: 720px;
  font-size: 13px;
}

.isletme-product-campaign-table td strong {
  color: #292c3a;
  font-weight: 900;
}

.isletme-product-campaign-table-row {
  cursor: pointer;
}

.isletme-product-campaign-delete-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--giftly-red);
  background: rgba(255, 91, 85, .1);
  border: 1px solid rgba(255, 91, 85, .24);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.isletme-campaign-copy-button,
.isletme-campaign-delete-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--giftly-red);
  background: rgba(255, 91, 85, .1);
  border: 1px solid rgba(255, 91, 85, .24);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.isletme-campaign-copy-button {
  color: #6b5ce7;
  background: rgba(107, 92, 231, .1);
  border-color: rgba(107, 92, 231, .24);
}

.isletme-product-campaign-delete-button:hover,
.isletme-product-campaign-delete-button:focus-visible,
.isletme-campaign-copy-button:hover,
.isletme-campaign-copy-button:focus-visible,
.isletme-campaign-delete-button:hover,
.isletme-campaign-delete-button:focus-visible {
  color: #fff;
  outline: none;
}

.isletme-product-campaign-delete-button:hover,
.isletme-product-campaign-delete-button:focus-visible,
.isletme-campaign-delete-button:hover,
.isletme-campaign-delete-button:focus-visible {
  background: var(--giftly-red);
}

.isletme-campaign-copy-button:hover,
.isletme-campaign-copy-button:focus-visible {
  background: #6b5ce7;
}

.isletme-product-campaign-mobile-list {
  display: none;
}

.isletme-product-campaign-list-item {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(115, 104, 160, .08);
  cursor: pointer;
}

.isletme-product-campaign-list-item header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.isletme-product-campaign-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.isletme-product-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.isletme-product-campaign-list-item dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.isletme-product-campaign-list-item dl div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.isletme-product-campaign-list-item dt {
  color: #77708b;
  font-size: 12px;
  font-weight: 900;
}

.isletme-product-campaign-list-item dd {
  margin: 0;
  color: #292c3a;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.isletme-product-campaign-list-item:hover,
.isletme-product-campaign-list-item:focus-visible {
  border-color: rgba(15, 118, 110, .34);
  box-shadow: 0 14px 30px rgba(15, 118, 110, .12);
}

.isletme-product-campaign-list-item strong {
  min-width: 0;
  color: #292c3a;
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.isletme-product-campaign-list-item small {
  color: #77708b;
  font-size: 12px;
  font-weight: 800;
}

.isletme-campaign-form-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(115, 104, 160, .08);
}

.isletme-campaign-form-panel.isletme-product-campaign-modal-panel {
  padding: 0;
  overflow: hidden;
}

.isletme-campaign-form-panel h3 {
  margin: 0;
  color: #292c3a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.isletme-campaign-details-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(222, 220, 240, .82);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(115, 104, 160, .08);
}

.isletme-campaign-details-panel h3 {
  margin: 0;
  color: #292c3a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.isletme-campaign-copy-modal-panel {
  width: min(620px, calc(100vw - 32px));
  padding: 22px 22px 18px;
  gap: 14px;
}

.isletme-campaign-copy-header h2 {
  font-size: clamp(28px, 4vw, 36px);
}

.isletme-campaign-copy-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.isletme-campaign-copy-fields label {
  display: grid;
  gap: 8px;
  color: #292c3a;
  font-size: 13px;
  font-weight: 900;
}

.isletme-campaign-copy-fields input[type="date"],
.isletme-campaign-copy-fields select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: #292c3a;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 15px;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(37, 39, 51, .06);
  outline: none;
}

.isletme-campaign-copy-fields input[type="date"]:focus,
.isletme-campaign-copy-fields select:focus {
  border-color: rgba(255, 91, 85, .75);
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .12);
}

.isletme-campaign-copy-fields select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6f7380 50%), linear-gradient(135deg, #6f7380 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.isletme-campaign-copy-form-status {
  margin-top: 2px;
}

.isletme-campaign-copy-modal .special-day-modal-actions {
  margin-top: 2px;
}

@media (max-width: 768px) {
  .isletme-campaign-copy-modal-panel {
    width: min(620px, calc(100vw - 20px));
    padding: 18px 18px 16px;
  }

  .isletme-campaign-copy-fields {
    grid-template-columns: 1fr;
  }
}

.isletme-campaign-copy-form-status {
  display: none;
  padding: 12px 14px;
  color: #8b1f1c;
  background: rgba(255, 91, 85, .08);
  border: 1px solid rgba(255, 91, 85, .18);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.isletme-campaign-copy-form-status:not([hidden]) {
  display: block;
}

.special-day-form .isletme-campaign-checkbox-field {
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(37, 39, 51, .06);
}

.special-day-form .isletme-campaign-checkbox-field input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  box-shadow: none;
}

.isletme-campaign-preview-area {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.isletme-campaign-preview-area h3 {
  margin: 0;
  color: #292c3a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.isletme-campaign-preview-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 180px;
  height: auto;
  overflow: hidden;
  padding: 18px 20px;
  color: #fff;
  background:
    radial-gradient(circle at bottom right, rgba(215, 192, 139, .18), transparent 28%),
    linear-gradient(135deg, #3f4746 0%, #363d3d 100%);
  border: 2px solid rgba(215, 192, 139, .48);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(20, 25, 34, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.isletme-campaign-preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
  filter: drop-shadow(0 10px 16px rgba(11, 14, 20, .22));
}

.isletme-campaign-preview-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.isletme-campaign-preview-card strong {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isletme-campaign-preview-card p {
  max-width: 92%;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.isletme-campaign-preview-spot {
  justify-self: start;
  margin-top: 10px;
  padding: 8px 18px;
  color: #112345;
  background: linear-gradient(135deg, #d7c08b 0%, #cba95d 100%);
  border-radius: 14px;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 14px 26px rgba(17, 20, 27, .16);
}

.isletme-campaign-preview-spark {
  position: absolute;
  right: 24px;
  bottom: 28px;
  color: rgba(215, 192, 139, .58);
  font-size: 42px;
  line-height: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

.special-day-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.special-day-modal.is-open {
  display: flex;
  align-items: center;
}

.special-day-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 28, .58);
  backdrop-filter: blur(8px);
}

.special-day-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  padding: clamp(22px, 3.6vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(255, 91, 85, .16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(79, 70, 229, .12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfbff 100%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(20, 22, 31, .32);
}

.isletme-campaign-modal-scroll {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 3.6vw, 38px);
  scrollbar-gutter: stable;
}

.special-day-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #777b86;
  background: #fff;
  border: 1px solid var(--giftly-border);
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 39, 51, .08);
}

.special-day-modal-close::before {
  content: '×';
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  color: currentColor;
  transform: translateY(1px);
}

.special-day-modal-header {
  max-width: 680px;
  margin-bottom: 18px;
}

.special-day-modal-header .brand {
  margin: 0 18px 14px 0;
  vertical-align: middle;
}

.special-day-modal-header .eyebrow {
  margin-bottom: 14px;
  vertical-align: middle;
}

.special-day-modal-header .brand img {
  width: 40px;
}

.special-day-modal-header .brand span {
  font-size: 26px;
}

.special-day-modal-header h2 {
  margin: 0;
  color: #24262d;
  font-size: clamp(1.2rem, 2.4vw, 2.04rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.06em;
}

.special-day-modal-header p {
  margin: 12px 0 0;
  color: #5d606b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.special-day-form {
  display: grid;
  gap: 12px;
}

.popular-special-days {
  overflow: hidden;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 91, 85, .2), transparent 34%),
    linear-gradient(135deg, #26303c 0%, #2e3846 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(32, 35, 43, .16);
}

.popular-special-days-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.popular-special-days-spark {
  font-size: 24px;
  line-height: 1;
}

.popular-special-days h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.popular-special-days-list {
  display: grid;
  grid-auto-columns: minmax(96px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.popular-special-day-card {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 10px 8px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(215, 192, 139, .34);
  border-radius: 17px;
  font: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 24px rgba(11, 14, 20, .16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.popular-special-day-card:hover,
.popular-special-day-card:focus-visible,
.popular-special-day-card.is-selected {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 91, 85, .72);
  box-shadow: 0 14px 28px rgba(11, 14, 20, .22), 0 0 0 3px rgba(255, 91, 85, .16);
  outline: none;
}

.popular-special-day-emoji {
  font-size: 24px;
  line-height: 1;
}

.popular-special-day-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.popular-special-day-card strong {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.popular-special-day-card small {
  margin-top: 3px;
  color: #d7c08b;
  font-size: 10px;
  font-weight: 800;
}

.special-day-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.isletme-select-help-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.isletme-select-help-row select {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.special-day-other-field {
  grid-column: 1 / -1;
}

.special-day-form label {
  display: grid;
  gap: 6px;
  color: #383b44;
  font-size: 13px;
  font-weight: 800;
}

.isletme-field-label-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-width: 0;
}

.special-day-form input,
.special-day-form select,
.special-day-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #2f323b;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 15px;
  font: inherit;
  font-weight: 600;
  outline: none;
  box-shadow: 0 12px 26px rgba(37, 39, 51, .06);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.special-day-form textarea {
  min-height: 68px;
  padding-top: 10px;
  resize: vertical;
}

.special-day-form input:focus,
.special-day-form select:focus,
.special-day-form textarea:focus {
  border-color: rgba(255, 91, 85, .72);
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .12), 0 12px 26px rgba(37, 39, 51, .08);
}

.special-day-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.special-day-modal-actions button {
  border: 0;
  cursor: pointer;
}

.special-day-delete-action {
  color: #fff;
  background: #24262d;
}

@media (max-width: 900px) {
  .site-header,
  .hero-section,
  .social-section,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-header {
    height: auto;
    flex-wrap: wrap;
    padding: 18px 22px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    gap: 26px;
    padding-top: 44px;
  }

  .category-grid,
  .special-offers-grid,
  .steps,
  .brand-grid,
  .special-day-form-grid,
  .isletme-service-grid,
  .isletme-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .upcoming-special-days-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .isletme-list-header {
    align-items: stretch;
    flex-direction: column;
  }

  .isletme-campaign-main-row {
    grid-template-columns: 1fr;
  }

  .isletme-product-campaign-entry-row {
    grid-template-columns: 1fr;
  }

  .isletme-product-campaign-main-card .special-day-form-grid {
    grid-template-columns: 1fr;
  }

  .isletme-product-form-sections {
    grid-template-columns: 1fr;
  }

  .isletme-search-form input {
    width: 100%;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    padding: 0;
  }

  .giftly-panel {
    border-radius: 0;
  }

  .site-header {
    position: relative;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 58px;
    padding: 8px 12px;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .brand img {
    width: 136px;
  }

  .mobile-menu-toggle {
    display: grid;
    flex: 0 0 auto;
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    z-index: 30;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    width: auto;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--giftly-border);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(32, 35, 43, .16);
  }

  .login-menu-wrap {
    order: 2;
  }

  .login-menu-trigger {
    min-width: 0;
    padding: 0 12px;
  }

  .login-menu-panel {
    width: min(280px, calc(100vw - 24px));
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    background: #fbfbfd;
    border-radius: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .giftly-toast-panel {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }

  .special-days-page {
    padding: 28px 14px 34px;
  }

  .special-days-page .special-day-modal-trigger {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .saved-special-days {
    margin-top: 24px;
    padding: 16px 12px;
    border-radius: 24px;
  }

  .saved-special-days-header {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .saved-special-days-header > span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 20px;
  }

  .saved-special-days h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .saved-special-day-card {
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 10px 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .saved-special-day-icon {
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    font-size: 30px;
  }

  .saved-special-day-content {
    min-width: 0;
  }

  .saved-special-day-content h3 {
    font-size: 20px;
    line-height: 1.12;
  }

  .saved-special-day-content p,
  .saved-special-day-content small {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
  }

  .saved-special-day-date {
    grid-column: 2;
    justify-items: start;
    gap: 4px;
    white-space: normal;
  }

  .saved-special-day-date strong {
    font-size: 18px;
    line-height: 1.1;
  }

  .saved-special-day-date span {
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-section,
  .categories-section,
  .upcoming-special-days-section,
  .special-offers-section,
  .how-section,
  .social-section,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .category-grid,
  .upcoming-special-days-grid,
  .steps,
  .brand-grid,
  .footer-main,
  .special-day-form-grid,
  .isletme-service-grid,
  .isletme-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .isletme-service-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .isletme-campaigns-list {
    margin-right: 18px;
    margin-left: 18px;
    padding: 18px;
  }

  .isletme-list-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .isletme-table-wrap {
    display: none;
  }

  .isletme-product-campaign-table-wrap {
    display: none;
  }

  .isletme-product-campaign-mobile-list {
    display: grid;
    gap: 10px;
  }

  .isletme-mobile-card-list {
    display: grid;
    gap: 12px;
  }

  .isletme-list-controls {
    width: 100%;
    justify-content: stretch;
  }

  .isletme-search-form {
    flex-direction: column;
    width: 100%;
  }

  .isletme-search-form input {
    width: 100%;
  }

  .isletme-status-filter {
    width: 100%;
    min-width: 0;
  }

  .isletme-campaign-copy-date-grid {
    grid-template-columns: 1fr;
  }

  .isletme-search-form .secondary-action {
    justify-content: center;
  }

  .isletme-service-card {
    min-height: 280px;
    padding: 22px;
  }

  .isletme-service-content h2 {
    font-size: 21px;
  }

  .special-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .special-offers-page-grid {
    grid-template-columns: 1fr;
  }

  .special-offer-page-card {
    min-height: 280px;
    padding: 16px 14px 14px;
    border-radius: 24px;
  }

  .special-offer-brandmark {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .special-offer-page-card .special-offer-content {
    padding-top: 84px;
  }

  .special-offer-page-card .special-offer-content h3 {
    font-size: clamp(1.55rem, 5vw, 2.1rem);
  }

  .special-offer-page-card .special-offer-content p {
    max-width: 100%;
    font-size: 13px;
  }

  .special-offer-page-footer {
    margin-top: 14px;
  }

  .special-offer-page-footer strong {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 14px;
  }

  .special-offer-page-footer span {
    font-size: 12px;
  }

  .special-offer-card {
    min-height: 172px;
    padding: 16px 14px;
  }

  .special-offer-card h3 {
    font-size: 15px;
  }

  .special-offer-card strong {
    font-size: 16px;
  }

  .special-day-modal {
    padding: 14px;
  }

  .special-day-modal-actions {
    flex-direction: column-reverse;
  }

  .isletme-product-image-upload-actions {
    padding-right: 0;
  }

  .isletme-product-image-upload-actions .primary-action {
    margin-right: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .gift-card-back {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }

}

/* ── Profil Tamamlama Overlay ─────────────────────────── */
#profileOverlay {
  align-items: flex-start;
  justify-content: center;
}

.profile-complete-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.profile-complete-header {
  padding: 2rem 2.5rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.profile-complete-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: .5rem;
}

.profile-complete-header p {
  color: #666;
  font-size: .95rem;
  margin: 0;
}

.profile-complete-body {
  padding: 1.5rem 2.5rem;
  overflow-y: auto;
  flex: 1;
}

.profile-fields-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.profile-field-label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: #444;
}

.profile-input {
  padding: .6rem .85rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  background: #fff;
}

.profile-input:focus {
  border-color: #e5173f;
}

.profile-interests-section {
  margin-top: .5rem;
}

.profile-interests-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.profile-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}

.profile-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid transparent;
  background: #444 center / cover no-repeat;
  min-height: 90px;
  display: flex;
  align-items: flex-end;
  padding: .6rem .75rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-align: left;
}

.profile-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.profile-category-card.is-selected {
  border-color: #217346;
  box-shadow: 0 0 0 3px rgba(33, 115, 70, .3), 0 6px 24px rgba(0, 0, 0, .22);
  transform: translateY(-3px) scale(1.03);
}

.profile-category-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: .4rem;
  right: .5rem;
  width: 22px;
  height: 22px;
  background: #217346;
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
}

.profile-category-name {
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.profile-complete-footer {
  padding: 1.25rem 2.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  border-top: 1px solid #f0f0f0;
}

.profile-save-btn {
  background: #e5173f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .75rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.profile-save-btn:hover {
  background: #c41136;
  transform: translateY(-1px);
}

.profile-skip-btn {
  background: transparent;
  color: #999;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.profile-skip-btn:hover {
  color: #555;
  border-color: #aaa;
}

@media (max-width: 992px) {
  .profile-categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
  .profile-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-complete-body { padding: 1rem; }
  .profile-complete-header { padding: 1.5rem 1rem 1rem; }
  .profile-complete-footer { padding: 1rem; }
}

/* ── Kampanya Detay Sayfası ─────────────────────────────────────── */

.kd-hero-wrapper {
  display: flex;
  justify-content: center;
  padding: 36px 20px 0;
}

.kd-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 420px;
  min-height: 380px;
  padding: 24px 24px 22px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .22) 0 8%, transparent 9%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .18) 0 9%, transparent 10%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, .12) 0 14%, transparent 15%),
    linear-gradient(135deg, var(--kd-base, #8ea12f) 0%, var(--kd-base2, #c4d03e) 100%);
  border: 3px solid rgba(255, 255, 255, .88);
  border-radius: 36px;
  box-shadow: 0 28px 60px var(--kd-shadow, rgba(0, 0, 0, .18));
}

.kd-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.kd-hero-deco--tl {
  top: -72px;
  right: -72px;
  width: 212px;
  height: 280px;
  background: rgba(255, 255, 255, .14);
  border-radius: 0 0 190px 190px;
}

.kd-hero-deco--br {
  right: -118px;
  bottom: -126px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .12);
}

.kd-brandmark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: lowercase;
}

.kd-hero-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kd-firma {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: lowercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}

.kd-title {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.07em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.kd-kisa {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.kd-hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.kd-spot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  color: var(--kd-spot, #3a4a10);
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(17, 20, 27, .14);
  font-size: 15px;
  font-weight: 900;
}

.kd-validity {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

/* ── Detay Bölümü ── */

.kd-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 660px;
  margin: 28px auto 60px;
  padding: 0 20px;
}

.kd-detail-card {
  display: flex;
  gap: 16px;
  padding: 22px 22px 22px 20px;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(115, 104, 160, .10);
}

.kd-detail-card--main {
  align-items: flex-start;
}

.kd-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f4f4f8;
  border-radius: 14px;
  font-size: 22px;
  line-height: 1;
}

.kd-detail-content {
  flex: 1 1 auto;
  min-width: 0;
}

.kd-detail-heading {
  margin: 0 0 10px;
  color: #1a1c2a;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.kd-detail-text {
  margin: 0;
  color: #4a4d60;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  white-space: pre-line;
}

/* ── Info Grid ── */

.kd-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kd-info-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(115, 104, 160, .08);
}

.kd-info-tile--accent {
  border-color: rgba(255, 150, 80, .35);
  background: #fff8f4;
}

.kd-info-tile--gift {
  border-color: rgba(130, 80, 220, .22);
  background: #faf6ff;
}

.kd-info-icon {
  font-size: 22px;
  line-height: 1;
}

.kd-info-label {
  color: #9196ac;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.kd-info-value {
  color: #1a1c2a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

/* ── Firma Strip ── */

.kd-firma-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(115, 104, 160, .08);
}

.kd-firma-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8ea12f, #c4d03e);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  overflow: hidden;
}

.kd-firma-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.kd-firma-name {
  display: block;
  color: #1a1c2a;
  font-size: 15px;
  font-weight: 800;
}

.kd-firma-sub {
  display: block;
  color: #9196ac;
  font-size: 12px;
  font-weight: 600;
}

/* ── CTA ── */

.kd-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.kd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  min-height: 58px;
  padding: 14px 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--kd-base, #8ea12f) 0%, var(--kd-base2, #c4d03e) 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 38px var(--kd-shadow, rgba(100, 120, 0, .28));
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.kd-cta-btn:hover,
.kd-cta-btn:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.06);
  box-shadow: 0 24px 48px var(--kd-shadow, rgba(100, 120, 0, .34));
}

.kd-back-link {
  color: #8a8fa8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s;
}

.kd-back-link:hover {
  color: #3a3d52;
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .kd-hero-card {
    min-height: 320px;
    border-radius: 28px;
  }

  .kd-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .kd-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Kampanya Galeri ── */

.kd-gallery {
  padding: 20px 22px 22px;
  background: #fff;
  border: 1px solid rgba(222, 220, 240, .72);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(115, 104, 160, .10);
}

.kd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(66px, 1fr));
  gap: 10px;
}

.kd-gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  background: #f4f4f8;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.kd-gallery-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
}

.kd-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ── Galeri Modal ── */

.kd-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.kd-modal.kd-modal--open {
  display: flex;
}

.kd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 22, .82);
  backdrop-filter: blur(6px);
}

.kd-modal-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 92vw;
  max-width: 860px;
  padding: 16px;
}

.kd-modal-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
  object-fit: contain;
}

.kd-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background .18s;
}

.kd-modal-close:hover {
  background: rgba(255, 255, 255, .3);
}

.kd-modal-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background .18s;
}

.kd-modal-arrow:hover {
  background: rgba(255, 255, 255, .28);
}

.kd-modal-counter {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .kd-modal-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .kd-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(53px, 1fr));
  }
}
