:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-mono-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-mono-500-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/playfair-display-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/syne-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif-display-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif-display-italic-latin.woff2") format("woff2");
}
:root {
  --bs-success-rgb: 16, 185, 129;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-glow {
  from {
    --glow-angle: 0deg;
  }
  to {
    --glow-angle: 360deg;
  }
}
.hero-search {
  position: relative;
  background: #0C0A09;
  overflow: hidden;
  margin-top: -64px;
  padding: 134px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg-image) center/cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}
.hero-search::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.8) 0%, rgba(12, 10, 9, 0.25) 35%, rgba(12, 10, 9, 0.25) 65%, rgba(12, 10, 9, 0.7) 100%), radial-gradient(ellipse at 50% 30%, transparent 30%, rgba(12, 10, 9, 0.3) 70%);
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-search {
    min-height: auto;
    padding: 84px 0 40px;
  }
  .hero-search::before {
    opacity: 0.5;
    background-position: top center;
  }
  .hero-search::after {
    background: linear-gradient(180deg, rgba(12, 10, 9, 0.75) 0%, rgba(12, 10, 9, 0.2) 40%, rgba(12, 10, 9, 0.2) 60%, rgba(12, 10, 9, 0.75) 100%);
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 133, 10, 0.08) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 166, 35, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero-social-proof {
    gap: 12px;
    margin-bottom: 28px;
  }
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #78716C;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
}
.proof-item .proof-num {
  color: #F5A623;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.proof-item .proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A623;
  animation: proofPulse 2s ease-in-out infinite;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 576px) {
  .proof-divider {
    display: none;
  }
}

@keyframes proofPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FAFAF9;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #E8850A;
  border-radius: 7px;
  color: white;
  font-size: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 133, 10, 0.35);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.hero-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: #FAFAF9;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-title__accent {
  color: #F5A623;
  -webkit-text-fill-color: #F5A623;
  text-shadow: 0 2px 20px rgba(245, 166, 35, 0.4), 0 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
  }
}

.hero-sub {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: #FAFAF9;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hero-sub {
    margin-bottom: 24px;
    line-height: 1.5;
  }
}

.how-it-works {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .how-it-works {
    gap: 6px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 8px 16px;
    max-width: fit-content;
  }
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .hiw-step {
    flex-direction: row;
    gap: 5px;
    flex: none;
  }
}
.hiw-step .hiw-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5A623;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hiw-step .hiw-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 0.7rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
}
.hiw-step .hiw-text {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  color: #FAFAF9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hiw-step .hiw-text {
    font-size: 0.68rem;
    text-shadow: none;
    white-space: nowrap;
  }
}

.search-box {
  position: relative;
  max-width: 780px;
  margin: 0 auto 20px;
}
.search-box__glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 133, 10, 0.12) 0%, transparent 60%);
  border-radius: 28px;
  z-index: 0;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.search-box:has(.search-box__input:focus) .search-box__glow {
  opacity: 1;
}
.search-box__inner {
  position: relative;
  z-index: 1;
  background: rgba(12, 10, 9, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 133, 10, 0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.search-box:has(.search-box__input:focus) .search-box__inner {
  border-color: rgba(232, 133, 10, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(232, 133, 10, 0.12);
}
.search-box__input {
  width: 100%;
  min-height: 140px;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  padding: 24px 60px 68px 26px;
  resize: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.search-box__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 576px) {
  .search-box__input {
    min-height: 120px;
    padding-right: 50px;
    padding-bottom: 62px;
  }
}
.search-box__clear {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #78716C;
  font-size: 0.72rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: scale(0.3);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
}
.search-box__clear.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.search-box__clear:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FAFAF9;
}
.search-box__clear:active {
  transform: scale(0.88);
  transition-duration: 0.08s;
}
@media (max-width: 576px) {
  .search-box__clear {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }
}
.search-box__mic {
  position: absolute;
  bottom: 18px;
  left: 26px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #78716C;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  overflow: visible;
}
.search-box__mic:hover {
  border-color: rgba(232, 133, 10, 0.3);
  color: #F5A623;
  background: rgba(232, 133, 10, 0.06);
}
.search-box__mic.is-recording {
  border-color: #E8850A;
  color: white;
  background: #E8850A;
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.35);
  animation: micPulse 1.5s ease-in-out infinite;
}
.search-box__mic.is-recording .search-box__mic-pulse {
  display: block;
}
@media (max-width: 576px) {
  .search-box__mic {
    left: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }
}
.search-box__mic-pulse {
  display: none;
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(232, 133, 10, 0.4);
  border-radius: 16px;
  animation: micRipple 1.5s ease-out infinite;
  pointer-events: none;
}
.search-box__btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #E8850A;
  color: #0C0A09;
  border: none;
  border-radius: 14px;
  padding: 13px 28px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.3);
  overflow: hidden;
  letter-spacing: 0.2px;
}
.search-box__btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.search-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 133, 10, 0.4);
}
.search-box__btn:hover i {
  transform: rotate(-12deg) scale(1.15);
}
.search-box__btn:hover .search-box__btn-shimmer {
  animation: shimmerSlide 0.8s ease forwards;
}
.search-box__btn:active {
  transform: translateY(-1px) scale(0.98);
}
@media (max-width: 576px) {
  .search-box__btn {
    padding: 12px 18px;
  }
  .search-box__btn span {
    display: none;
  }
  .search-box__btn i {
    margin: 0;
    font-size: 1.1rem;
  }
}
.search-box__btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
}

@keyframes micPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes micRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes glowBreath {
  0%, 100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.22;
  }
}
@keyframes titleGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes btnGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes iconSparkle {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-5deg) scale(1.05);
  }
  75% {
    transform: rotate(5deg) scale(0.97);
  }
}
@keyframes shimmerSlide {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
.search-legal-notice {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 4px auto 28px;
  max-width: 600px;
  line-height: 1.5;
}
.search-legal-notice a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.search-legal-notice a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.hero-prompts {
  max-width: 780px;
  margin: 0 auto 48px;
}
.hero-prompts__label {
  display: block;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero-prompts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-prompts__list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.prompt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.prompt-chip i {
  font-size: 0.65rem;
  opacity: 0.3;
  transition: all 0.25s ease;
}
.prompt-chip:hover {
  background: rgba(232, 133, 10, 0.08);
  border-color: rgba(232, 133, 10, 0.2);
  color: #FAFAF9;
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.08);
}
.prompt-chip:hover i {
  opacity: 1;
  color: #F5A623;
}
.prompt-chip--preview {
  cursor: default;
}
.prompt-chip--preview:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #A8A29E;
  box-shadow: none;
}
@media (max-width: 992px) {
  .prompt-chip {
    padding: 8px 14px;
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
    border-radius: 20px;
    width: 100%;
    justify-content: center;
  }
  .prompt-chip i {
    display: none;
  }
}

.recent-searches {
  max-width: 780px;
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-bottom 0.4s ease;
}
.recent-searches.is-visible {
  max-height: 120px;
  opacity: 1;
  overflow: visible;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .recent-searches.is-visible {
    max-height: 100px;
    margin-bottom: 12px;
  }
}
.recent-searches__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.recent-searches__label i {
  font-size: 0.65rem;
  color: #F5A623;
}
.recent-searches__list-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .recent-searches__list-wrap {
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }
}
.recent-searches__scroll-hint {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.recent-searches__scroll-hint svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: hintNudge 2s ease-in-out infinite;
}
.is-scrolled-end .recent-searches__scroll-hint {
  opacity: 0;
}
@media (max-width: 768px) {
  .recent-searches__scroll-hint {
    display: none;
  }
}
@keyframes hintNudge {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(4px);
    opacity: 0.9;
  }
}
.recent-searches__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 768px) {
  .recent-searches__list {
    justify-content: flex-start;
    gap: 0;
  }
}

.recent-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 8px 6px 12px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 1 1 0;
  min-width: 0;
}
.recent-searches__list.is-natural .recent-tab {
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .recent-tab {
    flex: 0 0 auto;
    max-width: 180px;
  }
}
.recent-tab__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.recent-tab__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.5rem;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.recent-tab__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.recent-tab:hover {
  background: rgba(232, 133, 10, 0.1);
  border-color: rgba(232, 133, 10, 0.2);
  color: #FAFAF9;
}
.recent-tab.is-active {
  background: rgba(232, 133, 10, 0.15);
  border-color: rgba(232, 133, 10, 0.4);
  color: #FAFAF9;
  box-shadow: 0 0 16px rgba(232, 133, 10, 0.12);
}
.recent-tab.is-active .recent-tab__close {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 769px) {
  .recent-tab::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(15, 12, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.73rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    max-width: 280px;
    min-width: 60px;
    width: max-content;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .recent-tab::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 12, 10, 0.92);
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .recent-tab:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .recent-tab:hover::before {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .recent-tab {
    flex: none;
    width: 100%;
    min-width: 100%;
    max-width: none;
    padding: 6px 10px 6px 14px;
    font-size: 0.75rem;
    gap: 5px;
    box-sizing: border-box;
  }
  .recent-tab__close {
    width: 17px;
    height: 17px;
    font-size: 0.45rem;
  }
}

.recent-searches__dots {
  display: none;
}
@media (max-width: 768px) {
  .recent-searches__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
  }
}

.recent-searches__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.recent-searches__dot.is-active {
  background: #E8850A;
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(232, 133, 10, 0.4);
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-enter {
  animation: pageEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .page-enter {
    animation: none;
    opacity: 1;
  }
  .search-box__glow {
    animation: none;
    opacity: 0.1;
  }
}
#resultsSection {
  display: none;
}
#resultsSection.show {
  display: block;
}

#resultsList {
  scroll-margin-top: 16px;
}

.results-section {
  background: #FAFAF8;
  padding: 56px 0 80px;
  min-height: 400px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  animation: fadeInResults 0.6s ease both;
}
@media (max-width: 768px) {
  .results-header {
    flex-direction: column;
    gap: 12px;
  }
}
.results-header__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #151210;
  margin: 0 0 6px;
}
.results-header__query {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}
.results-header__query span {
  color: #374151;
  font-style: italic;
}
.results-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 7px;
  background: #151210;
  color: #e0e0e0;
  border-radius: 100px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.results-header__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(232, 133, 10, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}
.results-header__badge-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.results-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.results-header__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px 0 12px;
  background: transparent;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 100px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.results-header__map-btn i {
  font-size: 0.9rem;
  color: #2563eb;
  flex-shrink: 0;
}
.results-header__map-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}
@media (max-width: 768px) {
  .results-header__map-btn {
    height: 36px;
    padding: 0 12px 0 10px;
    font-size: 0.78rem;
  }
}

@keyframes fadeInResults {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.restaurant-card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E2DD;
}
.restaurant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 133, 10, 0.2);
}
.restaurant-card .res-image-wrapper {
  flex: 0 0 260px;
  height: 240px;
  overflow: hidden;
  margin: 14px 0 14px 14px;
  border-radius: 14px;
  position: relative;
}
.restaurant-card .res-image-wrapper.has-gallery {
  cursor: pointer;
}
.restaurant-card .res-image-wrapper.has-gallery img:not(.res-logo) {
  transition: opacity 0.2s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.restaurant-card .res-image-wrapper.has-gallery:hover img:not(.res-logo) {
  transform: scale(1.06);
}
.restaurant-card .res-image-wrapper.has-gallery.carousel-active {
  cursor: default;
}
.restaurant-card .res-image-wrapper.has-gallery.carousel-active img:not(.res-logo) {
  transition: opacity 0.2s ease;
}
.restaurant-card .res-image-wrapper.has-gallery.carousel-active:hover img:not(.res-logo) {
  transform: none;
}
.restaurant-card .res-image-wrapper .gallery-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}
.restaurant-card .res-image-wrapper .card-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 4;
  pointer-events: auto;
}
.restaurant-card .res-image-wrapper .card-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.restaurant-card .res-image-wrapper .card-carousel-dot.is-active {
  background: #fff;
  width: 14px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.restaurant-card .res-image-wrapper .card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 4;
}
.restaurant-card .res-image-wrapper .card-carousel-btn.card-carousel-prev {
  left: 8px;
}
.restaurant-card .res-image-wrapper .card-carousel-btn.card-carousel-next {
  right: 8px;
}
.restaurant-card .res-image-wrapper .card-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}
.restaurant-card .res-image-wrapper:hover .card-carousel-btn {
  opacity: 1;
}
@media (max-width: 768px) {
  .restaurant-card .res-image-wrapper .card-carousel-btn {
    opacity: 0.75;
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }
}
.restaurant-card .res-image-wrapper .promo-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  transition: all 0.2s ease;
  z-index: 3;
  animation: promoPulse 2s ease-in-out infinite;
}
.restaurant-card .res-image-wrapper .promo-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.55);
}
@keyframes promoPulse {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 2px 18px rgba(249, 115, 22, 0.65);
  }
}
.restaurant-card .res-image-wrapper img:not(.res-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant-card .score-badge-slot {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}
.restaurant-card .score-badge {
  padding: 5px 9px 5px 7px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.restaurant-card .score-badge .score-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}
.restaurant-card .score-badge .score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.restaurant-card .score-badge .score-dot--on {
  background: rgba(255, 255, 255, 0.95);
}
.restaurant-card .score-badge .score-label {
  font-weight: 700;
}
.restaurant-card .score-badge--r5 {
  background: #059669;
  color: #fff;
}
.restaurant-card .score-badge--r4 {
  background: #E8850A;
  color: #fff;
}
.restaurant-card .score-badge--r3 {
  background: #0891b2;
  color: #fff;
}
.restaurant-card .score-badge--r2 {
  background: #7c3aed;
  color: #fff;
}
.restaurant-card .score-badge--r1 {
  background: #6b7280;
  color: #fff;
}
.restaurant-card .score-badge--perfect {
  background: #059669;
  color: #fff;
}
.restaurant-card .score-badge--high {
  background: #E8850A;
  color: #fff;
}
.restaurant-card .score-badge--good {
  background: #A16207;
  color: #fff;
}
.restaurant-card .score-badge--partial {
  background: #6b7280;
  color: #fff;
}
@keyframes score-pop {
  0% {
    transform: scale(0.4) translateY(-6px);
    opacity: 0;
  }
  70% {
    transform: scale(1.12) translateY(1px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.restaurant-card .res-content {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  position: relative;
  width: 100%;
}
.restaurant-card .res-content a[href^="/mapa"] {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  line-height: 1.4;
  color: #6b7280;
}
.restaurant-card .res-content a[href^="/mapa"] i {
  margin-top: 3px;
}
.restaurant-card .res-content > .card-google-attr {
  margin: 0;
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.restaurant-card .res-content > .card-google-attr i {
  font-size: 0.6rem;
  margin-right: 0.25rem;
  opacity: 0.7;
}
.restaurant-card .res-content > .card-google-attr a {
  color: #64748b;
  text-decoration: none;
}
.restaurant-card .res-content > .card-google-attr a:hover {
  color: #334155;
  text-decoration: underline;
}
.restaurant-card .res-content > .mb-1 {
  margin-bottom: 0 !important;
}
.restaurant-card .res-content > .mb-2 {
  margin-bottom: 0 !important;
}
.restaurant-card .res-content > .mb-3 {
  margin-bottom: 0 !important;
}
.restaurant-card .res-content > .mt-2 {
  margin-top: 0 !important;
}
.restaurant-card .res-title {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #151210;
  margin-bottom: 0;
}
.restaurant-card .res-title .res-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.restaurant-card .res-title .res-title-link .res-title-arrow {
  font-size: 0.75rem;
  opacity: 0.35;
  color: #E8850A;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 6px;
  flex-shrink: 0;
}
.restaurant-card .res-title .res-title-link:hover {
  color: #E8850A;
}
.restaurant-card .res-title .res-title-link:hover .res-title-arrow {
  opacity: 1;
  transform: translateY(-1px);
}
.restaurant-card .res-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 3px;
  z-index: 2;
}
.restaurant-card .res-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0;
  transition: color 0.2s;
}
.restaurant-card .res-address i {
  margin-top: 2px;
  flex-shrink: 0;
  color: #F5A623;
  opacity: 0.6;
}
.restaurant-card .res-address:hover {
  color: #F5A623;
}
.restaurant-card .res-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.restaurant-card .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(245, 166, 35, 0.06);
  color: rgb(183.1074380165, 104.9710743802, 7.8925619835);
  border: 1px solid rgba(245, 166, 35, 0.12);
  white-space: nowrap;
}
.restaurant-card .meta-badge.price-badge {
  background: rgba(16, 185, 129, 0.08);
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
  border-color: rgba(16, 185, 129, 0.18);
}
.restaurant-card .price-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(249, 115, 22, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  cursor: default;
}
.restaurant-card .price-indicator__sign {
  font-size: 0.65rem;
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: -0.02em;
}
.restaurant-card .price-indicator__sign--active {
  color: #f59e0b;
}
.restaurant-card .price-indicator__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  margin-left: 0.3rem;
}
.restaurant-card .price-indicator--level-1 {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.05);
}
.restaurant-card .price-indicator--level-1 .price-indicator__sign--active {
  color: #16a34a;
}
.restaurant-card .price-indicator--level-2 {
  border-color: rgba(34, 197, 94, 0.15);
  background: rgba(34, 197, 94, 0.04);
}
.restaurant-card .price-indicator--level-2 .price-indicator__sign--active {
  color: #22c55e;
}
.restaurant-card .price-indicator--level-3 {
  border-color: rgba(249, 115, 22, 0.12);
  background: rgba(249, 115, 22, 0.05);
}
.restaurant-card .price-indicator--level-3 .price-indicator__sign--active {
  color: #f59e0b;
}
.restaurant-card .price-indicator--level-4 {
  border-color: rgba(239, 68, 68, 0.12);
  background: rgba(239, 68, 68, 0.04);
}
.restaurant-card .price-indicator--level-4 .price-indicator__sign--active {
  color: #ef4444;
}
.restaurant-card .price-indicator--level-5 {
  border-color: rgba(168, 85, 247, 0.15);
  background: rgba(168, 85, 247, 0.04);
}
.restaurant-card .price-indicator--level-5 .price-indicator__sign--active {
  color: #a855f7;
}
.restaurant-card .recommended-section {
  text-align: right;
  display: flex;
  align-items: center;
}
.restaurant-card .recommended-section .fa-instagram {
  color: #9333EA;
  font-weight: 600;
}
.restaurant-card .recommended-section .label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #9333EA;
  line-height: 2;
}
.restaurant-card .recommended-section .recommender-link {
  font-size: 14px;
  font-weight: 600;
  color: #9333EA;
  line-height: 2;
  text-decoration: none;
  transition: font-weight 0.2s;
  padding-left: 6px;
}
.restaurant-card .recommended-section .recommender-link:hover {
  font-weight: 700;
}
.restaurant-card .ai-summary-box {
  background: rgba(232, 133, 10, 0.03);
  border: 1px solid rgba(232, 133, 10, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
}
.restaurant-card .ai-summary-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #E8850A;
  border-radius: 12px 0 0 12px;
}
.restaurant-card .ai-summary-box .ai-summary-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #E8850A;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.restaurant-card .ai-summary-box .ai-summary-label img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  margin-top: -5px;
}
.restaurant-card .ai-summary-box .ai-summary-label--desc {
  color: #6b7280;
}
.restaurant-card .ai-summary-box .ai-summary-label--desc svg {
  color: #9ca3af;
  flex-shrink: 0;
}
.restaurant-card .ai-summary-box p {
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}
.restaurant-card .ai-summary-box .ai-thinking {
  font-size: 0.85rem;
  color: #E8850A;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}
.restaurant-card .ai-summary-box .ai-summary-unavailable {
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
  font-weight: 400;
}
.restaurant-card .ai-summary-box .ai-thinking-dots::after {
  content: "";
  animation: ai-dots 1.5s steps(1) infinite;
}
.restaurant-card .ai-summary-box.is-streaming .ai-summary-text:not(:has(.ai-thinking))::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #E8850A;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: ai-cursor-blink 0.8s step-end infinite;
}
@keyframes ai-dots {
  0%, 20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%, 100% {
    content: "...";
  }
}
@keyframes ai-cursor-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.restaurant-card .card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.restaurant-card .card-actions__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 540px) {
  .restaurant-card .card-actions__btns {
    grid-template-columns: repeat(4, 1fr);
  }
}
.restaurant-card .card-actions__social {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.restaurant-card .card-actions .ca-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.78rem;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.restaurant-card .card-actions .ca-social-link:hover {
  transform: scale(1.1);
  opacity: 0.88;
}
.restaurant-card .card-actions .ca-social-link--fb {
  background: #1877f2;
  color: #fff;
}
.restaurant-card .card-actions .ca-social-link--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.restaurant-card .card-actions .ca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: 10px;
  padding: 10px 14px;
  min-height: 42px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.18s ease;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  line-height: 1;
}
.restaurant-card .card-actions .ca-btn i {
  font-size: 0.9em;
  color: #9ca3af;
  transition: color 0.18s ease;
}
.restaurant-card .card-actions .ca-btn:hover {
  border-color: rgba(232, 133, 10, 0.35);
  color: #E8850A;
  background: #fff;
}
.restaurant-card .card-actions .ca-btn:hover i {
  color: #E8850A;
}
.restaurant-card .card-actions .ca-btn--order, .restaurant-card .card-actions .ca-btn--reserve, .restaurant-card .card-actions .ca-btn--menu, .restaurant-card .card-actions .ca-btn--contact { /* styl z .ca-btn */ }
.restaurant-card .res-claim-chip {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: color 0.15s;
}
.restaurant-card .res-claim-chip i {
  font-size: 0.65rem;
  color: #cbd5e1;
  transition: color 0.15s;
}
.restaurant-card .res-claim-chip span {
  border-bottom: 1px dashed #cbd5e1;
  transition: border-color 0.15s, color 0.15s;
}
.restaurant-card .res-claim-chip:hover {
  color: #ea580c;
  text-decoration: none;
}
.restaurant-card .res-claim-chip:hover i {
  color: #ea580c;
}
.restaurant-card .res-claim-chip:hover span {
  border-bottom-color: #ea580c;
}
@media (max-width: 576px) {
  .restaurant-card .res-claim-chip {
    align-self: stretch;
    justify-content: center;
  }
}

.ranking-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  animation: ro-appear 0.35s ease both;
}
.ranking-overlay--exit {
  animation: ro-exit 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
  pointer-events: none;
}
.ranking-overlay .ro-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ranking-overlay .ro-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 12px 48px rgba(249, 115, 22, 0.12), 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 360px;
  width: 100%;
  text-align: center;
  overflow: visible;
}
.ranking-overlay .ro-visual {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.ranking-overlay .ro-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.35);
}
.ranking-overlay .ro-ring--1 {
  width: 60px;
  height: 60px;
  animation: ro-ring-pulse 2s ease-in-out 0s infinite;
}
.ranking-overlay .ro-ring--2 {
  width: 90px;
  height: 90px;
  animation: ro-ring-pulse 2s ease-in-out 0.4s infinite;
}
.ranking-overlay .ro-ring--3 {
  width: 124px;
  height: 124px;
  animation: ro-ring-pulse 2s ease-in-out 0.8s infinite;
}
.ranking-overlay .ro-orbit-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.ranking-overlay .ro-orbit-wrap--1 {
  animation: ro-spin 3.2s linear infinite;
}
.ranking-overlay .ro-orbit-wrap--2 {
  animation: ro-spin 4.8s linear infinite reverse;
}
.ranking-overlay .ro-orbit-wrap--3 {
  animation: ro-spin 6.4s linear infinite;
}
.ranking-overlay .ro-orb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.6);
}
.ranking-overlay .ro-core {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12), 0 4px 12px rgba(249, 115, 22, 0.4);
  animation: ro-core-glow 2s ease-in-out infinite;
}
.ranking-overlay .ro-core i {
  font-size: 14px;
  color: #fff;
}
.ranking-overlay .ro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ranking-overlay .ro-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ranking-overlay .ro-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.ranking-overlay .ro-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  align-self: stretch;
  text-align: left;
}
.ranking-overlay .ro-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}
.ranking-overlay .ro-step svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.ranking-overlay .ro-step--done {
  color: #059669;
}
.ranking-overlay .ro-step--done svg {
  color: #059669;
}
.ranking-overlay .ro-step--active {
  color: #f97316;
  font-weight: 600;
}
.ranking-overlay .ro-step--active svg {
  color: #f97316;
}
.ranking-overlay .ro-step--active .ro-step-pulse {
  animation: ro-step-blink 1s ease-in-out infinite;
}

@keyframes ro-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ro-exit {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}
@keyframes ro-ring-pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.04);
  }
}
@keyframes ro-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ro-core-glow {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12), 0 4px 12px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.06), 0 4px 20px rgba(249, 115, 22, 0.55);
  }
}
@keyframes ro-step-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.contact-modal-overlay .contact-modal {
  background: white;
  border-radius: 20px;
  padding: 24px 24px 20px;
  width: calc(100% - 32px);
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-modal-overlay.active .contact-modal {
  transform: translateY(0) scale(1);
}
.contact-modal-overlay .contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-modal-overlay .contact-header i {
  font-size: 1rem;
  color: #E8850A;
}
.contact-modal-overlay .contact-header h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.contact-modal-overlay .contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-modal-overlay .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #faf8f5;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
}
.contact-modal-overlay .contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.1);
  color: #E8850A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.contact-modal-overlay .contact-item-body {
  min-width: 0;
}
.contact-modal-overlay .contact-item-body .contact-item-label {
  display: block;
  font-size: 0.66rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-modal-overlay .contact-item-body .contact-item-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-modal-overlay .contact-item-body .contact-item-value:hover {
  color: #E8850A;
}
.contact-modal-overlay .btn-contact-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 100px;
  background: #f1f5f9;
  color: #64748b;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-modal-overlay .btn-contact-close:hover {
  background: #e2e8f0;
  color: #334155;
}

@media (max-width: 768px) {
  .restaurant-card {
    flex-direction: column;
  }
  .restaurant-card .res-image-wrapper {
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    height: 200px;
    border-radius: 14px;
  }
  .restaurant-card .res-content {
    padding: 18px 20px;
  }
  .restaurant-card .res-content .card-actions {
    gap: 7px;
  }
  .restaurant-card .res-content .card-actions__btns {
    gap: 7px;
  }
  .restaurant-card .res-content .recommended-section {
    position: static;
    text-align: right;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
  }
}
.ai-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.ai-loader-wrapper .ai-visual-box {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .ai-orbit {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(245, 166, 35, 0.12);
  border-radius: 50%;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .ai-orbit.delay-1 {
  inset: 20px;
  border-color: rgba(251, 191, 36, 0.12);
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container {
  position: absolute;
  inset: 0;
  animation: rotate linear infinite;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F5A623;
  border-radius: 50%;
  box-shadow: 0 0 12px #F5A623;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container.dc-1 {
  animation-duration: 3s;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container.dc-2 {
  inset: 20px;
  animation-duration: 2s;
  animation-direction: reverse;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container.dc-2 .dot {
  background: #FBBF24;
  box-shadow: 0 0 12px #FBBF24;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container.dc-3 {
  animation-duration: 5s;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .dot-container.dc-3 .dot {
  width: 4px;
  height: 4px;
  top: -2px;
  opacity: 0.6;
}
.ai-loader-wrapper .ai-visual-box .ai-orbit-container .ai-core {
  position: relative;
  width: 48px;
  height: 48px;
  background: #E8850A;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C0A09;
  font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
  z-index: 10;
  animation: corePulse 2s infinite ease-in-out;
}
.ai-loader-wrapper .ai-loading-content .loading-title {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #FAFAF9;
}
.ai-loader-wrapper .ai-loading-content .ai-subtext {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 8px;
}
.ai-loader-wrapper .ai-loading-content .loading-progress-bar {
  width: 200px;
  height: 3px;
  background: #eee;
  border-radius: 10px;
  margin: 24px auto 0;
  overflow: hidden;
}
.ai-loader-wrapper .ai-loading-content .loading-progress-bar .progress-fill {
  width: 40%;
  height: 100%;
  background: #E8850A;
  border-radius: 10px;
  animation: progressMove 1.5s infinite ease-in-out;
}

.ai-error-container {
  animation: fadeIn 0.4s ease-out;
}

.ai-empty-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}
.ai-empty-container .ai-empty-visual {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-empty-container .ai-empty-visual .ai-empty-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: #E8850A;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C0A09;
  font-size: 2.2rem;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(245, 166, 35, 0.3);
  transform: rotate(-5deg);
}
.ai-empty-container .ai-empty-visual .pulse-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 35% 65% 70% 30%/30% 40% 60% 70%;
  animation: organicPulse 4s infinite linear;
}
.ai-empty-container .ai-empty-visual .pulse-ring.delay-1 {
  animation-delay: 2s;
  border-color: rgba(251, 191, 36, 0.2);
  inset: -25px;
}
.ai-empty-container .ai-empty-content h3 {
  color: #1a1a2e;
  margin-bottom: 15px;
}
.ai-empty-container .ai-empty-content p {
  font-size: 1rem;
  line-height: 1.6;
}
.ai-empty-container .ai-empty-content .ai-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(245, 166, 35, 0.04);
  padding: 15px 20px;
  border-radius: 16px;
  margin: 25px 0;
  text-align: left;
  border: 1px solid rgba(245, 166, 35, 0.08);
}
.ai-empty-container .ai-empty-content .ai-info-box .info-icon {
  color: #E8850A;
  font-size: 1.2rem;
}
.ai-empty-container .ai-empty-content .ai-info-box span {
  font-size: 0.85rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.4;
}
.ai-empty-container .ai-empty-content .btn-clear-search {
  cursor: pointer;
  background: #1a1a2e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  outline: none;
}
.ai-empty-container .ai-empty-content .btn-clear-search:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 133, 10, 0.4);
}
.ai-empty-container .ai-empty-content .btn-clear-search:active {
  transform: scale(0.95) !important;
}
.ai-empty-container .ai-empty-content .btn-clear-search:hover {
  background: #B45309;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .ai-empty-container {
    padding: 40px 20px;
    margin: 20px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes corePulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    filter: brightness(1.15);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes progressMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes organicPulse {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.8;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gradient-text {
  background: #E8850A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wpm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: wpmFadeIn 0.2s ease;
}

@keyframes wpmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wpm-modal {
  background: #1c1917;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: wpmSlideUp 0.25s ease;
  overflow: hidden;
}
.wpm-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wpm-modal__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.wpm-modal__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #fafaf9;
  font-family: "DM Serif Display", Georgia, serif;
}
.wpm-modal__subtitle {
  font-size: 0.72rem;
  color: #a8a29e;
  margin: 0;
}
.wpm-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #a8a29e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.15s;
}
.wpm-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fafaf9;
}
.wpm-modal__body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}
.wpm-modal__footer {
  padding: 0.75rem 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.wpm-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.wpm-modal__link:hover {
  color: #fbbf24;
}

@keyframes wpmSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.wpm-discounts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.wpm-discount-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.wpm-discount-row__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.05rem;
}
.wpm-discount-row__content {
  flex: 1;
  min-width: 0;
}
.wpm-discount-row__content strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fafafa;
  line-height: 1.3;
}
.wpm-discount-row__desc {
  display: block;
  font-size: 0.75rem;
  color: #a1a1aa;
  line-height: 1.4;
  margin-top: 0.1rem;
}

.wpm-modal--light .wpm-discount-row {
  background: #fffbeb;
  border-color: #fde68a;
}
.wpm-modal--light .wpm-discount-row__icon {
  background: #fef3c7;
  color: #d97706;
}
.wpm-modal--light .wpm-discount-row__content strong {
  color: #1f2937;
}
.wpm-modal--light .wpm-discount-row__desc {
  color: #6b7280;
}

.wpm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.wpm-card {
  position: relative;
  background: #292524;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 0.2s;
}
.wpm-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.12);
}
.wpm-card__image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #faf8f5;
}
.wpm-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
  transition: transform 0.3s ease;
}
.wpm-card:hover .wpm-card__image img {
  transform: scale(1.05);
}
.wpm-card__content {
  padding: 0.75rem 0.85rem 0.85rem;
}
.wpm-card__time {
  font-size: 0.7rem;
  color: #a8a29e;
  margin-bottom: 0.3rem;
}
.wpm-card__time i {
  margin-right: 0.2rem;
  color: #78716c;
}
.wpm-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fafaf9;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  font-family: "DM Serif Display", Georgia, serif;
}
.wpm-card__desc {
  font-size: 0.78rem;
  color: #a8a29e;
  line-height: 1.4;
}

.wpm-overlay--light {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.wpm-modal--light {
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.wpm-modal--light .wpm-modal__header {
  border-bottom: 1px solid #f3f4f6;
}
.wpm-modal--light .wpm-modal__icon-wrap {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}
.wpm-modal--light .wpm-modal__name {
  color: #1a1a2e;
}
.wpm-modal--light .wpm-modal__subtitle {
  color: #6b7280;
}
.wpm-modal--light .wpm-modal__close {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
}
.wpm-modal--light .wpm-modal__close:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.wpm-modal--light .wpm-modal__footer {
  border-top: 1px solid #f3f4f6;
}
.wpm-modal--light .wpm-modal__link {
  color: #f97316;
}
.wpm-modal--light .wpm-modal__link:hover {
  color: #ea580c;
}
.wpm-modal--light .wpm-card {
  background: #fafbfc;
  border: 1.5px solid #e5e7eb;
}
.wpm-modal--light .wpm-card:hover {
  border-color: #f97316;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.1);
}
.wpm-modal--light .wpm-card__title {
  color: #1a1a2e;
}
.wpm-modal--light .wpm-card__desc {
  color: #4b5563;
}
.wpm-modal--light .wpm-card__time {
  color: #6b7280;
}
.wpm-modal--light .wpm-card__time i {
  color: #9ca3af;
}

@media (max-width: 576px) {
  .wpm-modal {
    max-width: 100%;
    border-radius: 16px;
  }
  .wpm-modal__header {
    padding: 1rem;
  }
  .wpm-modal__body {
    padding: 1rem;
  }
  .wpm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .wpm-card__title {
    font-size: 1rem;
  }
  .wpm-card__image {
    height: 90px;
  }
}
.suggest-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: rgba(249, 115, 22, 0.04);
  border: 1px dashed rgba(249, 115, 22, 0.25);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #64748b;
}
.suggest-strip__text {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.suggest-strip__link {
  background: none;
  border: none;
  padding: 0;
  color: #f97316;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  font-size: inherit;
}
.suggest-strip__link:hover {
  color: #ea580c;
  text-decoration-style: solid;
}

.suggest-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.suggest-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 0 24px;
}
.suggest-modal__header-text {
  flex: 1 1 auto;
  min-width: 0;
}
.suggest-modal__close {
  flex-shrink: 0;
  margin-top: 2px;
}
.suggest-modal__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}
.suggest-modal__title i {
  color: #ea580c;
}
.suggest-modal__subtitle {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 0;
}
.suggest-modal__body {
  padding: 18px 24px 8px;
}
.suggest-modal__body .field-row {
  margin-bottom: 14px;
}
.suggest-modal__body .field-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.suggest-modal__body .field-row input[type=text],
.suggest-modal__body .field-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.suggest-modal__body .field-row input[type=text]:focus,
.suggest-modal__body .field-row textarea:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.suggest-modal__body .field-row textarea {
  resize: vertical;
  min-height: 80px;
}
.suggest-modal__error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.83rem;
  margin-top: 4px;
}
.suggest-modal__footer {
  padding: 12px 24px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.suggest-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
}
.suggest-modal__success i {
  font-size: 2.2rem;
  color: #16a34a;
  margin-bottom: 10px;
}
.suggest-modal__success-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: #0f172a;
}
.suggest-modal__success-sub {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
}

.scroll-nudge {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(21, 18, 16, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 100px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.scroll-nudge--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.scroll-nudge__icon {
  animation: nudge-bounce 1.1s ease-in-out infinite;
  font-size: 0.78rem;
  opacity: 0.85;
}

@keyframes nudge-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.ai-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 80px;
  min-height: 400px;
  text-align: center;
}
.ai-loader-wrapper .ai-visual-box {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(245, 166, 35, 0.03);
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.1);
  margin-bottom: 30px;
}
.ai-loader-wrapper .ai-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #E8850A, transparent);
  box-shadow: 0 0 15px #E8850A;
  z-index: 2;
  animation: refinedScan 2.5s infinite ease-in-out;
}
.ai-loader-wrapper .ai-orbit {
  position: relative;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-loader-wrapper .ai-orbit .ai-core {
  font-size: 1.5rem;
  color: #F5A623;
  animation: pulseCore 2s infinite ease-in-out;
}
.ai-loader-wrapper .ai-orbit .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F5A623;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 10px #F5A623;
  animation: rotateOrbit 3s infinite linear;
}
.ai-loader-wrapper .ai-orbit .dot:nth-child(1) {
  animation-delay: -1s;
}
.ai-loader-wrapper .ai-orbit .dot:nth-child(2) {
  animation-delay: -2s;
}
.ai-loader-wrapper .ai-orbit .dot:nth-child(3) {
  animation-delay: -3s;
}
.ai-loader-wrapper .ai-loading-content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F5A623, #E8850A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-loader-wrapper .ai-loading-content .ai-subtext {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

@keyframes refinedScan {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(130px);
    opacity: 0;
  }
}
@keyframes rotateOrbit {
  from {
    transform: rotate(0deg) translateX(35px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(35px) rotate(-360deg);
  }
}
@keyframes pulseCore {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf6ec 0%, #fbe9c8 55%, #f5d49a 100%);
  color: #C2710A;
  user-select: none;
}
.photo-placeholder__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #E8850A;
  pointer-events: none;
}
.photo-placeholder__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: center;
}
.photo-placeholder__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(194, 113, 10, 0.18);
}
.photo-placeholder__icon i {
  font-size: 22px;
  color: #C2710A;
}
.photo-placeholder__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #C2710A;
  opacity: 0.85;
}
.photo-placeholder--hero {
  position: relative;
  inset: auto;
  min-height: 320px;
  border-radius: 16px;
}
.photo-placeholder--hero .photo-placeholder__icon {
  width: 84px;
  height: 84px;
}
.photo-placeholder--hero .photo-placeholder__icon i {
  font-size: 34px;
}
.photo-placeholder--hero .photo-placeholder__label {
  font-size: 1rem;
}
.photo-placeholder--thumb .photo-placeholder__icon {
  width: 40px;
  height: 40px;
}
.photo-placeholder--thumb .photo-placeholder__icon i {
  font-size: 16px;
}
.photo-placeholder--thumb .photo-placeholder__label {
  font-size: 0.7rem;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.photo-lightbox .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.photo-lightbox .lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.photo-lightbox .lightbox-content .lightbox-spinner {
  display: none;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(249, 115, 22, 0.8);
  border-radius: 50%;
  animation: lightbox-spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.photo-lightbox .lightbox-content .lightbox-spinner.active {
  display: block;
}
.photo-lightbox .lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: opacity 0.15s ease;
}
.photo-lightbox .lightbox-content img.lightbox-loading {
  opacity: 0;
}
.photo-lightbox .lightbox-content .lightbox-attribution {
  display: none;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.photo-lightbox .lightbox-content .lightbox-attribution.active {
  display: block;
}
.photo-lightbox .lightbox-content .lightbox-attribution i {
  font-size: 0.7rem;
  margin-right: 0.3rem;
  opacity: 0.8;
}
.photo-lightbox .lightbox-content .lightbox-attribution a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.photo-lightbox .lightbox-content .lightbox-attribution a:hover {
  color: white;
}
.photo-lightbox .lightbox-content .lightbox-dots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.photo-lightbox .lightbox-content .lightbox-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.photo-lightbox .lightbox-content .lightbox-dots .dot.active {
  background: white;
  transform: scale(1.35);
}
.photo-lightbox .lightbox-content .lightbox-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.photo-lightbox .lightbox-close,
.photo-lightbox .lightbox-prev,
.photo-lightbox .lightbox-next {
  position: absolute;
  z-index: 2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(249, 115, 22, 0.5);
  transition: background 0.2s, transform 0.15s;
}
.photo-lightbox .lightbox-close svg,
.photo-lightbox .lightbox-prev svg,
.photo-lightbox .lightbox-next svg {
  display: block;
  flex-shrink: 0;
}
.photo-lightbox .lightbox-close:hover,
.photo-lightbox .lightbox-prev:hover,
.photo-lightbox .lightbox-next:hover {
  background: rgba(249, 115, 22, 0.75);
}
.photo-lightbox .lightbox-close:active,
.photo-lightbox .lightbox-prev:active,
.photo-lightbox .lightbox-next:active {
  transform: scale(0.92);
}
.photo-lightbox .lightbox-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
}
.photo-lightbox .lightbox-prev,
.photo-lightbox .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.photo-lightbox .lightbox-prev:hover,
.photo-lightbox .lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}
.photo-lightbox .lightbox-prev:active,
.photo-lightbox .lightbox-next:active {
  transform: translateY(-50%) scale(0.92);
}
@media (max-width: 576px) {
  .photo-lightbox .lightbox-prev,
  .photo-lightbox .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .photo-lightbox .lightbox-prev svg,
  .photo-lightbox .lightbox-next svg {
    width: 20px;
    height: 20px;
  }
}
.photo-lightbox .lightbox-prev {
  left: 16px;
}
.photo-lightbox .lightbox-next {
  right: 16px;
}
@media (max-width: 576px) {
  .photo-lightbox .lightbox-prev {
    left: 8px;
  }
  .photo-lightbox .lightbox-next {
    right: 8px;
  }
}

@keyframes lightbox-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.bld-search-disabled {
  position: relative;
  pointer-events: none;
}

.bld-typing-area {
  height: 140px;
  padding: 24px 26px;
  padding-bottom: 68px;
  text-align: left;
  overflow: hidden;
}
@media (max-width: 576px) {
  .bld-typing-area {
    height: 120px;
    padding-bottom: 62px;
  }
}

.bld-typing-text {
  color: #78716C;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.bld-typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #CC8B2A;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: bldCursorBlink 1s step-end infinite;
}

@keyframes bldCursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.bld-btn-placeholder {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #E8850A;
  opacity: 0.4;
  color: #0C0A09;
  border: none;
  border-radius: 14px;
  padding: 13px 30px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bld-btn-placeholder i {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .bld-btn-placeholder {
    padding: 12px 18px;
  }
  .bld-btn-placeholder span {
    display: none;
  }
  .bld-btn-placeholder i {
    margin: 0;
    font-size: 1.1rem;
  }
}

.prompt-chip--preview {
  cursor: default;
  opacity: 0.5;
}
.prompt-chip--preview:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  color: #A8A29E;
  box-shadow: none;
}

.bld-cta {
  margin-top: 48px;
  text-align: center;
}

.bld-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.bld-counter__num {
  font-size: 1.8rem;
  font-weight: 800;
  background: #E8850A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}
.bld-counter__label {
  font-size: 0.9rem;
  color: #78716C;
  font-weight: 400;
}

.ultra-subscribe-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.subscribe-card {
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bld-signup-lead {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FAFAF9;
  margin-bottom: 18px;
}

.modern-row {
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .modern-row {
    flex-direction: column;
  }
}

.input-glass-group {
  display: flex;
  align-items: center;
  background: #292524;
  border-radius: 14px;
  flex-grow: 1;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.input-glass-group:focus-within {
  border-color: #CC8B2A;
  box-shadow: 0 0 0 3px rgba(204, 139, 42, 0.1);
}
.input-glass-group .ai-icon-wrapper {
  color: #CC8B2A;
  font-size: 1rem;
  margin-right: 12px;
  opacity: 0.6;
}
.input-glass-group .notify-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  height: 52px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #FAFAF9;
}
.input-glass-group .notify-input::placeholder {
  color: #78716C;
}
.input-glass-group .notify-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn-ai-ultra {
  background: #E8850A;
  color: #0C0A09;
  border: none;
  border-radius: 14px;
  padding: 0 28px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(204, 139, 42, 0.3);
}
.btn-ai-ultra:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 34, 82, 0.3);
}
.btn-ai-ultra:active {
  transform: translateY(0);
}
.btn-ai-ultra .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: bldShimmer 3s infinite;
}
@media (max-width: 576px) {
  .btn-ai-ultra {
    padding: 14px 24px;
  }
}

@keyframes bldShimmer {
  100% {
    left: 200%;
  }
}
.info-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #78716C;
}
.info-footer .security-tag {
  color: #22c55e;
  font-weight: 600;
}
.info-footer .divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.input-glass-group.has-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}
.input-glass-group.has-error:focus-within {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.input-glass-group.has-error .ai-icon-wrapper {
  color: #ef4444;
}

.bld-field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: bldFadeIn 0.3s ease both;
  text-align: left;
}
.bld-field-error::before {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7.2 40.1S489.3 480 475.1 480H36.9c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8.2-40.1l216-368C225.6 39.5 238.7 32 256 32zm0 128c-13.3 0-24 10.7-24 24v112c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0-64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7.2 40.1S489.3 480 475.1 480H36.9c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8.2-40.1l216-368C225.6 39.5 238.7 32 256 32zm0 128c-13.3 0-24 10.7-24 24v112c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0-64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.success-reveal {
  animation: bldFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.success-reveal .success-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.4rem;
}
.success-reveal .success-title {
  color: #FAFAF9;
  font-weight: 700;
  margin: 0 0 8px;
}
.success-reveal .success-text {
  color: #78716C;
  margin: 0;
  line-height: 1.5;
}

.success-state {
  border-color: #16a34a !important;
}

.error-reveal {
  animation: bldFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.error-reveal .error-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.4rem;
}

.error-state {
  border-color: #dc2626 !important;
}

@keyframes bldFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.amb-endorsement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
}
.amb-endorsement__label {
  color: #a8a29e;
  font-weight: 400;
  white-space: nowrap;
}
.amb-endorsement__name {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #57534e;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.amb-endorsement__name:hover {
  color: #292524;
  text-decoration: underline;
}
.amb-endorsement__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.amb-endorsement__avatar-fallback {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e7e5e4;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #78716c;
  flex-shrink: 0;
  letter-spacing: 0;
}
.amb-endorsement__avatar-fallback--ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: #fff;
  font-size: 0.6rem;
}
.amb-endorsement__sep {
  color: #a8a29e;
  font-weight: 400;
  margin: 0 0.05rem;
}

.amb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400e;
  text-decoration: none;
  transition: all 0.2s ease;
}
.amb-badge:hover {
  background: linear-gradient(135deg, #fde68a, #fcd34d);
  color: #78350f;
  text-decoration: none;
  transform: translateY(-1px);
}
.amb-badge i {
  font-size: 0.75rem;
}
.amb-badge__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.amb-badge--review {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #c4b5fd;
  color: #6d28d9;
}
.amb-badge--review:hover {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
}

/*# sourceMappingURL=search.output.css.map */
