:root {
  --vc-night: #120806;
  --vc-chocolate: #5b2515;
  --vc-gold: #f4b91f;
  --vc-strawberry: #dd3651;
  --vc-sugar: #fff6e5;
  --vc-atlantic: #117c8c;
  --vc-muted: #d8c5ad;
  --vc-line: rgba(255, 246, 229, 0.14);
  --vc-soft-line: rgba(244, 185, 31, 0.24);
  --vc-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #080403;
}

body.virtual-card-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--vc-sugar);
  background:
    radial-gradient(circle at 12% 8%, rgba(221, 54, 81, 0.2), transparent 25rem),
    radial-gradient(circle at 92% 26%, rgba(17, 124, 140, 0.18), transparent 26rem),
    linear-gradient(150deg, #080403 0%, #190c08 52%, #060303 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.vc-atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.vc-atmosphere__orb {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.12;
}

.vc-atmosphere__orb--gold {
  top: -10rem;
  left: calc(50% - 7rem);
  background: var(--vc-gold);
}

.vc-atmosphere__orb--berry {
  top: 35%;
  left: -13rem;
  background: var(--vc-strawberry);
}

.vc-atmosphere__orb--atlantic {
  right: -13rem;
  bottom: -4rem;
  background: var(--vc-atlantic);
}

.vc-atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.vc-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  place-items: start center;
}

.vc-card-scene {
  width: min(100%, 460px);
  perspective: 1300px;
}

.vc-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 246, 229, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 9%, rgba(244, 185, 31, 0.14), transparent 22rem),
    linear-gradient(152deg, rgba(37, 17, 11, 0.98), rgba(14, 7, 5, 0.98));
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(244, 185, 31, 0.035) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transform-style: preserve-3d;
  will-change: transform;
}

.vc-card__edge {
  position: absolute;
  z-index: -1;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 34px;
  pointer-events: none;
}

.vc-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -35%;
  left: 40%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 124, 140, 0.15), transparent 68%);
  pointer-events: none;
}

.vc-drizzle {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.vc-drizzle path {
  fill: none;
  stroke: var(--vc-gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.13;
  filter: drop-shadow(0 0 7px rgba(244, 185, 31, 0.52));
}

.vc-profile {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 62px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.vc-profile__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  border-radius: 18px;
}

.vc-profile__logo {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(244, 185, 31, 0.32);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 246, 229, 0.98), rgba(244, 185, 31, 0.86));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.vc-profile__logo img {
  width: 74px;
  max-width: none;
  height: 48px;
  object-fit: contain;
}

.vc-profile__identity {
  min-width: 0;
}

.vc-profile__connection-row {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.vc-social {
  position: relative;
  display: grid;
  width: 120px;
  min-width: 120px;
  flex: 0 0 120px;
  min-height: 83px;
  align-content: end;
  padding-top: 25px;
}

.vc-social__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-social-link {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  overflow: hidden;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  transition: border-color 220ms var(--vc-ease), filter 220ms var(--vc-ease);
}

.vc-social-link--facebook {
  background: linear-gradient(145deg, #2587f5, #1264c5);
}

.vc-social-link--instagram {
  background:
    radial-gradient(circle at 30% 104%, #ffd36b 0 18%, #f04b42 39%, transparent 62%),
    linear-gradient(145deg, #9b35ba, #d62872 58%, #f08a36);
}

.vc-social-link svg {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  fill: var(--vc-sugar);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.vc-social-link--instagram svg {
  fill: none;
  stroke: var(--vc-sugar);
  stroke-width: 1.9;
}

.vc-social-link__halo,
.vc-social-link__shine {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.vc-social-link__halo {
  inset: 3px;
  border: 1px solid rgba(255, 246, 229, 0.8);
  border-radius: 14px;
  box-shadow: inset 0 0 13px rgba(255, 246, 229, 0.72), 0 0 18px rgba(255, 232, 164, 0.72);
  opacity: 0;
}

.vc-social-link__shine {
  top: -22%;
  left: -58%;
  width: 34%;
  height: 144%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0;
  transform: skewX(-18deg);
}

.vc-follow {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: grid;
  width: 120px;
  height: 25px;
  place-items: center;
  color: #ffe9ad;
  pointer-events: none;
  transform-origin: 50% 100%;
}

.vc-follow__text {
  position: relative;
  z-index: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-shadow: 0 0 11px rgba(244, 185, 31, 0.52);
  white-space: nowrap;
}

.vc-follow__aura {
  position: absolute;
  z-index: 1;
  width: 104px;
  height: 25px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244, 185, 31, 0.3), rgba(244, 185, 31, 0.08) 48%, transparent 72%);
  opacity: 0;
  pointer-events: none;
}

.vc-follow__shine {
  position: absolute;
  z-index: 3;
  top: 2px;
  left: 10px;
  width: 28px;
  height: 21px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.16) 82%, transparent);
  filter: blur(0.45px);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
}

.vc-follow__twinkle {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  opacity: 0;
  pointer-events: none;
}

.vc-follow__twinkle::before,
.vc-follow__twinkle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: #fffbe8;
  box-shadow: 0 0 7px rgba(244, 185, 31, 0.95);
  content: "";
  transform: translate(-50%, -50%);
}

.vc-follow__twinkle::before {
  width: 2px;
  height: 11px;
}

.vc-follow__twinkle::after {
  width: 11px;
  height: 2px;
}

.vc-follow__twinkle--one {
  top: -3px;
  left: 21px;
}

.vc-follow__twinkle--two {
  top: 13px;
  left: 62px;
  transform: scale(0.72);
}

.vc-follow__twinkle--three {
  top: 0;
  right: 15px;
  transform: scale(0.86);
}

.vc-follow__flash {
  position: absolute;
  z-index: 1;
  width: 38px;
  height: 18px;
  border: 1px solid rgba(255, 232, 164, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 17px rgba(244, 185, 31, 0.84), 0 0 28px rgba(255, 246, 229, 0.52);
  opacity: 0;
}

.vc-follow__spark {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 9px;
  margin: -4px 0 0 -1px;
  border-radius: 999px;
  background: #fff6d6;
  box-shadow: 0 0 8px rgba(244, 185, 31, 0.9);
  opacity: 0;
  transform-origin: 50% 50%;
}

.vc-profile__identity small,
.vc-profile__identity strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vc-profile__tools {
  display: flex;
  width: auto;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.vc-language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
  border: 1px solid var(--vc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.vc-language-switch button {
  display: grid;
  width: 31px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: rgba(216, 197, 173, 0.72);
  background: transparent;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  font-weight: 600;
  transition: color 180ms var(--vc-ease), background 180ms var(--vc-ease), box-shadow 180ms var(--vc-ease), transform 120ms ease;
}

.vc-language-switch button[aria-pressed="true"] {
  color: var(--vc-night);
  background: var(--vc-gold);
  box-shadow: 0 6px 16px rgba(244, 185, 31, 0.2);
}

.vc-profile__identity small {
  margin-bottom: 5px;
  color: var(--vc-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vc-profile__identity strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.94rem, 4vw, 1.08rem);
  letter-spacing: -0.04em;
}

.vc-share {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--vc-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 220ms var(--vc-ease), background 220ms var(--vc-ease), transform 120ms ease;
}

.vc-share span {
  font-size: 0.68rem;
  font-weight: 800;
}

.vc-share svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vc-status-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 15px 2px 13px;
  color: rgba(216, 197, 173, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.vc-status-line__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vc-atlantic);
  box-shadow: 0 0 0 4px rgba(17, 124, 140, 0.12), 0 0 16px rgba(17, 124, 140, 0.7);
}

.vc-actions {
  display: grid;
  gap: 10px;
}

.vc-action,
.vc-contact,
.vc-utility__save {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}

.vc-action:active,
.vc-contact:active,
.vc-utility__save:active,
.vc-social-link:active,
.vc-language-switch button:active,
.vc-share:active {
  transform: scale(0.985);
}

.vc-action--order {
  display: flex;
  min-height: 188px;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid rgba(244, 185, 31, 0.33);
  border-radius: 26px;
  background: #2a130b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.vc-action__photo,
.vc-action__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vc-action__photo {
  object-fit: cover;
  object-position: 54% 62%;
  filter: saturate(1.08) contrast(1.03) brightness(0.78);
  transition: transform 720ms var(--vc-ease), filter 320ms var(--vc-ease);
}

.vc-action__wash {
  background:
    linear-gradient(90deg, rgba(18, 8, 6, 0.97) 0%, rgba(18, 8, 6, 0.78) 48%, rgba(18, 8, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 8, 6, 0.62), transparent 64%);
}

.vc-action__content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 82%;
  gap: 6px;
}

.vc-action__content small,
.vc-action__copy small,
.vc-contact small,
.vc-utility small {
  color: var(--vc-muted);
  font-size: 0.64rem;
  font-weight: 600;
}

.vc-action__content > small {
  color: #ffe9ad;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.vc-action__content strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.28rem, 6vw, 1.72rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.vc-action__content p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 246, 229, 0.84);
  font-size: clamp(0.67rem, 2.6vw, 0.77rem);
  font-weight: 600;
  line-height: 1.38;
}

.vc-action__content > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: var(--vc-gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.vc-action__content b {
  font-size: 0.9rem;
}

.vc-action-list {
  display: grid;
  gap: 10px;
}

.vc-action-list .vc-action {
  display: grid;
  min-width: 0;
  min-height: 88px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--vc-line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
  transition: border-color 240ms var(--vc-ease), background 240ms var(--vc-ease), transform 180ms var(--vc-ease);
}

.vc-action--website {
  border-color: rgba(221, 54, 81, 0.26) !important;
  background: linear-gradient(145deg, rgba(221, 54, 81, 0.12), rgba(255, 255, 255, 0.024)) !important;
}

.vc-action--menu {
  border-color: rgba(244, 185, 31, 0.3) !important;
  background: linear-gradient(145deg, rgba(244, 185, 31, 0.13), rgba(255, 255, 255, 0.025)) !important;
}

.vc-action--pickup {
  border-color: rgba(17, 124, 140, 0.32) !important;
  background: linear-gradient(145deg, rgba(17, 124, 140, 0.14), rgba(255, 255, 255, 0.025)) !important;
}

.vc-action--policies {
  border-color: rgba(255, 246, 229, 0.18) !important;
  background: linear-gradient(145deg, rgba(255, 246, 229, 0.08), rgba(244, 185, 31, 0.035)) !important;
}

.vc-action__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 246, 229, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 240ms var(--vc-ease), background 240ms var(--vc-ease);
}

.vc-action__icon img {
  width: 22px;
  height: 22px;
}

.vc-action__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--vc-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vc-action__copy {
  min-width: 0;
}

.vc-action__copy small,
.vc-action__copy strong {
  display: block;
}

.vc-action__copy small {
  margin-top: 5px;
  color: rgba(216, 197, 173, 0.82);
  line-height: 1.35;
}

.vc-action__copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.73rem, 3vw, 0.88rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.vc-action__arrow {
  color: var(--vc-gold);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 240ms var(--vc-ease);
}

.vc-action--pickup .vc-action__arrow {
  color: #65c3ce;
}

.vc-action--website .vc-action__arrow {
  color: #f27c8f;
}

.vc-action__glow {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 244, 201, 0.3), transparent 58%);
  opacity: 0;
  pointer-events: none;
}

.vc-contact-grid {
  display: grid;
  gap: 10px;
}

.vc-contact-separator {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 1px 1px;
}

.vc-contact-separator span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 31, 0.36));
}

.vc-contact-separator span:last-child {
  background: linear-gradient(90deg, rgba(244, 185, 31, 0.36), transparent);
}

.vc-contact-separator p {
  margin: 0;
  color: #ffe9ad;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-align: center;
}

.vc-contact {
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--vc-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms var(--vc-ease), background 220ms var(--vc-ease), transform 180ms var(--vc-ease);
}

.vc-contact--message {
  border-color: rgba(17, 124, 140, 0.32);
  background: rgba(17, 124, 140, 0.1);
}

.vc-contact--email {
  border-color: rgba(221, 54, 81, 0.24);
  background: rgba(221, 54, 81, 0.055);
}

.vc-contact__signal {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #64d28b;
  box-shadow: 0 0 0 4px rgba(100, 210, 139, 0.1), 0 0 14px rgba(100, 210, 139, 0.48);
}

.vc-contact__mail {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid rgba(221, 54, 81, 0.28);
  border-radius: 11px;
  color: #f27c8f;
  background: rgba(221, 54, 81, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.vc-contact__copy {
  min-width: 0;
  margin-right: auto;
}

.vc-contact small,
.vc-contact strong,
.vc-contact em {
  display: block;
}

.vc-contact strong {
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}

.vc-contact small {
  margin-top: 4px;
  color: rgba(216, 197, 173, 0.84);
  line-height: 1.35;
}

.vc-contact em {
  overflow: hidden;
  margin-top: 5px;
  color: rgba(216, 197, 173, 0.6);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vc-contact b {
  color: var(--vc-gold);
  font-size: 0.78rem;
}

.vc-utility {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--vc-line);
}

.vc-utility__save {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
}

.vc-utility__save {
  gap: 10px;
  padding: 10px 12px;
  color: var(--vc-night);
  background: linear-gradient(135deg, var(--vc-gold), #f08d31);
  box-shadow: 0 12px 28px rgba(244, 185, 31, 0.17);
}

.vc-utility__save > span:first-child {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 11px;
  background: rgba(18, 8, 6, 0.12);
  font-size: 1.1rem;
}

.vc-utility__save small,
.vc-utility__save strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vc-utility__save small {
  margin-top: 3px;
  color: rgba(18, 8, 6, 0.68);
  font-size: 0.59rem;
}

.vc-utility__save strong {
  font-size: 0.76rem;
  font-weight: 800;
}

.vc-card-footer {
  display: grid;
  place-items: center;
  padding: 13px 2px 0;
}

.vc-card-footer p {
  margin: 0;
  color: rgba(216, 197, 173, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-impact {
  position: absolute;
  z-index: 8;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: rgba(255, 246, 229, 0.36);
  pointer-events: none;
}

.vc-toast {
  position: fixed;
  z-index: 20;
  right: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  min-width: 190px;
  padding: 12px 16px;
  border: 1px solid rgba(244, 185, 31, 0.34);
  border-radius: 999px;
  color: var(--vc-sugar);
  background: rgba(18, 8, 6, 0.96);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(50%, 16px);
  font-size: 0.72rem;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid #72d0dc;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .vc-social-link:hover {
    border-color: rgba(255, 246, 229, 0.64);
    filter: brightness(1.08);
    transform: translateY(-3px) scale(1.035);
  }

  .vc-share:hover,
  .vc-contact:hover {
    border-color: rgba(244, 185, 31, 0.42);
    background: rgba(255, 255, 255, 0.075);
  }

  .vc-action--order:hover .vc-action__photo {
    filter: saturate(1.14) contrast(1.04) brightness(0.84);
    transform: scale(1.045);
  }

  .vc-action-list .vc-action:hover {
    border-color: rgba(255, 246, 229, 0.38) !important;
    transform: translateY(-3px);
  }

  .vc-action:hover .vc-action__icon,
  .vc-action:hover .vc-action__arrow {
    transform: translateX(4px);
  }

  .vc-contact:hover {
    transform: translateY(-2px);
  }

  .vc-utility__save:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
  }

  .vc-language-switch button:hover:not([aria-pressed="true"]) {
    color: var(--vc-sugar);
    background: rgba(255, 255, 255, 0.07);
  }
}

@media (min-width: 700px) {
  .vc-shell {
    padding: 24px;
  }

  .vc-card {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  .vc-shell {
    padding-right: 8px;
    padding-left: 8px;
  }

  .vc-card {
    padding: 14px;
    border-radius: 30px;
  }

  .vc-profile__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
  }

  .vc-profile {
    gap: 8px;
  }

  .vc-profile__brand {
    gap: 8px;
  }

  .vc-profile__tools {
    gap: 5px;
  }

  .vc-profile__connection-row {
    gap: 7px;
  }

  .vc-social {
    width: 104px;
    min-width: 104px;
    flex-basis: 104px;
    min-height: 75px;
    padding-top: 23px;
  }

  .vc-social__links {
    gap: 8px;
  }

  .vc-social-link {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
  }

  .vc-social-link svg {
    width: 27px;
    height: 27px;
  }

  .vc-follow {
    width: 104px;
  }

  .vc-follow__text {
    font-size: 0.68rem;
  }

  .vc-follow__aura {
    width: 94px;
  }

  .vc-language-switch button {
    width: 27px;
  }

  .vc-share {
    width: 46px;
    padding: 0;
  }

  .vc-share span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .vc-action--order {
    min-height: 176px;
    padding: 17px;
  }

  .vc-action__content {
    max-width: 88%;
  }

  .vc-action-list .vc-action {
    min-height: 88px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
  }

  .vc-action__icon {
    width: 36px;
    height: 36px;
  }

  .vc-action__arrow {
    display: none;
  }

  .vc-contact {
    min-height: 88px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .vc-contact b {
    display: none;
  }

  .vc-utility__save {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .vc-card {
    transform: none !important;
  }

  .vc-drizzle path {
    opacity: 0.16;
  }

  .vc-follow__shine,
  .vc-follow__aura,
  .vc-follow__twinkle,
  .vc-follow__flash,
  .vc-follow__spark,
  .vc-social-link__halo,
  .vc-social-link__shine {
    display: none;
  }
}
