:root {
  --bg: #0f0e1a;
  --bg-2: #1a1428;
  --text: #f8f9ff;
  --muted: #c4b5d4;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --accent: #6366f1;
  --accent-2: #ec4899;
  --accent-3: #8b5cf6;
  --danger: #ef4444;
  --success: #10b981;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 40% -10%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.4;
  animation: drift 9s ease-in-out infinite;
}

.glow-one {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
  background: rgba(99, 102, 241, 0.6);
}

.glow-two {
  width: 360px;
  height: 360px;
  top: 30%;
  right: -120px;
  background: rgba(236, 72, 153, 0.5);
}

.glow-three {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: 35%;
  background: rgba(139, 92, 246, 0.5);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.06);
  }
}

.site-header,
main,
.site-footer {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.glass-card {
  background: linear-gradient(140deg, var(--glass), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 48px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-header {
  margin-top: 1.2rem;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.brand-overline {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand h1 {
  margin: 0.1rem 0 0;
  font-size: 1.3rem;
  font-family: "Sora", sans-serif;
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  color: #d2d9ed;
  text-decoration: none;
  font-size: 0.95rem;
}

.header-cta {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  padding: 0.67rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
}

.hero {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy-wrap,
.hero-art,
.products,
.gallery,
.checkout {
  border-radius: 22px;
}

.hero-copy-wrap {
  padding: 1.4rem;
}

.tag {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.76rem;
  border-radius: 999px;
  background: rgba(78, 243, 255, 0.18);
  border: 1px solid rgba(84, 235, 255, 0.42);
  color: #b8fbff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h2 {
  margin: 0.9rem 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin: 0;
  color: #d4daea;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
  color: #e9f2ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-row {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-row div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.7rem;
}

.stats-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  color: #bfffe6;
}

.stats-row span {
  font-size: 0.84rem;
  color: #d0d7ec;
}

.hero-art {
  overflow: hidden;
  padding: 0.55rem;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  object-fit: cover;
}

.products,
.gallery,
.signin,
.checkout {
  margin-top: 1.3rem;
  padding: 1.3rem;
}

.section-head p {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a6b0c8;
  font-weight: 700;
}

.section-head h3 {
  margin: 0.45rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
}

.product-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  border-radius: 16px;
  padding: 0.7rem 0.9rem 1rem;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.04));
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

.card-image {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 0.8rem;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  text-align: center;
  color: #d4dcf2;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(130, 100, 255, 0.22), rgba(79, 215, 255, 0.2)),
    rgba(255, 255, 255, 0.08);
}

.card h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.card p {
  margin: 0.55rem 0 0.85rem;
  color: #ced5e8;
  line-height: 1.5;
  font-size: 0.92rem;
}

.card span {
  color: #a78bfa;
  font-weight: 700;
}

.gallery-note {
  margin: 0.65rem 0 0;
  color: #d4d9eb;
  font-size: 0.92rem;
}

.gallery-note code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.16rem 0.42rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: saturate(1.06);
}

.gallery-grid img:hover {
  transform: translateY(-3px);
  filter: saturate(1.2);
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(140deg, rgba(65, 102, 160, 0.25), rgba(120, 66, 181, 0.24)),
    rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d3ddf5;
  font-size: 0.84rem;
}

.signin-layout {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.signin-form {
  display: grid;
  gap: 0.8rem;
}

.signin-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.signin-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f6f8ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  font: inherit;
}

.signin-form input::placeholder {
  color: #bbc3db;
}

.signin-form input:focus {
  outline: 2px solid rgba(99, 102, 241, 0.5);
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.signin-status {
  margin: 0;
  min-height: 1.15rem;
  color: #10b981;
  font-size: 0.9rem;
}

.signin-note {
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(150deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.signin-note h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
}

.signin-note ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #eef2ff;
  line-height: 1.55;
}

.checkout-layout {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.payment-form {
  display: grid;
  gap: 0.8rem;
}

.payment-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.payment-form input,
.payment-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f6f8ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  font: inherit;
}

.payment-form input::placeholder {
  color: #bbc3db;
}

.payment-form input:focus,
.payment-form select:focus {
  outline: 2px solid rgba(99, 102, 241, 0.5);
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.full {
  width: 100%;
}

.status {
  margin: 0;
  min-height: 1.15rem;
  color: #10b981;
  font-size: 0.9rem;
}

.summary {
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(150deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.summary h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
}

.summary ul {
  margin: 0.8rem 0;
  padding-left: 1rem;
  color: #eef2ff;
  line-height: 1.55;
}

.summary-amount {
  margin: 0.35rem 0 0;
  color: #a78bfa;
}

.summary-amount strong {
  font-size: 1.3rem;
}

.site-footer {
  padding: 1.8rem 0 2.2rem;
  text-align: center;
  color: #a6b0c8;
}

.hidden {
  display: none;
}

/* Custom header/logo styling */
.minimalist-top {
  justify-content: center;
  min-height: 58px;
  position: relative;
  background: linear-gradient(130deg, rgba(8, 8, 10, 0.92), rgba(23, 30, 48, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.top-link {
  color: #eceffb;
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.top-signin-btn {
  position: absolute;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #1b1204;
  background: linear-gradient(120deg, #f8dfa1, #cda24f);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.44rem 0.76rem 0.44rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.signin-icon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff3d6;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-poster {
  display: block;
  margin-top: 0.65rem;
  padding: 2rem 1rem 2.2rem;
  border-radius: 0 0 22px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(205, 162, 79, 0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.14), transparent 35%),
    #0b0b0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-logo-panel {
  width: min(96%, 920px);
  margin: 0 auto;
  border-radius: 18px;
  padding: 1.15rem 1rem 1rem;
  background:
    linear-gradient(130deg, rgba(2, 2, 2, 0.8), rgba(14, 14, 15, 0.9)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(0, 0, 0, 0.04) 2px,
      rgba(0, 0, 0, 0.04) 4px
    );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 30px 60px -40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand-logo-image {
  width: min(100%, 860px);
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}

.logo-the {
  margin: 0 0 0.2rem;
  color: #efefef;
  letter-spacing: 0.6em;
  font-size: clamp(0.75rem, 1vw, 1rem);
  text-transform: uppercase;
}

.logo-name {
  margin: 0;
  line-height: 0.92;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 10vw, 7.2rem);
  font-weight: 600;
}

.logo-leading-c {
  position: relative;
  color: #d4ae5c;
}

.logo-gift {
  position: absolute;
  left: 0.39em;
  top: 0.66em;
  font-size: 0.15em;
  font-family: "Outfit", sans-serif;
  color: #d4ae5c;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo-rest {
  color: #f7f7f7;
}

.logo-tagline {
  margin: 0.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #d4ae5c;
  font-size: clamp(0.72rem, 1vw, 1.03rem);
  letter-spacing: 0.22em;
}

.logo-tagline span {
  width: min(78px, 12vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 174, 92, 0.95), transparent);
}

.poster-subtitle {
  margin: 1.4rem auto 0;
  max-width: 960px;
  color: #d5d8e6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.9vw, 1.9rem);
  letter-spacing: 0.11em;
}

.poster-actions {
  justify-content: center;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    min-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .signin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-signin-btn {
    position: static;
  }

  .top-link {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap,
  .hero-art,
  .products,
  .gallery,
  .signin,
  .checkout {
    border-radius: 16px;
  }

  .card-image {
    height: 190px;
  }
}
