* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

.virtual-tryOn-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #2d4a3e 0%, #1a2f24 50%, #0f1a14 100%);
  position: relative;
  padding: 80px 20px 0px;
  display: flex;
  align-items: center;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Header Section */
.header-content {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.header-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-title {
  font-size: 46px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 10px;

  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
  font-family: "Robecha-Daniera-Regular";
  color: #fff;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  }
}

.subtitle {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 300;
  max-width: 770px;
}

.highlight {
  color: #fff;
  font-weight: 600;
  position: relative;
}

/* .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D9B771, transparent);
  animation: highlightPulse 2s ease-in-out infinite;
} */

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Info Cards */
.info-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
  max-width: 92%;
  margin: auto;
}

.info-card {
  background: #17291e;
  border: 1px dashed #fff;
  border-radius: 12px;
  padding: 20px 34px;
  padding-right: 20px;
  padding-bottom: 30px;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  backdrop-filter: blur(10px);
}

.info-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  font-size: 29px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #d9b771;
  margin-bottom: 25px;
  text-align: left;
  position: relative;
  font-family: "Robecha-Daniera-Regular";
}

/* Steps and Benefits */
.steps-list,
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0px !important;
}

.step-item,
.benefit-item {
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-item:hover,
.benefit-item:hover {
  transform: translateX(10px);
}

.step-number {
  color: #d9b771;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  width: 20px;
  padding-top: 2px;
}

.bullet {
  color: #d9b771;
  font-size: 26px;
  font-weight: bold;
  flex-shrink: 0;
  width: 20px;
  margin-top: -10px;
}

.step-item p,
.benefit-item p {
  color: #fff;
  opacity: 0.6;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out 0.4s;
}

.cta-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  margin-top: 8rem;
  font-size: 3rem;
  font-weight: 200;
  color: #d9b771;
  margin-bottom: 50px;
  line-height: 1.1;
  font-family: "Robecha-Daniera-Regular";
}
@media (max-width: 767px) {
  .cta-title {
    margin-top: 4rem;
  }
}

.cta-button {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #d9b771;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); */
}

.cta-button:hover {
  /* transform: scale(1.05); */
  background: transparent !important;
  border: 1px solid #d9b771 !important;
  color: #d9b771 !important;
  /* box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5); */
}

.button-text2 {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
  font-weight: 400;
  color: #050405;
  line-height: 1.1;
  text-align: center;
}

.cta-button:hover .button-text2 {
  /* transform: scale(1.05); */

  color: #d9b771 !important;
  /* box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5); */
}

/* Animations */
.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-cards-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .virtual-tryOn-section {
    padding: 60px 15px 0px;
  }

  .header-content {
    margin-bottom: 60px;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .info-card {
    padding: 30px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 160px;
    height: 160px;
  }

  .button-text2 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .virtual-tryOn-section {
    padding: 40px 10px 0px;
  }

  .main-title {
    font-size: 2rem;
  }

  .info-card {
    padding: 25px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 140px;
    height: 140px;
  }

  .button-text2 {
    font-size: 0.9rem;
  }

  .step-item,
  .benefit-item {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .info-cards-container {
    gap: 30px;
    margin-bottom: 60px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .info-card {
    padding: 20px;
  }

  .steps-list,
  .benefits-list {
    gap: 20px;
  }
}

.vto-bg{
  background-color: transparent !important;
}
.vto-input:-webkit-autofill,
.vto-input:-webkit-autofill:hover,
.vto-input:-webkit-autofill:focus,
.vto-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: var(--brand-white) !important;
  caret-color: var(--brand-white);
  transition: background-color 9999s ease-in-out 0s;
}

.vto-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--brand-primary) inset !important;
  -webkit-text-fill-color: var(--brand-white) !important;
}
.vto-input {
  transition: background-color 9999s ease-in-out 0s;
}

.py-\[20px\] {
    padding-block: 20px;
}

.border-\[var\(--brand-white\)\] {
    border-color: var(--brand-white);
}

.mx-\[40px\] {
    margin-inline: 40px;
}

.pr-10 {
    padding-right: calc(var(--spacing) * 10);
}

.py-1 {
    padding-block: calc(var(--spacing) * 1);
}

.p-\[30px\] {
    padding: 30px;
}

.gap-\[20px\] {
    gap: 20px;
}

.py-\[8px\] {
    padding-block: 8px;
}

.px-\[15px\] {
    padding-inline: 15px;
}

.py-\[12px\] {
    padding-block: 12px;
}

.px-\[20px\] {
    padding-inline: 20px;
}

.mt-\[30px\] {
    margin-top: 30px;
}

.mx-auto {
    margin-inline: auto;
}

.pt-\[50px\] {
    padding-top: 50px;
}

.px-\[50px\] {
    padding-inline: 50px;
}

.py-\[30px\] {
    padding-block: 30px;
}

.px-\[10px\] {
    padding-inline: 10px;
}

.mb-\[12px\] {
    margin-bottom: 12px;
}

.mb-\[60px\] {
    margin-bottom: 60px;
}