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);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--giftly-dark);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

a {
  color: inherit;
}

.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;
}

.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);
}

.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;
}

.user-menu-panel a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.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: #20a86b;
}

.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 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,
.special-offers-section,
.how-section,
.social-section,
.site-footer {
  padding-right: 32px;
  padding-left: 32px;
}

.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;
}

.special-offers-page {
  max-width: 980px;
  padding-bottom: 36px;
}

.special-offers-page-section {
  margin-top: 0;
  padding-bottom: 82px;
}

.special-offers-page-grid {
  grid-template-columns: repeat(3, minmax(0, 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-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;
}

.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;
}

.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;
}

.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 p {
  margin: 12px 0 0;
  color: #6e717c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.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: 34px;
  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: 58px;
  height: auto;
  margin-bottom: 10px;
}

.register-modal-header span {
  display: block;
  color: var(--giftly-red);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.register-modal-header h2 {
  margin: 18px 0 10px;
  color: #24262d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.05em;
}

.register-modal-header p {
  margin: 0 auto 24px;
  color: #6f7380;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.register-form {
  display: grid;
  gap: 14px;
}

.register-form label {
  display: grid;
  gap: 8px;
  color: #383b44;
  font-size: 13px;
  font-weight: 800;
}

.register-form input {
  min-height: 50px;
  padding: 0 16px;
  color: #2f323b;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 14px;
  font: inherit;
  font-weight: 600;
  outline: none;
  box-shadow: 0 10px 24px rgba(37, 39, 51, .06);
  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 4px rgba(255, 91, 85, .12), 0 10px 24px rgba(37, 39, 51, .08);
}

.register-form .primary-action {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.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-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.business-register-steps span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: #777b86;
  background: #fff;
  border: 1px solid var(--giftly-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.business-register-steps span.is-active {
  color: #fff;
  background: var(--giftly-red);
  border-color: var(--giftly-red);
  box-shadow: 0 12px 24px rgba(255, 91, 85, .2);
}

.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(2, 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-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-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: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.isletme-list-header h2 {
  margin: 6px 0 0;
  color: #292c3a;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.isletme-search-form {
  display: flex;
  gap: 10px;
}

.isletme-search-form input {
  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;
}

.isletme-search-form input:focus {
  border-color: rgba(255, 91, 85, .75);
  box-shadow: 0 0 0 4px rgba(255, 91, 85, .12);
}

.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-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-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::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  right: auto;
  z-index: 20;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 48px));
  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;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.isletme-inline-help.is-hovered::after,
.isletme-inline-help.is-open::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.isletme-inline-help.is-open {
  color: transparent;
}

.isletme-inline-help.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
}

.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: 70;
  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);
}

.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;
}

.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: 100%;
  max-width: 560px;
  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: 90;
  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-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-product-campaign-delete-button:hover,
.isletme-product-campaign-delete-button:focus-visible,
.isletme-campaign-delete-button:hover,
.isletme-campaign-delete-button:focus-visible {
  color: #fff;
  background: var(--giftly-red);
  outline: none;
}

.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 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;
}

.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;
  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 0 2px;
  color: #777b86;
  background: #fff;
  border: 1px solid var(--giftly-border);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 39, 51, .08);
}

.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;
}

.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);
  }

  .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 {
    align-items: stretch;
    flex-direction: column;
  }

  .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-search-form {
    flex-direction: column;
  }

  .isletme-search-form input {
    width: 100%;
  }

  .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-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;
  }

}
