* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  overflow-y: scroll;
}

@font-face {
  font-family: shabnam2;
  src: url(../font/Shabnam-Light-FD.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}

:root {
--main-strong: #f45547;
  --main-tint: #f1e3e2;

  /* --main-strong: #f45547;
  --main-tint: #f1e3e2; */

  --secondary-strong: #25215e;
  --secondary-tint: #e6e6f7;

  --gray0: rgb(20, 20, 20);
  --gray1: rgb(60, 60, 60);
  --gray2: rgb(120, 120, 120);
  --gray3: rgb(170, 170, 170);
  --gray4: rgb(230, 230, 230);
  --gray5: rgb(248, 248, 248);
  --gray6: rgb(250, 250, 250);

  --success-color: #71b01d;
  --error-color: #f87970;

  --success: #3ca041ff;
  --pending: #f9a825;
  --deleted: #505050ff;
  --expired: #d32f2f;
  --rejected: #b71c1c;

  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --active: 0.3;
  --duration: 0.3s;
  --duration-md: 0.5s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: shabnam2;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

button {
  transition: var(--duration);
}

button:active {
  opacity: var(--active);
}

.login-container {
  margin: 20px;
  max-width: 450px;
  width: 100%;
  background-color: white;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  overflow: visible;
  position: relative;
  transform-origin: center;
  border-radius: var(--radius-lg) var(--radius-lg);
  padding: 25px;
  font-family: shabnam2;
  margin-top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s;
}

body.tour-active .login-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body:not(.tour-active) .login-container {
  opacity: 1;
  visibility: visible;
}

.login-header {
  padding: 20px 0px;
  color: white;
  text-align: center;
  position: relative;
  overflow: visible;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.logo-container {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%); 
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform-origin: center center;
}

.logo {
  font-size: 32px;
  background: linear-gradient(
    135deg,
    var(--secondary-strong),
    var(--main-strong)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: flex;
}

.logo img {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.login-header h1 {
  color: var(--gray0);
  font-size: 20px;
  margin-top: 30px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.login-header p {
  color: var(--gray1);
  font-size: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.login-content {
  position: relative;
}

.step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 30px;
}

.phone-info {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
  color: var(--gray1);
}

.input-with-prefix {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray4);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: white;
  position: relative;
  transition: var(--duration);
}

.input-with-prefix:focus-within {
  border-color: var(--main-strong);
  box-shadow: 0 0 0 4px rgb(0, 0, 0, 0.1);
}

.form-control {
  flex: 1;
  border: none;
  padding: 18px;
  font-size: 15px;
  outline: none;
  background-color: transparent;
  direction: ltr;
  text-align: left;
  font-weight: 500;
  transition: var(--duration);
}


.form-control::placeholder {
  color: var(--gray3);
}

.form-control:focus::placeholder {
  opacity: 0.5;
}

.btn {
  display: block;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gray4);
  color: var(--gray2);
}

.btn-primary.active {
  background:var(--main-strong);
  color: white;
}

#verify-btn:not(:disabled) {
  background:var(--main-strong);
  color: white;
}

#verify-btn:not(:disabled):active {
  opacity: var(--active);
}

.btn:disabled {
  background: var(--gray4);
  color: var(--gray2);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn:disabled::before {
  display: none;
}

.code-inputs-container {
  margin: 30px 0;
}

.code-inputs {
  display: flex;
  justify-content: center;
  direction: ltr;
  gap: 12px;
}

.code-input {
  flex: 0 0 62px;
  width: 62px;
  height: 80px;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  border: 2px solid var(--gray4);
  border-radius: var(--radius-md);
  background-color: white;
  transition: var(--duration);
}
.code-input:focus {
  border-color: var(--main-strong);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  outline: none;
}

.code-input.filled {
  border-color: var(--main-strong);
  background: linear-gradient(135deg, var(--main-tint), white);
}

.timer {
  text-align: center;
  font-size: 14px;
  margin: 25px 0;
  color: var(--gray2);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.resend-link {
  text-align: center;
  margin: 15px 0;
  font-size: 13px;
}

.resend-link a {
  color: var(--main-strong);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--main-tint);
  gap: 4px;
  transition: var(--duration);
}

.resend-link a:active {
  opacity: var(--active);
}

.resend-link a i {
  margin-right: 8px;
}

.resend-link a.disabled {
  color: var(--gray3);
  background: var(--gray5);
  pointer-events: none;
  transform: none;
}

.error-message {
  color: var(--error-color);
  font-size: 0.95rem;
  margin-top: 10px;
  display: none;
  align-items: center;
  background: rgba(248, 121, 112, 0.1);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--error-color);
}

.error-message i {
  margin-left: 8px;
  font-size: 1.1rem;
}

.success-message {
  color: var(--success-color);
  font-size: 0.95rem;
  margin-top: 10px;
  display: none;
  align-items: center;
  background: rgba(113, 176, 29, 0.1);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--success-color);
}

.success-message i {
  margin-left: 8px;
  font-size: 1.1rem;
}

.edit-phone {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gray5);
}

.edit-phone a {
  color: var(--secondary-strong);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border-radius: var(--radius-md);
  background: var(--secondary-tint);
  gap: 4px;
  transition: var(--duration);
}

.edit-phone a:active {
  opacity: var(--active);
}

.edit-phone a i {
  margin-right: 8px;
}

.form-control:valid {
  background-color: rgba(113, 176, 28, 0.03);
}

.code-input:valid {
  border-color: var(--main-strong);
}

.form-control {
  flex: 1;
  border: none;
  padding: 18px;
  font-size: 15px;
  outline: none;
  background-color: transparent;
  direction: ltr;
  text-align: left;
  font-weight: 500;
}

@media (max-width: 350px) {
  .form-control {
    padding: 15px;
    font-size: 12px;
  }

  .btn {
    padding: 15px;
    font-size: 12px;
  }

  .code-input {
    width: 45px;
    flex: 0 0 45px;
    height: 50px;
  }

  .phone-info {
    font-size: 14px;
  }

  .timer {
    font-size: 12px;
  }

  .resend-link {
    font-size: 11px;
  }

  .edit-phone a {
    font-size: 13px;
    padding: 10px 20px;
  }
}

.sapato-info {
  text-align: center;
  margin-top: 20px;
}

.sapato-link {
  color: var(--main-strong);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: var(--main-tint);
  border: 1px solid var(--gray5);
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: var(--duration);
}

.sapato-link:active {
  opacity: var(--active);
}

.sapato-link i {
  font-size: 16px;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.8) translateY(30px);
  opacity: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-header {
  padding: 15px;
  border-bottom: 2px solid var(--gray5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--main-tint), white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}

.modal-header h2 {
  color: var(--gray0);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.modal-header h2 i {
  color: var(--main-strong);
  font-size: 22px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray2);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.modal-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(80vh - 120px);
}

.sapato-description {
  text-align: center;
}

.sapato-logo {
  margin-bottom: 20px;
}

.sapato-logo img {
  width: 100%;
}

.sapato-description h3 {
  color: var(--gray0);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    var(--main-strong),
    var(--secondary-strong)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapato-description p {
  color: var(--gray1);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: right;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: right;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--gray1);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray5);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--main-strong);
  font-size: 16px;
  min-width: 20px;
}

.sapato-motto {
  background: linear-gradient(
    135deg,
    var(--main-tint),
    rgba(113, 176, 28, 0.05)
  );
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 25px;
  border-right: 4px solid var(--main-strong);
  position: relative;
}

.sapato-motto i {
  color: var(--main-strong);
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.3;
}

.sapato-motto p {
  color: var(--gray0);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  text-align: center;
}

.modal-footer {
  padding: 20px 30px 30px;
  text-align: center;
  border-top: 2px solid var(--gray5);
  background: var(--gray6);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: sticky;
  bottom: 0;
  z-index: 10;
  flex-shrink: 0;
}

.modal-btn {
  background: var(--main-strong);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  justify-content: center;
  transition: var(--duration);
}

.modal-btn:active {
  opacity: var(--active);
}

/* Responsive */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 20px;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px 20px 15px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-body {
    padding: 20px;
    max-height: calc(90vh - 100px);
    overflow-x: hidden;
  }

  .sapato-description h3 {
    font-size: 20px;
  }

  .sapato-description p {
    font-size: 14px;
  }

  .features-list li {
    font-size: 14px;
    padding: 10px 0;
  }

  .sapato-motto p {
    font-size: 14px;
  }

  .modal-footer {
    padding: 15px 20px 20px;
  }

  .modal-btn {
    padding: 12px 25px;
    font-size: 14px;
    min-width: 120px;
  }
}

/* virtualTourOverlay */
.virtual-tour-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--gray0);
  overflow: hidden;
}

.virtual-tour-overlay.show {
  opacity: 1;
}

.virtual-tour-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.virtual-tour-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.98) translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.virtual-tour-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.virtual-tour-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.virtual-tour-background .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.6) saturate(1.2);
}

.virtual-tour-slide.active .bg-image {
  transform: scale(1);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  backdrop-filter: blur(1px);
}

.tour-logo-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInDownLogo 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes fadeInDownLogo {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.tour-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 12px;
  background:white;
  border: 2px solid var(--gray5);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.tour-logo img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0 , 0.5));
}

.virtual-tour-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  text-align: center;
}

.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  border: 2px solid var(--gray3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.icon-circle i {
  font-size: 50px;
  color: #fff;
  animation: iconPulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.icon-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  animation: glowPulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
    filter: brightness(1.2);
  }
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

.text-content {
  color: var(--gray6);
  width: 100%;
}

.virtual-tour-title {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInUpTitle 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.title-line {
  display: block;
  color: var(--gray6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
  animation: fadeInUpLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.title-line .title-accent {
  color: var(--main-strong);
}

.title-line.highlight {
  color: var(--gray6);
  animation: fadeInUpLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes gradientShiftSmooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUpTitle {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUpLine {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.virtual-tour-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray6);
  font-weight: 400;
  margin-bottom: 25px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUpDesc 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  padding: 0 10px;
}

.feature-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUpBadges 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes fadeInUpDesc {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpBadges {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray6);
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge i {
  color: var(--main-strong);
  font-size: 12px;
}

.virtual-tour-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  width: calc(100% - 40px);
  justify-content: space-between;
}

.virtual-tour-btn {
  background: var(--main-strong) ;
  color: var(--gray6);
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: shabnam2;
  position: relative;
  overflow: hidden;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.virtual-tour-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.virtual-tour-btn:active::before {
  width: 200px;
  height: 200px;
}

.virtual-tour-btn:active {
  transform: scale(0.95);
  opacity: var(--active);
}

.btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-text {
  font-size: 13px;
}

.virtual-tour-btn i {
  font-size: 12px;
}

.virtual-tour-btn.finish-btn {
  background: var(--main-strong);
  box-shadow: 0 6px 20px rgba(37, 33, 94, 0.4);
}

.virtual-tour-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.tour-dot:active {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.tour-dot.active {
  width: 32px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--main-strong), var(--main-tint));
}

.dot-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.tour-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 30;
  max-width: 600px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--main-strong), var(--main-tint));
  width: 33.33%;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 400px){
  .tour-logo img {
    width:150px;
  }
  .icon-circle{
    width: 105px;
    height: 105px;
  }
  .icon-circle i {
    font-size: 40px;
  }
  
  .virtual-tour-title {
    font-size: 30px;
  }
  
  .virtual-tour-description{
    font-size: 14px;
  }

  .badge{
    font-size: 12px;
  }

  .btn-text {
    font-size: 12px;
  }
  
  .feature-badges {
    gap: 8px;
  }
}