*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #0a0a0a;
  color: #e6e6e6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

main {
  position: relative;
  z-index: 3;
}

/* Background layers */

.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #140021 0, #0a0f24 35%, #020307 80%);
  z-index: 0;
}

.bg-fog,
.bg-ghost-layer,
.bg-particles,
.bg-lightning {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-fog::before,
.bg-fog::after {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0.32'/%3E%3Cstop offset='60%25' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/ radialGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23g)'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.25;
  filter: blur(10px);
  animation: fog-move 70s linear infinite;
}

.bg-fog::after {
  opacity: 0.18;
  animation-duration: 90s;
  animation-direction: reverse;
}

@keyframes fog-move {
  0% {
    transform: translate3d(-10%, 0, 0);
  }
  50% {
    transform: translate3d(10%, 0, 0);
  }
  100% {
    transform: translate3d(-10%, 0, 0);
  }
}

.bg-ghost-layer::before,
.bg-ghost-layer::after {
  content: "";
  position: absolute;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.08;
  border-radius: 50% 50% 45% 55%;
  filter: blur(8px);
  animation: ghost-drift 60s ease-in-out infinite;
}

.bg-ghost-layer::before {
  top: 10%;
  left: -10%;
}

.bg-ghost-layer::after {
  bottom: -5%;
  right: -15%;
  animation-duration: 75s;
}

@keyframes ghost-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10%, -4%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.bg-particles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0, transparent 60%);
  background-size: 2px 2px;
  opacity: 0.25;
  mix-blend-mode: screen;
  animation: particle-float 25s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -40px, 0);
  }
}

.bg-lightning::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(122, 0, 255, 0.6), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(0, 229, 255, 0.6), transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: lightning-flicker 18s linear infinite;
}

@keyframes lightning-flicker {
  0%,
  86% {
    opacity: 0;
  }
  88% {
    opacity: 0.7;
  }
  89% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.6;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Top Nav */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(2, 3, 7, 0.9),
      rgba(2, 3, 7, 0.6),
      transparent
    );
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Creepster", cursive;
  letter-spacing: 1px;
}

.logo-symbol {
  color: #39ff14;
  font-size: 20px;
}

.logo-text {
  font-size: 22px;
  color: #e6e6e6;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #39ff14);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
  transition: width 0.25s ease-out;
}

.nav-link:hover {
  color: #e6e6e6;
}

.nav-link:hover::after {
  width: 100%;
}

/*logo*/
.yuvaan-logo{
    position:absolute;
    min-width:auto;
    max-width:auto;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:5;
    opacity:0.7;
}


/* Hero */

.hero {
  min-height: 100vh;
  padding: 96px 5vw 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 500px;
  font-size:x-large;
}

.hero-tagline {
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Creepster", cursive;
  font-size: clamp(50px, 7vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #e6e6e6;
  text-shadow:
    0 0 18px rgba(0, 229, 255, 0.9),
    0 0 40px rgba(122, 0, 255, 0.8);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #c7c7c7;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out,
    color 0.18s ease-out;
}

.btn.primary {
  background: radial-gradient(circle at 20% 0, #39ff14, #00e5ff);
  color: #020307;
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.9),
    0 0 36px rgba(57, 255, 20, 0.7);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.4), transparent 50%);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 28px rgba(0, 229, 255, 1),
    0 0 48px rgba(57, 255, 20, 0.9);
}

.btn.primary:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.btn.ghost-outline {
  border: 1px solid rgba(0, 229, 255, 0.6);
  color: #e6e6e6;
  background: rgba(4, 7, 18, 0.85);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.btn.ghost-outline:hover {
  background: rgba(18, 25, 54, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.8);
}

.hero-visual {
  position: relative;
  height: min(460px, 65vh);
}

.mansion-silhouette {
  position: absolute;
  inset: 10% 8%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 15, 36, 0.9), rgba(2, 3, 7, 0.95));
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(0, 229, 255, 0.45),
    0 0 80px rgba(122, 0, 255, 0.65);
}

.mansion-silhouette::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      transparent 55%
    ),
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 22px
    );
  mix-blend-mode: soft-light;
}

.mansion-silhouette::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 20%;
  bottom: -4%;
  height: 50%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.9), transparent 55%),
    radial-gradient(circle at 70% 0, rgba(122, 0, 255, 0.9), transparent 50%);
  opacity: 0.6;
  filter: blur(18px);
}

.hero-ghost {
  position: absolute;
  width: 90px;
  height: 140px;
  border-radius: 65px 65px 55px 55px;
  background: radial-gradient(circle at 50% 5%, #ffffff, #c1f1ff);
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.8);
  opacity: 0.4;
  overflow: hidden;
}

.hero-ghost::before,
.hero-ghost::after {
  content: "";
  position: absolute;
  top: 32%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #020307;
}

.hero-ghost::before {
  left: 26%;
}

.hero-ghost::after {
  right: 26%;
}

.hero-ghost-left {
  left: 0;
  bottom: 6%;
  animation: float-ghost 11s ease-in-out infinite;
}

.hero-ghost-right {
  right: 4%;
  top: 6%;
  transform: scale(0.82);
  opacity: 0.32;
  animation: float-ghost 13s ease-in-out infinite reverse;
}

@keyframes float-ghost {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -22px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: orb-pulse 8s ease-in-out infinite;
}

.hero-orb-cyan {
  width: 120px;
  height: 120px;
  right: 2%;
  bottom: 12%;
  background: radial-gradient(circle, #00e5ff, transparent 65%);
}

.hero-orb-purple {
  width: 160px;
  height: 160px;
  left: 10%;
  top: 4%;
  background: radial-gradient(circle, #7a00ff, transparent 70%);
  animation-duration: 11s;
}

@keyframes orb-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.5;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.scroll-ghost {
  width: 22px;
  height: 32px;
  border-radius: 14px 14px 10px 10px;
  border: 1px solid rgba(0, 229, 255, 0.8);
  position: relative;
  overflow: hidden;
  animation: scroll-bob 2.2s ease-in-out infinite;
}

.scroll-ghost::before {
  content: "";
  position: absolute;
  inset: 4px 3px;
  border-radius: 999px 999px 8px 8px;
  background: rgba(255, 255, 255, 0.9);
}

.scroll-ghost::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #020307;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-text{
  font-family: "Creepster", cursive;
  font-size: clamp(20px, 5vw, 38px);
  margin-bottom: 10px;
  color: rgb(179, 39, 39);
  text-shadow:
    0 0 12px rgba(245, 173, 173, 0.8),
    0 0 24px rgba(245, 178, 178, 0.9);

  text-align: center;
  white-space: nowrap;
}

@keyframes scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Sections */

.merch-section,
.featured-section,
.about-section {
  padding: 80px 5vw 72px;
  position: relative;
  z-index: 2;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title {
  font-family: "Creepster", cursive;
  font-size: clamp(32px, 4vw, 40px);
  margin-bottom: 10px;
  text-shadow:
    0 0 16px rgba(0, 229, 255, 0.8),
    0 0 22px rgba(122, 0, 255, 0.9);
}

.section-subtitle {
  font-size: 15px;
  color: #b9b9b9;
  line-height: 1.7;
}

/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  padding: 18px 16px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.25), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(122, 0, 255, 0.25), transparent 65%),
    linear-gradient(145deg, rgba(5, 9, 22, 0.9), rgba(6, 4, 14, 0.96));
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.9),
    0 0 26px rgba(0, 229, 255, 0.45);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transform: translateY(0) translateZ(0);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    border-color 0.22s ease-out;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 18% 4% 4%;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.11), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.26s ease-out;
}

.product-ghost-shadow {
  position: absolute;
  inset: auto -10% -32%;
  height: 66%;
  background: radial-gradient(circle at 50% 0, rgba(0, 229, 255, 0.55), transparent 65%);
  opacity: 0;
  filter: blur(24px);
  transform: translateY(20px);
  transition:
    opacity 0.26s ease-out,
    transform 0.26s ease-out;
}

.product-card:hover {
  transform: translateY(-10px) translateZ(0);
  border-color: rgba(57, 255, 20, 0.8);
  box-shadow:
    0 0 32px rgba(0, 229, 255, 0.9),
    0 0 60px rgba(57, 255, 20, 0.8);
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 1;
}

.product-card:hover .product-ghost-shadow {
  opacity: 1;
  transform: translateY(0);
}

.product-image-wrapper {
  position: relative;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease-out;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.7) 100%);
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  color: #00e5ff;
  margin-bottom: 8px;
}

.product-description {
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7ee0ff;
}

.add-to-cart-btn {
  font-size: 12px;
  padding: 8px 16px;
}

/* Featured */

.featured-section {
  padding-top: 52px;
}

.featured-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.featured-visual {
  position: relative;
}

.featured-glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 229, 255, 0.9), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(57, 255, 20, 0.8), transparent 60%);
  opacity: 0.32;
  filter: blur(12px);
}

.featured-product-frame {
  position: relative;
  border-radius: 32px;
  padding: 7px;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.4), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(122, 0, 255, 0.6), transparent 70%),
    linear-gradient(145deg, rgba(7, 12, 30, 0.96), rgba(7, 3, 16, 0.98));
  box-shadow:
    0 0 50px rgba(0, 229, 255, 0.7),
    0 0 80px rgba(122, 0, 255, 0.8);
  overflow: hidden;
  display:flex;
  flex-direction: row;
  justify-content:center;
  align-items: center;
  gap: 20px;
  min-height:200px;
}

.featured-image {
  border-radius: 24px;
  height: 385px;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  width:570px;
}

.floating-ghost {
  position: absolute;
  width: 80px;
  height: 120px;
  border-radius: 60px 60px 50px 50px;
  background: radial-gradient(circle at 50% 5%, #ffffff, #e6f9ff);
  opacity: 0.4;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.9);
}

.floating-ghost::before,
.floating-ghost::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #020307;
}

.floating-ghost::before {
  left: 24%;
}

.floating-ghost::after {
  right: 24%;
}

.floating-ghost-large {
  top: -30px;
  right: -10px;
  animation: float-ghost-orbit 14s ease-in-out infinite;
}

.floating-ghost-small {
  bottom: -40px;
  left: 0;
  transform: scale(0.75);
  opacity: 0.26;
  animation: float-ghost-orbit 18s ease-in-out infinite reverse;
}

@keyframes float-ghost-orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, -26px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.featured-content {
  position: relative;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(5, 9, 22, 0.96),
    rgba(9, 0, 20, 0.98)
  );
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.65),
    0 0 50px rgba(122, 0, 255, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.6);

}

.featured-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #39ff14;
  margin-bottom: 10px;
}

.featured-title {
  font-family: "Creepster", cursive;
  font-size: 34px;
  margin-bottom: 10px;
}

.featured-description {
  font-size: 14px;
  color: #d7d7d7;
  margin-bottom: 16px;
  line-height: 1.8;
}

.featured-list {
  list-style: none;
  margin-bottom: 18px;
}

.featured-list li {
  font-size: 13px;
  color: #c1c1c1;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.featured-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #00e5ff, #39ff14);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.9);
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.featured-price {
  display: flex;
  flex-direction: column;
}

.price-main {
  font-size: 24px;
  font-weight: 600;
  color: #00e5ff;
}

.price-note {
  font-size: 14px;
  color: rgb(216, 20, 20);
}

/* sizechart */

.Sizechart{
 min-width: 300px;
 max-width: 500px;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}

.Shirts{
width:600px;
/* border: 2px solid black; */
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}

.chart{
  min-width:300px;
  max-height: 500px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.about-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(5, 9, 22, 0.96),
    rgba(9, 0, 20, 0.98)
  );
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.35),
    0 0 40px rgba(0, 0, 0, 0.9);
}

.about-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.7;
}

/* Cart panel */

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.25), transparent 65%),
    linear-gradient(160deg, rgba(6, 10, 26, 0.98), rgba(10, 1, 24, 0.98));
  box-shadow:
    -8px 0 40px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 229, 255, 0.8);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.21, 0.71, 0.35, 1);
  z-index: 20;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0, 229, 255, 0.5);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
}

.cart-header h2 {
  font-family: "Creepster", cursive;
  font-size: 26px;
}

.cart-close {
  font-size: 28px;
  line-height: 1;
  color: #e6e6e6;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 20px 16px;
}

.cart-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(4, 8, 20, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.cart-item-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-name {
  font-size: 14px;
}

.cart-item-meta {
  font-size: 12px;
  color: #a0a0a0;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: #00e5ff;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.16);
  color: #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.qty-value {
  font-size: 12px;
}

.remove-item {
  font-size: 11px;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.cart-empty {
  text-align: center;
  font-size: 14px;
  color: #a0a0a0;
  padding: 40px 10px;
}

.cart-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(0, 229, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.cart-checkout {
  width: 100%;
}

/* Scroll-top ghost button */

.scroll-top-ghost {
  position: fixed;
  right: 24px;
  bottom: 26px;
  width: 42px;
  height: 54px;
  border-radius: 24px 24px 20px 20px;
  background: radial-gradient(circle at 50% 0, #ffffff, #d7faff);
  box-shadow:
    0 0 20px rgba(0, 229, 255, 0.8),
    0 0 36px rgba(122, 0, 255, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.9);
  z-index: 15;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out;
}

.scroll-top-ghost::before {
  content: "";
  position: absolute;
  inset: 5px 6px 12px;
  border-radius: 999px 999px 12px 12px;
  background: radial-gradient(circle at 50% 20%, #ffffff, #e1f7ff);
}

.scroll-top-ghost::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #020307;
}

.scroll-top-ghost.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer */

.site-footer {
  padding: 32px 5vw 26px;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.footer-inner {
  border-radius: 24px;
  padding: 20px 18px;
  background: linear-gradient(
    145deg,
    rgba(5, 9, 22, 0.98),
    rgba(9, 0, 20, 0.98)
  );
  border: 1px solid rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Creepster", cursive;
}

.footer-text {
  font-size: 13px;
  color: #a0a0a0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.6);
  background: rgba(6, 10, 26, 0.96);
  color: #e6e6e6;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.social-icon:hover {
  background: rgba(0, 229, 255, 0.2);
}

.footer-ghost {
  position: absolute;
  width: 90px;
  height: 120px;
  border-radius: 60px 60px 50px 50px;
  background: radial-gradient(circle at 50% 0, #ffffff, #e1f7ff);
  opacity: 0.22;
  right: -40px;
  bottom: -20px;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.8);
  animation: footer-ghost-drift 18s linear infinite;
}

@keyframes footer-ghost-drift {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsiveness */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 40px;
  }

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

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

  .featured-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding-inline: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    height: 280px;
  }

  .hero-subtitle {
    max-width: none;
  }

  .merch-section,
  .featured-section,
  .about-section {
    padding-inline: 16px;
  }

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

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

  .site-footer {
    padding-inline: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-image {
    height: 260px;
  }

  .cart-panel {
    width: 100%;
  }
}
/* @media (max-width: 768px){

.hero-scroll-indicator{
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-top: 30px;
}

} */


