* {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #ffd6e7 0, transparent 32%),
    radial-gradient(circle at bottom right, #ffe4ef 0, transparent 28%),
    linear-gradient(135deg, #fff7fb, #fff0f6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 1050px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: center;
}

.hero {
  color: #73485b;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  color: #ec4899;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(236, 72, 153, .12);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 22px 0 12px;
}

.hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #9b7182;
  margin: 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  background: rgba(255,255,255,.75);
  color: #c97e97;
  border: 1px solid #f1d7e0;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.card {
  width: 100%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border: 1px solid #f4dce5;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(236, 72, 153, .14);
  padding: 28px;
}

.card h2 {
  margin: 0 0 6px;
  color: #ec4899;
  font-size: 26px;
}

.card p {
  margin: 0 0 22px;
  color: #b18496;
  font-size: 13px;
}

.field {
  margin-bottom: 13px;
}

.field input {
  width: 100%;
  height: 52px;
  border: 1px solid #ecd3dd;
  border-radius: 18px;
  background: #fff;
  outline: none;
  padding: 0 16px;
  color: #553344;
  font-size: 14px;
  transition: .2s;
}

.field input:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, .10);
}

.btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 18px;
  margin-top: 6px;
  background: linear-gradient(135deg, #ec4899, #f43f8f);
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(236, 72, 153, .25);
}

.btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.login-link {
  text-align: center;
  margin-top: 18px;
  color: #9b7182;
  font-size: 13px;
}

.login-link a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 800;
}

.message {
  display: none;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
}

.message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 850px) {
  body {
    align-items: flex-start;
    padding: 18px;
  }

  .page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    text-align: center;
    padding: 10px 4px 0;
  }

  .hero p {
    margin: auto;
  }

  .features {
    justify-content: center;
  }

  .card {
    max-width: 460px;
    margin: 0 auto;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .card {
    border-radius: 24px;
    padding: 20px;
  }

  .card h2 {
    font-size: 23px;
  }

  .field input {
    height: 50px;
    border-radius: 16px;
  }
} 
* {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #ffd6e7 0, transparent 32%),
    radial-gradient(circle at bottom right, #ffe4ef 0, transparent 28%),
    linear-gradient(135deg, #fff7fb, #fff0f6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 1050px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: center;
}

.hero {
  color: #73485b;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  color: #ec4899;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(236, 72, 153, .12);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 22px 0 12px;
}

.hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #9b7182;
  margin: 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  background: rgba(255,255,255,.75);
  color: #c97e97;
  border: 1px solid #f1d7e0;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.card {
  width: 100%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border: 1px solid #f4dce5;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(236, 72, 153, .14);
  padding: 28px;
}

.card h2 {
  margin: 0 0 6px;
  color: #ec4899;
  font-size: 26px;
}

.card p {
  margin: 0 0 22px;
  color: #b18496;
  font-size: 13px;
}

.otp-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.otp-input {
  height: 56px;
  border: 1px solid #ecd3dd;
  border-radius: 16px;
  background: #fff;
  outline: none;
  text-align: center;
  color: #553344;
  font-size: 22px;
  font-weight: 800;
  transition: .2s;
}

.otp-input:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, .10);
}

.btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ec4899, #f43f8f);
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(236, 72, 153, .25);
}

.btn:disabled,
.btn-soft:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.btn-soft {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 18px;
  margin-top: 12px;
  background: #fff0f6;
  color: #ec4899;
  font-weight: 800;
  cursor: pointer;
}

.login-link {
  text-align: center;
  margin-top: 18px;
  color: #9b7182;
  font-size: 13px;
}

.login-link a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 800;
}

.message {
  display: none;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
}

.message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 850px) {
  body {
    align-items: flex-start;
    padding: 18px;
  }

  .page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    text-align: center;
    padding: 10px 4px 0;
  }

  .hero p {
    margin: auto;
  }

  .features {
    justify-content: center;
  }

  .card {
    max-width: 460px;
    margin: 0 auto;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .card {
    border-radius: 24px;
    padding: 20px;
  }
/* .otp-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.otp-input {
  width: 50px !important;
  min-width: 50px;
  max-width: 50px;
  height: 55px;

  border: 1px solid #ecd3dd;
  border-radius: 16px;
  background: #fff;
  outline: none;

  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #553344;

  flex: unset !important;
} */

.otp-input:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, .10);
}

/* @media (max-width: 480px) {
  .otp-box {
    gap: 6px;
  }

  .otp-input {
    width: 42px;
    height: 48px;
    font-size: 18px;
  }
} */
/* OTP FIX */
.otp-box {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.otp-input {
  width: 10px !important;
  min-width: 10px !important;
  max-width: 10px !important;
  height: 15px !important;
  flex: 0 0 50px !important;
  padding: 0 !important;
}

@media (max-width: 480px) {
  .otp-input {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    flex: 0 0 42px !important;
    height: 48px !important;
  }
}
}
/* FINAL OTP FIX - desktop + mobile */
.card .otp-box {
  display: flex !important;
  grid-template-columns: none !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
}

.card .otp-box .otp-input {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  flex: 0 0 50px !important;
  height: 55px !important;
  padding: 0 !important;
}

@media (max-width: 480px) {
  .card .otp-box .otp-input {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    flex: 0 0 42px !important;
    height: 48px !important;
  }
}
.password-wrap {
  position: relative;
}

.auth-links {
  margin-top: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-links a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #ec4899;
  transition: .2s;
}

.auth-links a:hover {
  opacity: .8;
}
* {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff5f9, #f8fafc);
  color: #553344;
}

.app {
  max-width: 430px;
  margin: auto;
  min-height: 100vh;
  padding-bottom: 90px;
  background: #fffafd;
}

.header {
  padding: 24px 18px 18px;
  background: linear-gradient(135deg, #ec4899, #f9a8d4);
  color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 14px 35px rgba(236, 72, 153, .25);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  margin: 0;
  font-size: 26px;
}

.header p {
  margin: 6px 0 0;
  font-size: 13px;
}

.logout {
  background: rgba(255,255,255,.25);
  color: white;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.search {
  margin-top: 18px;
  background: white;
  border-radius: 20px;
  padding: 13px 14px;
  display: flex;
  gap: 8px;
}

.search input {
  border: none;
  outline: none;
  width: 100%;
  color: #553344;
  font-size: 14px;
}

.section {
  padding: 18px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
  font-size: 18px;
  color: #73485b;
}

.story-row {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 6px;
}

.story {
  min-width: 95px;
  height: 132px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.story span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
}

.store-card,
.offer-card,
.my-card {
  background: white;
  border: 1px solid #f1d7e0;
  border-radius: 26px;
  padding: 15px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(236,72,153,.10);
}

.store-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff0f6;
}

.store-info h3 {
  margin: 0;
  color: #73485b;
  font-size: 17px;
}

.store-info p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #9b7182;
}

.chips {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: #fff0f6;
  color: #c97e97;
  padding: 7px 11px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

button {
  border: none;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  color: white;
  padding: 12px 16px;
  width: 100%;
  margin-top: 14px;
}

.btn-soft {
  background: #fff0f6;
  color: #c97e97;
  padding: 10px 14px;
}

.offer-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
}

.offer-card h3 {
  margin: 0;
  color: #73485b;
  font-size: 17px;
}

.offer-card p {
  color: #8a5e70;
  font-size: 13px;
  line-height: 1.5;
}

.empty,
.loader {
  background: white;
  border: 1px dashed #f1b5cf;
  color: #9b7182;
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  max-width: 410px;
  width: calc(100% - 28px);
  background: rgba(255,255,255,.94);
  border: 1px solid #f1d7e0;
  border-radius: 28px;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  z-index: 10;
}

.nav-item {
  color: #b18496;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 11px;
  border-radius: 18px;
  cursor: pointer;
}

.nav-item.active {
  background: #fff0f6;
  color: #ec4899;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}
.store-story-wrap {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 10px 0 12px;
  padding-bottom: 4px;
}

.store-story {
  min-width: 62px;
  text-align: center;
  cursor: pointer;
}

.story-ring {
  width: 58px;
  height: 58px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #f97316, #facc15);
}

.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
}

.store-story span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #73485b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.story-modal.active {
  display: flex;
}

.story-view {
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background: #111;
  position: relative;
  overflow: hidden;
}

.story-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: white;
  font-size: 24px;
}

.story-progress {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 10px;
  z-index: 5;
  overflow: hidden;
}

.story-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: white;
  animation: storyProgress 15s linear forwards;
}

@keyframes storyProgress {
  from { width: 0; }
  to { width: 100%; }
}

.story-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 35px;
  z-index: 5;
  color: white;
}

.story-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.story-content p {
  font-size: 14px;
}
#storyAudio {
  display: none;
}

.story-modal {
  overflow: hidden;
}

.story-view {
  margin: auto;
}
.header {
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
}

.user-area {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.animated-avatar {
  animation: floatAvatar 2.4s ease-in-out infinite;
}

@keyframes floatAvatar {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(4deg);
  }
}

.header h1 {
  font-size: 22px;
}

.reward-card {
  margin-top: 18px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.reward-card small {
  font-size: 11px;
  opacity: .9;
}

.reward-card h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.reward-card span {
  font-size: 34px;
  animation: giftBounce 1.8s infinite;
}

@keyframes giftBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15) rotate(-8deg);
  }
}

.avatar-picker {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: flex-end;
  z-index: 9999;
}

.avatar-picker.active {
  display: flex;
}

.avatar-sheet {
  width: 100%;
  max-width: 430px;
  margin: auto;
  background: white;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 22px;
  animation: sheetUp .25s ease;
}

@keyframes sheetUp {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.avatar-sheet h3 {
  margin: 0 0 16px;
  color: #73485b;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.avatar-grid button {
  height: 58px;
  border-radius: 18px;
  background: #fff0f6;
  font-size: 28px;
}
.story {
  position: relative;
}

.story-wish {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #ec4899;
  font-size: 17px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}

.store-story-wrap::-webkit-scrollbar {
  height: 0;
}

.story-row::-webkit-scrollbar {
  height: 0;
}

.bottom-nav {
  gap: 4px;
  padding: 8px;
}

.nav-item {
  font-size: 10px;
  padding: 9px 7px;
}
.small-header {
  padding: 28px 18px;
}
.login-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  background: #fff0f6;
  padding: 6px;
  border-radius: 18px;
}

.tab {
  flex: 1;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #c97e97;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: #ec4899;
  color: white;
}

.wishlist-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(236,72,153,0.08);
  border:1px solid #f8d4e4;
}

.wishlist-image-wrap{
  position:relative;
}

.wishlist-image{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.remove-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:18px;
  cursor:pointer;
}

.wishlist-content{
  padding:18px;
}

.wishlist-content h3{
  font-size:20px;
  margin-bottom:8px;
  color:#7a3d58;
}

.wishlist-content p{
  color:#9a7184;
  font-size:14px;
  line-height:1.5;
}

.wishlist-tags{
  display:flex;
  gap:8px;
  margin-top:14px;
  margin-bottom:16px;
}

.wishlist-tags span{
  background:#fff0f6;
  color:#ec4899;
  padding:8px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:700;
}

.view-btn{
  width:100%;
  height:50px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#ec4899,#f472b6);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.empty-card{
  padding:40px 20px;
  text-align:center;
  background:#fff;
  border-radius:24px;
  border:2px dashed #f8cddd;
}

.empty-icon{
  font-size:44px;
  margin-bottom:12px;
}

.loader-card{
  padding:24px;
  text-align:center;
}
.store-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  margin-top: 14px;
}

.store-actions .btn-soft,
.store-actions .btn-primary {
  margin-top: 0;
  height: 46px;
}
.wishlist-heading {
  margin: 18px 0 12px;
  color: #73485b;
  font-size: 17px;
}
.story-wish.active {
  background: #ec4899;
  color: #fff;
}

.btn-soft.saved {
  background: #ec4899;
  color: #fff;
}
.story-wish {
  pointer-events: auto !important;
  z-index: 20 !important;
}

.story::after {
  pointer-events: none !important;
}

.btn-soft,
.btn-primary,
.story-wish {
  cursor: pointer;
}
.js-wishlist {
  pointer-events: auto !important;
  position: relative;
  z-index: 999 !important;
}

.story::after {
  pointer-events: none !important;
}
.app-toast {
  position: fixed;
  left: 50%;
  bottom: 95px;
  transform: translateX(-50%) translateY(20px);
  background: #2f1724;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.story-wish,
.btn-soft {
  pointer-events: auto !important;
  position: relative;
  z-index: 99;
}
.profile-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.12);
  margin-bottom: 16px;
}

.profile-avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.22);
}

.profile-card h2 {
  margin: 8px 0 4px;
  color: #831843;
}

.profile-card p {
  margin: 4px 0;
  color: #64748b;
  font-size: 14px;
}

.loyalty-card {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  padding: 20px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

.loyalty-card small {
  opacity: 0.85;
}

.loyalty-card h3 {
  margin: 6px 0;
  letter-spacing: 1px;
}

.loyalty-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.loyalty-card span {
  font-size: 42px;
}

.qr-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.qr-card h3 {
  margin: 0;
  color: #831843;
}

.qr-card p {
  color: #64748b;
  font-size: 14px;
}

.qr-card canvas {
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  margin: 10px auto;
}

.qr-card small {
  display: block;
  color: #475569;
  margin-top: 6px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-box {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.stat-box h3 {
  margin: 0;
  color: #db2777;
  font-size: 26px;
}

.stat-box p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 13px;
}

.settings-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 90px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.settings-card h3 {
  margin-top: 0;
  color: #831843;
}

.settings-card button {
  width: 100%;
  border: none;
  background: #fdf2f8;
  color: #831843;
  padding: 15px;
  border-radius: 16px;
  margin-top: 10px;
  font-size: 15px;
  text-align: left;
  font-weight: 600;
}

.settings-card button.danger {
  background: #fee2e2;
  color: #b91c1c;
}
.qr-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  text-align: center;
  border: 1px solid #f8cddd;
  margin-top: 16px;
}

.qr-card h3 {
  color: #8a1748;
  margin-bottom: 6px;
}

.qr-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}

#profileQr {
  background: white;
  padding: 12px;
  border-radius: 18px;
  margin: 10px auto;
}

#profileQrText {
  display: block;
  margin-top: 10px;
  color: #73485b;
  font-weight: 700;
}
.qr-img {
  width: 220px;
  height: 220px;
  display: block;
  margin: 16px auto;
  background: #fff;
  padding: 10px;
  border-radius: 18px;
}
.qr-wrapper{
  position: relative;
  width: 220px;
  height: 220px;
  margin: 20px auto;
}

.qr-img{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
}

.qr-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 58px;
  height: 58px;

  background: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 4px solid white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);

  overflow: hidden;
}

.qr-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.premium-offer {
  padding: 0;
  overflow: hidden;
  margin-bottom: 18px;
}

.offer-img-wrap {
  position: relative;
}

.offer-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #ec4899;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.offer-heart.active {
  background: #ec4899;
  color: white;
}

.offer-body {
  padding: 16px;
}

.offer-store {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.offer-store img {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  object-fit: cover;
}

.offer-store h4 {
  margin: 0;
  color: #7a3d58;
  font-size: 14px;
}

.offer-store p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #9a7184;
}
.store-detail-header {
  position: relative;
  height: 230px;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  overflow: hidden;
  background: #fce7f3;
}

.store-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}

.back-btn,
.save-store-btn {
  position: absolute;
  top: 18px;
  z-index: 5;
  height: 42px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  color: #9b174c;
  font-weight: 900;
  padding: 0 16px;
}

.back-btn {
  left: 16px;
  width: 46px;
}

.save-store-btn {
  right: 16px;
}

.save-store-btn.saved {
  background: #ec4899;
  color: white;
}

.store-detail-card {
  background: #fff;
  border-radius: 28px;
  margin: -52px 16px 18px;
  padding: 60px 18px 20px;
  position: relative;
  z-index: 4;
  text-align: center;
  border: 1px solid #f8cddd;
  box-shadow: 0 16px 36px rgba(236,72,153,.12);
}

.store-detail-logo {
  width: 92px;
  height: 92px;
  border-radius: 30px;
  object-fit: cover;
  border: 5px solid white;
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.store-detail-card h1 {
  color: #7a3d58;
  font-size: 24px;
  margin-bottom: 6px;
}

.store-detail-card p {
  color: #9a7184;
  font-size: 13px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.store-badges span {
  background: #fff0f6;
  color: #ec4899;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.store-detail-stories {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 0 18px;
}

.big-story {
  min-width: 72px;
  text-align: center;
}

.details-box {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid #f8cddd;
  margin-bottom: 100px;
}

.details-box h3 {
  color: #8a1748;
  margin-bottom: 14px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #fff0f6;
  font-size: 13px;
}

.detail-row span {
  color: #9a7184;
}

.detail-row b {
  color: #73485b;
  text-align: right;
}
.offer-detail-cover {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  background: #fce7f3;
}

.offer-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
}

.offer-detail-card {
  background: #fff;
  border-radius: 28px;
  margin: -48px 16px 18px;
  padding: 20px;
  position: relative;
  z-index: 4;
  border: 1px solid #f8cddd;
  box-shadow: 0 16px 36px rgba(236,72,153,.12);
}

.offer-store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.offer-store-row img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: cover;
}

.offer-store-row h4 {
  margin: 0;
  color: #7a3d58;
}

.offer-store-row p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #9a7184;
}

.offer-detail-card h1 {
  color: #7a3d58;
  font-size: 24px;
  margin-bottom: 10px;
}

.offer-detail-card p {
  color: #8b6575;
  font-size: 14px;
  line-height: 1.6;
}

.big-btn {
  margin-top: 18px;
  height: 54px;
}

.details-text {
  color: #8b6575;
  font-size: 14px;
  line-height: 1.6;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(20px);
  background: #2f1724;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.social-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  height: 46px;
  border: none;
  border-radius: 16px;
  background: #fff0f6;
  color: #9b174c;
  font-weight: 900;
  cursor: pointer;
}

.social-btn.active {
  background: #ec4899;
  color: white;
}

.comment-list,
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-item {
  display: flex;
  gap: 10px;
  background: #fff0f6;
  padding: 12px;
  border-radius: 18px;
}

.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
}

.comment-item h4 {
  margin: 0;
  color: #7a3d58;
  font-size: 13px;
}

.comment-item p {
  margin: 4px 0;
  color: #73485b;
  font-size: 13px;
}

.comment-item small {
  color: #9a7184;
  font-size: 11px;
}

.comment-input-box {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.comment-input-box input {
  flex: 1;
  border: 1px solid #f8cddd;
  border-radius: 16px;
  padding: 0 14px;
  height: 46px;
  outline: none;
}

.comment-input-box button {
  border: none;
  border-radius: 16px;
  background: #ec4899;
  color: white;
  font-weight: 900;
  padding: 0 16px;
}

.chat-message {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 13px;
}

.store-msg {
  background: #fff0f6;
  color: #73485b;
  align-self: flex-start;
}

.user-msg {
  background: #ec4899;
  color: white;
  align-self: flex-end;
}

.user-msg small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  opacity: .8;
}
.store-social-icons {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.store-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  background: #fff0f6;
  color: #9b174c;
}

.store-social-icon.whatsapp {
  background: #e9fff1;
  color: #16a34a;
}

.store-social-icon.instagram {
  background: #fff0f6;
  color: #ec4899;
}

.store-social-icon.facebook {
  background: #eff6ff;
  color: #2563eb;
}

.store-social-icon.website {
  background: #f5f3ff;
  color: #7c3aed;
}

.full-btn {
  width: 100%;
  margin-top: 10px;
}
.section {
  padding-bottom: 95px;
}

.details-box {
  margin-bottom: 14px !important;
}

.details-box + .details-box {
  margin-top: 0 !important;
}

.offer-detail-card {
  margin-bottom: 14px !important;
}

.store-social-icons {
  display: flex;
  gap: 10px;
  margin: 14px 0 4px;
}

.store-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.store-social-icon.whatsapp {
  background: #e9fff1;
  color: #16a34a;
}

.store-social-icon.instagram {
  background: #fff0f6;
  color: #ec4899;
}

.store-social-icon.facebook {
  background: #eff6ff;
  color: #2563eb;
}

.store-social-icon.website {
  background: #f5f3ff;
  color: #7c3aed;
}
.section {
  padding-bottom: 95px;
}

.details-box {
  margin-bottom: 14px !important;
}

.details-box + .details-box {
  margin-top: 0 !important;
}

.offer-detail-card {
  margin-bottom: 14px !important;
}

.store-social-icons {
  display: flex;
  gap: 10px;
  margin: 14px 0 4px;
}

.store-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.store-social-icon.whatsapp {
  background: #e9fff1;
  color: #16a34a;
}

.store-social-icon.instagram {
  background: #fff0f6;
  color: #ec4899;
}

.store-social-icon.facebook {
  background: #eff6ff;
  color: #2563eb;
}

.store-social-icon.website {
  background: #f5f3ff;
  color: #7c3aed;
}
.offer-page {
  padding-bottom: 115px;
}

.offer-hero {
  position: relative;
  height: 250px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.offer-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.28));
}

.offer-main-card {
  background: #fff;
  border-radius: 30px;
  margin: -50px 16px 14px;
  padding: 18px;
  position: relative;
  z-index: 5;
  border: 1px solid #f8cddd;
  box-shadow: 0 18px 40px rgba(236,72,153,.16);
}

.offer-store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff0f6;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.offer-store-row img {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
}

.offer-store-row h4 {
  margin: 0;
  color: #7a3d58;
  font-size: 15px;
}

.offer-store-row p {
  margin: 3px 0 0;
  color: #9a7184;
  font-size: 12px;
}

.offer-main-card h1 {
  margin: 0 0 8px;
  color: #69213f;
  font-size: 25px;
  line-height: 1.25;
}

.offer-main-card > p {
  color: #8b6575;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.big-btn {
  height: 54px;
  margin-top: 16px;
  border-radius: 18px;
}

.offer-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.offer-action-btn {
  min-height: 70px;
  border: none;
  border-radius: 20px;
  background: #fff0f6;
  color: #9b174c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
}

.offer-action-btn span {
  font-size: 22px;
  line-height: 1;
}

.offer-action-btn b {
  font-size: 14px;
}

.offer-action-btn small {
  font-size: 11px;
  color: #a66a85;
}

.offer-action-btn.active {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #fff;
}

.offer-action-btn.active small {
  color: #ffe4f1;
}

.compact-section {
  padding-top: 0 !important;
  padding-bottom: 110px !important;
}

.details-box {
  margin: 0 16px 14px !important;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid #f8cddd;
  box-shadow: 0 12px 28px rgba(236,72,153,.08);
}

.details-box h3 {
  margin: 0 0 14px;
  color: #8a1748;
  font-size: 18px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #fff0f6;
  font-size: 13px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span {
  color: #9a7184;
}

.detail-row b {
  color: #73485b;
  text-align: right;
}

.details-text {
  color: #8b6575;
  font-size: 14px;
  line-height: 1.6;
}

.store-social-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0 6px;
}

.store-social-icon {
  height: 46px;
  border: none;
  border-radius: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

.store-social-icon.whatsapp {
  background: #e9fff1;
  color: #16a34a;
}

.store-social-icon.instagram {
  background: #fff0f6;
  color: #ec4899;
}

.store-social-icon.facebook {
  background: #eff6ff;
  color: #2563eb;
}

.store-social-icon.website {
  background: #f5f3ff;
  color: #7c3aed;
}

.full-btn {
  width: 100%;
  margin-top: 12px;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 95px;
  transform: translateX(-50%) translateY(20px);
  background: #2f1724;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.store-social-icons{
    display:flex;
    gap:14px;
    margin-top:18px;
    margin-bottom:18px;
}

.store-social-icon{
    width:52px;
    height:52px;
    border:none;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.store-social-icon:hover{
    transform:translateY(-3px) scale(1.05);
}

.store-social-icon.call{
    background:#effff6;
    color:#00a86b;
}

.store-social-icon.whatsapp{
    background:#ebfff2;
    color:#25d366;
}

.store-social-icon.instagram{
    background:linear-gradient(135deg,#ff4fd8,#ff7a00);
    color:#fff;
}

.store-social-icon.website{
    background:#eef4ff;
    color:#4f46e5;
}
.store-social-icons {
  display: flex;
  gap: 14px;
  margin: 18px 0 22px;
}

.store-social-icon {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  transition: 0.25s ease;
}

.store-social-icon:hover {
  transform: translateY(-4px) scale(1.05);
}

.store-social-icon.call {
  background: linear-gradient(135deg, #00c853, #00e676);
}

.store-social-icon.whatsapp {
  background: linear-gradient(135deg, #12c85b, #25d366);
}

.store-social-icon.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.store-social-icon.website {
  background: linear-gradient(135deg, #1877f2, #36a3ff);
}
.store-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 22px;
}

.store-social-icon {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
  transition: 0.25s ease;
}

.store-social-icon:hover {
  transform: translateY(-5px) scale(1.06);
}

.store-social-icon.call {
  background: linear-gradient(135deg, #00b894, #00e676);
}

.store-social-icon.whatsapp {
  background: linear-gradient(135deg, #10b981, #25d366);
}

.store-social-icon.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.store-social-icon.website {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.store-social-icons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin:22px 0;
    flex-wrap:wrap;
}

.store-social-icon{
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.store-social-icon i{
    font-size:24px;
    color:#fff;
}

.store-social-icon:hover{
    transform:translateY(-4px) scale(1.05);
}

/* CALL */
.store-social-icon.call{
    background:linear-gradient(135deg,#00c853,#00e676);
}

/* WHATSAPP */
.store-social-icon.whatsapp{
    background:linear-gradient(135deg,#00bfa5,#1de9b6);
}

/* INSTAGRAM */
.store-social-icon.instagram{
    background:linear-gradient(135deg,#ff0069,#ff9800);
}

/* WEBSITE */
.store-social-icon.website{
    background:linear-gradient(135deg,#5b5fff,#36cfff);
}
.application-status-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #ffd6e7;
}

.application-status-box .status-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.application-status-box h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.application-status-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.application-status-box.pending {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}

.application-status-box.pending .status-icon {
  background: #ffedd5;
}

.application-status-box.approved {
  background: #ecfdf5;
  color: #047857;
  border-color: #bbf7d0;
}

.application-status-box.approved .status-icon {
  background: #d1fae5;
}

.application-status-box.rejected {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.application-status-box.rejected .status-icon {
  background: #fee2e2;
}
.offer-actions-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  margin-top: 14px;
}

.mini-save {
  height: 48px;
  border-radius: 16px;
  font-weight: 800;
}

.mini-save.saved {
  background: #ec4899;
  color: #fff;
}
.app {
  padding-bottom: 105px !important;
}

.bottom-nav {
  z-index: 9999;
}

.store-actions,
.offer-actions-row,
.store-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.store-actions button,
.offer-actions-row button,
.store-card-actions button {
  flex: 1;
  height: 46px;
  border-radius: 16px;
}

.store-card {
  margin-bottom: 18px;
}
/* APP SAFE AREA */
body{
  margin:0;
  padding:0;
  background:#fff7fb;
  overflow-x:hidden;
}

.app{
  width:100%;
  max-width:390px;
  margin:auto;
  min-height:100vh;
  padding-bottom:120px;
  box-sizing:border-box;
  overflow:hidden;
}

/* STORE CARD */
.store-card{
  background:#fff;
  border-radius:26px;
  padding:14px;
  margin-top:16px;
  border:1px solid #ffd7ea;
  overflow:hidden;
  box-sizing:border-box;
}

/* ACTION BUTTONS */
.store-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  width:100%;
}

.store-actions button{
  flex:1;
  min-width:0;
  height:48px;
  border:none;
  border-radius:16px;
  font-size:14px;
  font-weight:700;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:linear-gradient(135deg,#ff4fa3,#ec4899);
  color:#fff;
  box-shadow:0 8px 18px rgba(236,72,153,.25);
}

/* SOFT BUTTON */
.btn-soft{
  background:#fff0f7;
  color:#ec4899;
  border:1px solid #ffd1e6;
}

/* SAVED BUTTON */
.btn-soft.saved{
  background:#ec4899;
  color:#fff;
  border:none;
}

/* BOTTOM NAV */
.bottom-nav{
  position:fixed;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  width:calc(100% - 24px);
  max-width:370px;
  background:#fff;
  border-radius:24px;
  padding:10px 6px;
  display:flex;
  justify-content:space-around;
  align-items:center;
  z-index:99999;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  border:1px solid #ffe1ee;
  box-sizing:border-box;
}

/* NAV ITEM */
.nav-item{
  flex:1;
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#b07a91;
  text-decoration:none;
  padding:10px 0;
  border-radius:14px;
}

/* ACTIVE TAB */
.nav-item.active{
  background:#fff0f7;
  color:#ec4899;
}

/* FIX OVERFLOW */
.section,
.screen,
#storeList{
  overflow:hidden;
}
.qr-wrapper {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 20px auto 10px;
}

.qr-img {
  width: 230px;
  height: 230px;
  object-fit: contain;
}

.qr-logo {
  position: absolute;
  width: 38px;
  height: 38px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.qr-logo img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
}