body {
  margin: 0;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  background: #000;
  min-height: 100vh;
}

/* Header */
.header {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  border-bottom: 2px solid #000;
}
.logo-3d {
  height: 46px;
  width: auto;
  transition: transform 0.4s cubic-bezier(.32,1.56,.65,1);
}
.logo-3d:hover {
  transform: scale(1.11) rotate(-6deg);
}
.header-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.header-links a,
.header-links-sign button {
  color: #fff;
  padding: 7px 18px;
  text-decoration: none;
  border-radius: 18px;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  margin: 0 2px;
  background: none;
  font-weight: bold;
  font-size: 1.08rem;
  letter-spacing: 1px;
  transition: color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.header-links a:hover,
.header-links-sign button:hover {
  color: #ff4f9d;
  box-shadow: 0 0 16px #fc466b77;
  background: none;
}
.sign-btn-3d {
  border: none;
  background: none;
  color: #fff;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  border-radius: 18px;
  padding: 7px 20px;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s;
}
.sign-btn-3d:hover {
  color: #ff4f9d;
  box-shadow: 0 0 16px #fc466b77;
}

/* Responsive Header for Mobile */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 2vw 2px 2vw;
  }
  .logo-3d {
    margin-bottom: 6px;
    margin-left: 2px;
  }
  .header-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 2px;
    width: 100%;
    gap: 2px;
    justify-content: flex-start;
  }
  .header-links a, .header-links-sign button {
    font-size: 1rem;
    padding: 7px 11px;
    margin: 0 1.5px;
    border-radius: 12px;
  }
}

/* Landing Page & Hoodie Image */
.landing-page-3d {
  background: linear-gradient(120deg, #fc466b 0%, #3f5efb 100%);
  box-shadow: none;
  border-radius: 0 0 50px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 50px 7vw 50px 7vw;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.landing-page-left-section {
  max-width: 440px;
  z-index: 2;
}
.wbbg-3d {
  width: 360px;
  max-width: 100%;
  height: 220px;
  max-height: 220px;
  border-radius: 22px;
  display: block;
  margin: 18px auto 0 auto;
  object-fit: cover;
  background: #fff;
}
@media (max-width: 900px) {
  .landing-page-3d, .main-container {
    padding: 24px 3vw;
  }
  .wbbg-3d {
    width: 98vw;
    max-width: 420px;
    height: 170px;
    max-height: 190px;
    border-radius: 18px;
    margin: 10px auto 0 auto;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .landing-page-3d {
    flex-direction: column;
    border-radius: 0 0 32px 32px;
    padding: 20px 2vw 32px 2vw;
  }
  .landing-page-left-section {
    max-width: 98vw;
    width: 100%;
  }
  .wbbg-3d {
    width: 93vw !important;
    max-width: 97vw !important;
    height: 180px !important;
    max-height: 190px !important;
    border-radius: 14px;
    margin: 10px auto 0 auto;
    object-fit: cover;
    display: block;
    background: #fff;
  }
}

/* Search bar section */
.landing-page-search-3d {
  margin: 1.5rem 0 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
.input-3d {
  border-radius: 32px;
  border: none;
  outline: none;
  height: 38px;
  padding: 0 18px;
  font-size: 1.1rem;
  box-shadow: none;
  width: 65%;
  background: #e949bb;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  transition: box-shadow 0.2s;
}
.input-3d:focus {
  box-shadow: 0 0 8px #00c3ff99;
  background: #fff;
  color: #222;
}
.btn-3d {
  border-radius: 32px;
  border: none;
  outline: none;
  height: 38px;
  margin-left: 12px;
  padding: 0 28px;
  background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
  color: #fff;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px #fc466b44;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.2s;
}
.btn-3d:hover {
  background: linear-gradient(90deg, #ffff1c 0%, #00c3ff 100%);
  color: #222;
  box-shadow: 0 4px 24px #fc466b88;
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .landing-page-search-3d {
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
    gap: 8px;
  }
  .input-3d {
    width: 68%;
    font-size: 1.02rem;
    height: 34px;
    padding: 0 12px;
  }
  .btn-3d {
    font-size: 1rem;
    padding: 0 13px;
    margin-left: 4px;
    height: 34px;
    min-width: 78px;
  }
}

/* Welcome, Title, Gradient Text */
.welcome-glow {
  font-family: 'Orbitron', 'Roboto', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #fff8, 0 0 4px #00c3ff88;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.landing-title-3d {
  font-size: 2.9rem;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  margin: 0.4rem 0 1.4rem 0;
  text-shadow: 0 4px 24px #fc466b44, 0 0 8px #3f5efb33;
  letter-spacing: 1px;
  font-weight: 700;
}
.gradient-text {
  background: linear-gradient(90deg, #ffff1c 0%, #00c3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 7px #fff9, 0 0 3px #00c3ff88;
}

/* Main Section - pure black */
.main-container {
  background: #000;
  padding: 45px 7vw;
}
.mainspan-3d, .mainspan {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  text-shadow: 0 0 10px #fff, 0 0 3px #fff;
  background: none;
  border-radius: 12px;
  padding: 6px 22px;
}
.main-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}
.main-section h1 {
  margin-top: 0;
  font-size: 2.1rem;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  font-weight: bold;
  background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px #3f5efb77;
}
.main-section-button-3d {
  border-radius: 32px;
  border: none;
  outline: none;
  height: 38px;
  padding: 0 32px;
  background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
  color: #fff;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px #fc466b44;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.2s;
  margin-left: 18px;
  margin-bottom: 0;
  margin-top: 0;
}
.main-section-button-3d:hover {
  background: linear-gradient(90deg, #ffff1c 0%, #00c3ff 100%);
  color: #222;
  box-shadow: 0 4px 24px #00c3ff88;
  transform: scale(1.07);
}
@media (max-width: 600px) {
  .main-container {
    padding: 18px 1vw;
    width: 100vw;
    box-sizing: border-box;
  }
  .main-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
    width: 100%;
  }
  .main-section h1 {
    font-size: 1.21rem;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 0;
    white-space: nowrap;
  }
  .main-section-button-3d {
    font-size: 0.92rem;
    padding: 0 18px;
    height: 33px;
    margin-left: 8px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 18px;
  }
}

/* Card 3D Animated */
.main-cards {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.card-3d {
  width: 320px;
  max-width: 94vw;
  background: rgba(255,255,255,0.11);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37), 0 2px 14px #fc466b44;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.32,1.56,.65,1), box-shadow 0.35s;
  position: relative;
  margin: 0 auto 18px auto;
}
.card-3d:hover {
  transform: scale(1.07) translateY(-12px) rotate(-2.5deg);
  box-shadow: 0 16px 54px 0 #fc466b77, 0 1px 18px #00c3ff77;
}
.animated-card {
  animation: popIn 1.2s cubic-bezier(.32,1.56,.65,1);
}
@keyframes popIn {
  0% {transform: scale(0.7);}
  70% {transform: scale(1.09);}
  100% {transform: scale(1);}
}
.card-photo-image-3d {
  width: 100%;
  height: 150px;
  max-height: 170px;
  object-fit: contain;
  border-radius: 28px 28px 0 0;
  box-shadow: none;
  display: block;
  background: #fff;
}
.card-info-3d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}
.card-name p {
  margin: 0;
  font-size: 1rem;
  color: #3f5efb;
  font-family: 'Orbitron', 'Roboto', sans-serif;
}
.card-name h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #fc466b;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  font-weight: bold;
}
.shopping-icon-3d {
  width: 44px;
  filter: none;
  transition: transform 0.2s, filter 0.2s;
}
.shopping-icon-3d:hover {
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 2px 18px #fc466b99);
}

/* Card mobile fix */
@media (max-width: 600px) {
  .main-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .card-3d {
    width: 92vw;
    max-width: 98vw;
    border-radius: 16px;
    margin: 0 auto 12px auto;
  }
  .card-photo-image-3d {
    width: 100%;
    height: 102px;
    max-height: 110px;
    object-fit: contain;
    border-radius: 16px 16px 0 0;
    margin: 0 auto;
    background: #fff;
    display: block;
  }
  .card-info-3d {
    padding: 7px 10px;
  }
  .card-name p {
    font-size: 0.98rem;
  }
  .card-name h3 {
    font-size: 1.09rem;
  }
  .shopping-icon-3d {
    width: 34px;
  }
}

/* Modal/password styles */
.modal-msg {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 310px;
  background: linear-gradient(120deg, #fc466b 0%, #3f5efb 100%);
  color: #fff;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  border-radius: 22px;
  box-shadow: 0 10px 40px #fc466b88, 0 0 32px #3f5efb88;
  padding: 2.2rem 2.2rem 1.3rem 2.2rem;
  z-index: 9999;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-align: center;
  border: 2px solid #fff2;
}
.modal-icon {
  font-size:2.5rem;
  margin-bottom:0.5rem;
  text-shadow:0 0 24px #00c3ff77;
  display:inline-block;
}
.modal-input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1rem 0 0.6rem 0;
  position: relative;
  width: 100%;
}
.modal-input {
  width: 70%;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  border: none;
  font-size: 1.07rem;
  font-family: 'Roboto', 'Orbitron', sans-serif;
  background: #e9f1ff;
  color: #222;
  box-shadow: 0 1px 12px #3f5efb44;
  text-align: left;
  box-sizing: border-box;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  margin-right: 10px;
}
.modal-input:focus {
  background: #fff;
  box-shadow: 0 2px 18px #00c3ff99;
  color: #000;
}
.modal-eye-btn {
  border: none;
  background: none;
  color: #3f5efb;
  font-size: 1.18rem;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-eye-btn:hover {
  background: #00ff7422;
  color: #fc466b;
}
#modal-signoutall-btn, #modal-cancel-btn, #modal-ok-btn, .modal-btn-cancel, .modal-btn-ok {
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg,#00ff74 0%,#3f5efb 100%);
  color: #222;
  font-weight: bold;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  cursor: pointer;
  font-size: 1.08rem;
  box-shadow: 0 0 10px #00ff7455;
  transition: background 0.2s, color 0.2s;
  min-width: 110px;
  margin: 6px 7px 0 7px;
  padding: 0.6rem 1.5rem;
  display: inline-block;
}
#modal-cancel-btn, .modal-btn-cancel {
  background: #fff !important;
  color: #fc466b !important;
}
#modal-cancel-btn:hover, .modal-btn-cancel:hover {
  background: linear-gradient(90deg,#fc466b 0%,#3f5efb 100%) !important;
  color: #fff !important;
}
#modal-ok-btn:hover, #modal-signoutall-btn:hover, .modal-btn-ok:hover {
  background: linear-gradient(90deg,#fc466b 0%,#3f5efb 100%) !important;
  color: #fff !important;
}
.back-arrow {
  display: none;
}

.sign-btn-3d-ab {
  border: none;
  background: none;
  color: #fff;
  font-family: 'Orbitron', 'Roboto', sans-serif;
  border-radius: 18px;
  padding: 7px 20px;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s;
}

