/* ---------------------------
   RESET / BASE
----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* PWE Colour System */
  --nav-bg: #111;
  --nav-text: #fff;
  --nav-text-muted: #aaa;
  --nav-accent: #e63946;

  /* Body */
  --body-text: #fff;

  /* Layout */
  --nav-height: 72px;
  --nav-padding: 1.25rem;
  --transition: 0.25s ease;

  /* Typography */
  --font-heading: "Montserrat", sans-serif; /* Titles, bold, strong */
  --font-body: "Quicksand", sans-serif; /* Body text, paragraphs */
}

body {
  font-family: var(--font-body);
  background: #000;
  color: var(--body-text);
}

p {
  color: var(--body-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.nav-links a,
.btn,
.hero-title,
.hero-eyebrow {
  font-family: var(--font-heading);
  color: var(--nav-text);
}

/* ---------------------------
   NAVBAR WRAPPER
----------------------------*/
.navbar {
  width: 100%;
  height: var(--nav-height);
  background: #050509; /* solid dark to match hero vibe */
  color: var(--nav-text);
  padding: 0 var(--nav-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;

  /* Softer, cleaner edge */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ---------------------------
   LOGO
----------------------------*/
.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  cursor: pointer;
  user-select: none;
  color: var(--nav-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* ---------------------------
   NAV LINKS
----------------------------*/
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--nav-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.4rem 0;
  position: relative;
}

/* Animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--nav-accent);
  transition: var(--transition);
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--nav-text);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

/* Optional: mark the current page */
.nav-links a.is-active {
  color: var(--nav-text);
}

.nav-links a.is-active::after {
  width: 100%;
}

/* ---------------------------
   RIGHT-SIDE ACTIONS
----------------------------*/
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* Login button (when logged OUT) */
.nav-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  background: var(--nav-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.nav-btn:hover {
  background: #d62839;
}

/* ---------------------------
   USER DROPDOWN (when logged IN)
----------------------------*/
.nav-user {
  position: relative;
}

/* Button that shows avatar + name */
.user-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.8rem;
  background: rgba(15, 15, 25, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  cursor: pointer;
  color: var(--nav-text);
  font: inherit;
  transition: var(--transition);
}

.user-btn:hover {
  border-color: var(--nav-accent);
  background: rgba(15, 15, 25, 1);
}

/* Initials avatar circle */
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--nav-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* Name + email text */
.user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.user-meta b {
  font-size: 0.85rem;
}

.user-meta small {
  font-size: 0.7rem;
  color: var(--nav-text-muted);
}

/* Dropdown chevron */
.user-btn .chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Dropdown panel */
.user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: #050509;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  padding: 6px 0;
  z-index: 60;
}

/* Hidden via [hidden] attribute by default */
.user-menu[hidden] {
  display: none;
}

/* Items inside dropdown */
.menu-item {
  display: block;
  width: 100%;
  padding: 0.55rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  color: #e5e7eb;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Logout style */
.menu-item.danger {
  color: #f97373;
}

/* Cart icon container */
.nav-cart {
  position: relative;
  margin-left: 1.2rem;
}

/* Link styling */
.nav-cart-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* Simple white cart icon */
.nav-cart-icon {
  width: 24px;
  height: 24px;
  color: #fff;
  opacity: 0.9;
  transition: opacity .2s ease;
}

.nav-cart-link:hover .nav-cart-icon {
  opacity: 1;
}

/* Red badge */
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #e63946; /* PWE red */
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  min-width: 1rem;
  text-align: center;
  line-height: 1;
}

/* Empty cart dims the badge */
.nav-cart-badge.is-empty {
  opacity: 0.3;
}

.nav-cart {
  list-style: none;
}
.nav-cart::marker {
  content: "";
}


/* ---------------------------
   MOBILE MENU
----------------------------*/
.nav-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--nav-text);
  border-radius: 4px;
  transition: var(--transition);
}

/* Mobile Behavior */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #050509;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem 2.5rem;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========== HERO SLIDER ========== */

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  background: #000;
  color: #fff;
}

/* Each slide (desktop / default behaviour) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(4%);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

/* Slide colour themes */
.hero-slide--red {
  background: radial-gradient(
    circle at top left,
    #e50000 0%,
    #000 55%,
    #000 100%
  );
}

.hero-slide--purple {
  background: radial-gradient(
    circle at top right,
    #7c3aed 0%,
    #000 55%,
    #000 100%
  );
}

.hero-slide--dark {
  background: radial-gradient(
    circle at center,
    #1f2933 0%,
    #000 60%,
    #000 100%
  );
}

/* Slide content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 16px;
  max-width: 1200px;
}

/* Layout inside slide */
.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* TEXT AREA */
.hero-copy {
  flex: 1.2;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.hero-text {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: #e50000;
  color: #fff;
  box-shadow: 0 10px 30px rgba(229, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(229, 0, 0, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* PRODUCT IMAGE AREA */
.hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-card {
  background: transparent;
  padding: 0;
  border: none;
  max-width: 380px;
  width: 100%;
}

.hero-product-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  font-size: 1.4rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow--prev {
  left: 16px;
}

.hero-arrow--next {
  right: 16px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.06);
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-dot.is-active {
  background: #e50000;
  width: 18px;
}

/* ========== MOBILE ========== */

@media (max-width: 767px) {
  .hero-slider {
    min-height: auto;
    padding-bottom: 2rem;
    overflow: visible; /* allow content to define height */
  }

  /* Make slides normal-flow on mobile so height works */
  .hero-slide {
    position: relative;
    inset: auto;
    transform: none;
    display: none;
    pointer-events: none;
  }

  .hero-slide.is-active {
    display: flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero-content {
    padding: calc(var(--nav-height) + 16px) 16px 32px;
  }

  .hero-layout {
    flex-direction: column;
    gap: 1.8rem;
  }

  /* Hide product image on mobile for clean layout */
  .hero-media {
    display: none;
  }

  .hero-copy {
    text-align: left;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

/* ========== TABLET & DESKTOP ========== */

@media (min-width: 768px) {
  .hero-content {
    padding: 120px 24px;
  }

  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-media {
    display: flex;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    min-height: 70vh;
  }

  .hero-content {
    padding-inline: 32px;
  }
}

/* -----------------
     Promo Bar
   -----------------
*/
.promo-bar {
  width: 100%;
  color: #fff;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 40;

  /* Distressed splatter texture (dark base, light speckles) */
  background-color: #050509;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'>\
    <rect width='160' height='160' fill='%23050509'/>\
    <!-- random speckle clusters -->\
    <path d='M20 25c3 4 1 7-2 7s-7-3-6-6 6-5 8-1z' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <path d='M50 18c2 3 0 5-3 6-3 0-5-2-5-4s3-5 8-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M82 30c4 3 3 8-1 9-4 2-8-2-8-5s4-8 9-4z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M120 22c3 2 2 5 0 7-3 1-6-1-6-4 0-3 3-6 6-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M135 40c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M30 70c4 3 2 7-2 8-3 0-6-2-6-5s4-8 8-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M70 65c3 4 1 7-3 8-3 0-6-2-6-5s4-8 9-3z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M110 70c4 4 2 8-2 9s-7-2-7-5 5-9 9-4z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M140 85c3 3 1 6-2 7-4 1-7-3-6-6s5-6 8-1z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M25 110c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M60 120c4 3 2 7-2 8-3 0-6-2-6-5s4-8 8-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M95 115c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M130 120c3 3 2 6-1 7-4 2-7-2-7-5 0-3 4-7 8-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <!-- small single specks -->\
    <circle cx='15' cy='50' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='45' cy='45' r='1.2' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='75' cy='50' r='1.3' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='105' cy='48' r='1.1' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='145' cy='60' r='1.5' fill='%23f5f5f7' fill-opacity='0.65'/>\
    <circle cx='35' cy='90' r='1.3' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='80' cy='95' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='115' cy='100' r='1.2' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='55' cy='135' r='1.3' fill='%23f5f5f7' fill-opacity='0.65'/>\
    <circle cx='125' cy='135' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
  </svg>");
  background-size: 160px 160px;
  background-repeat: repeat;
}

.promo-content {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: promoFade 0.6s ease forwards;
}

.promo-content h2 {
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073,
      0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
      0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

/* Fade-in animation */
@keyframes promoFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: smaller text on very small screens */
@media (max-width: 480px) {
  .promo-content {
    font-size: 0.9rem;
  }
}

/* -----------------------
   Product Highlight
------------------------*/
.product-highlight {
  width: 100%;
  padding: 3.5rem 1.5rem;
  background: #050509; /* dark to match hero/nav */
  color: #fff;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* text + image */
  gap: 2.5rem;
  align-items: center;
}

/* Text/content side */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav-accent);
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #e5e5e5;
  max-width: 520px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #c5c5c5;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Buttons */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.product-btn-primary,
.product-btn-ghost {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.product-btn-primary {
  background: #e50000;
  color: #fff;
}

.product-btn-primary:hover {
  background: #ff2538;
  transform: translateY(-1px);
}

.product-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.product-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Image side */
.product-media {
  justify-self: center;
}

.product-media-inner {
  max-width: 360px;
  width: 100%;
}

.product-media-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

/* -----------------------
   Responsive
------------------------*/
@media (max-width: 768px) {
  .product-highlight {
    padding: 2.5rem 1.25rem;
  }

  .product-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-media {
    order: -1; /* image above text on mobile; remove if you prefer opposite */
  }

  .product-media-inner {
    max-width: 260px;
  }
}

/* ---------------------------
        FOOTER
--------------------------- */
.site-footer {
  background: #050509;
  color: #fff;
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* ---------------------------
        Brand Section
--------------------------- */
.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 260px;
  color: #d4d4d4;
}

/* ---------------------------
        Links
--------------------------- */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--nav-accent);
}

/* ---------------------------
        Social Icons
--------------------------- */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  background: var(--nav-accent);
  transform: translateY(-3px);
}

/* ---------------------------
        Footer Bottom
--------------------------- */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #999;
}

/* ---------------------------
        Responsive
--------------------------- */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .social-icons {
    margin-bottom: 1rem;
  }
}

/* ---------------------------
   Product Carousel Section
--------------------------- */
.product-carosel {
  padding: 3rem 1.5rem;
  background: #050509; /* same base as hero/nav so it fits */
  color: #fff;
}

.pc-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #090910;
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* Header */
.pc-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.pc-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pc-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #c5c5c5;
}

/* Wrapper for arrows + track */
.pc-track-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

/* Arrows */
.pc-arrow {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pc-arrow:hover {
  background: var(--nav-accent);
  transform: translateY(-1px);
}

/* Track – scrollable row of cards */
.pc-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.2rem 0.6rem;
  scrollbar-width: none;
}
.pc-track::-webkit-scrollbar {
  display: none;
}

/* Individual product cards */
.pc-card {
  flex: 0 0 190px; /* base width */
  max-width: 210px;
  background: #12121b;
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Image */
.pc-image {
  border-radius: 12px;
  overflow: hidden;
  background: #050509;
}

.pc-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Text info */
.pc-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pc-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.pc-meta {
  font-size: 0.8rem;
  color: #b3b3b3;
}

.pc-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--nav-accent);
  margin-top: 0.15rem;
}

/* ---------------------------
   Responsive
--------------------------- */
@media (max-width: 768px) {
  .product-carosel {
    padding: 2.25rem 1.25rem;
  }

  .pc-shell {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .pc-track-wrapper {
    grid-template-columns: 1fr; /* arrows hide on mobile */
  }

  .pc-arrow {
    display: none;
  }

  .pc-track {
    gap: 0.9rem;
  }

  .pc-card {
    flex: 0 0 70%; /* wider cards on mobile */
    max-width: 70%;
  }
}

/* ---------------------------
   Auth Pages (Login/Register)
--------------------------- */

.auth-page {
  min-height: calc(100vh - var(--nav-height));
  padding: 4rem 1.5rem;
  background: radial-gradient(
    circle at top,
    #111 0%,
    #050509 40%,
    #020206 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glass + poster hybrid card */
.auth-card {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  padding: 2.4rem 2.1rem;
  position: relative;

  /* glass / overlay */
  background: rgba(5, 5, 12, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* subtle top accent bar like a poster */
.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nav-accent), #f97316);
  opacity: 0.9;
}

/* Header */
.auth-header {
  margin-bottom: 1.6rem;
}

.auth-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--nav-accent);
}

.auth-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ccccd9;
}

/* Form layout */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Fields */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.auth-field label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e5f0;
}

.auth-field input {
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 15, 0.95);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, transform 0.08s ease;
}

.auth-field input::placeholder {
  color: #77788a;
}

.auth-field input:focus {
  border-color: var(--nav-accent);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.4);
  background: #090919;
  transform: translateY(-1px);
}

/* Remember + forgot row */
.auth-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #c0c0cf;
}

.auth-checkbox input {
  width: 14px;
  height: 14px;
  accent-color: var(--nav-accent);
  cursor: pointer;
}

/* Button – bold PWE feel */
.auth-btn-primary {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: none;
  background: var(--nav-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.auth-btn-primary:hover {
  background: #ff2439;
  box-shadow: 0 14px 32px rgba(230, 57, 70, 0.7);
  transform: translateY(-1px);
}

/* Links + error text */
.auth-switch {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #c5c5d2;
  text-align: center;
}

.auth-link {
  color: var(--nav-accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-link-small {
  font-size: 0.8rem;
}

.auth-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #ff6b6b;
  text-align: center;
}

/* ---------------------------
   Responsive tweaks
--------------------------- */
@media (max-width: 768px) {
  .auth-page {
    padding: 3rem 1.25rem;
  }

  .auth-card {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .auth-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .auth-page {
    padding: 2.5rem 1rem;
  }

  .auth-card {
    padding: 1.8rem 1.2rem;
  }

  .auth-header h1 {
    letter-spacing: 0.06em;
  }
}

/* The thing for the Register page */
/* Success message styling */
.auth-success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* Error style upgrade too (optional) */
.auth-error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-error.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SHOP – CATEGORIES & PRODUCTS
   ========================================================= */

.shop-main {
  padding: 2.75rem 1.5rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
}

/* Top text on shop / category pages */
.shop-hero {
  margin-bottom: 1.75rem;
}

.shop-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.shop-subtitle,
.shop-breadcrumb {
  color: #d1d5db;
  font-size: 0.9rem;
}

/* Category hero banner image */
.shop-category-hero {
  margin-bottom: 1.5rem;
}

.shop-category-hero-image-wrap {
  width: 100%;
  max-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
}

.shop-category-hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Section headings (e.g. “Categories”, “Products”) */
.shop-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

/* Grid for both category cards and product cards */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

/* CARD – unified dark PWE look for categories & products */
.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #050509;
  text-decoration: none;
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 1);
  border-color: rgba(248, 113, 113, 0.7);
}

/* Image area – neat, fixed ratio */
.shop-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text inside card */
.shop-card-body {
  padding: 0.85rem 1.1rem 1.1rem;
}

.shop-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #f9fafb;
}

/* For category description / small text */
.shop-card-meta {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Product-specific bits (price / stock) */
.shop-card-price {
  font-weight: 700;
  color: #e63946;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.shop-card-stock {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.1rem;
}

/* =======================
   SHOP RESPONSIVE
   ======================= */

@media (max-width: 900px) {
  .shop-main {
    padding: 2.25rem 1.25rem 3rem;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }

  .shop-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .shop-main {
    padding: 2rem 1rem 2.5rem;
  }

  .shop-title {
    font-size: 1.6rem;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

/* ---------------------------
        FOOTER
--------------------------- */
.site-footer {
  background: #050509;
  color: #fff;
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* ... keep your existing footer / carousel / etc styles here ...
   (you can paste them straight back under this comment)
*/

/* =========================================================
   PRODUCT PAGE LAYOUT
   ========================================================= */

.shop-main.product-page {
  padding: 3.25rem 1.5rem 4.5rem;
  background: #000;
}

/* Center the whole product area and use two columns on desktop */
.product-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* IMAGE SIDE -------------------------------------------------- */

.product-gallery {
  width: 100%;
}

.product-main-image-wrap {
  background: #050509;
  border-radius: 20px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.product-main-image {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 14px;
}

/* INFO SIDE -------------------------------------------------- */

.product-info {
  background: #050509;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

/* Price */
.product-price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--nav-accent);
  margin-bottom: 1rem;
}

/* Variant block */
.product-variant-block {
  margin-bottom: 1rem;
}

.product-variant-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  color: #d1d5db;
}

.product-variant-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #020617;
  color: #f9fafb;
  font: 500 0.95rem var(--font-body);
}

/* Stock tags */
.stock-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stock-tag--in {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

.stock-tag--out {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.product-stock-status {
  margin: 0.75rem 0 1.25rem;
}

/* Quantity + button row */
.product-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.product-qty-label {
  font-size: 0.9rem;
}

.product-qty-input {
  width: 72px;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  color: #f9fafb;
}

.product-add-btn {
  flex: 1;
  min-width: 180px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s;
}

.product-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(230, 57, 70, 0.55);
  filter: brightness(1.05);
}

/* DESCRIPTION -------------------------------------------------- */

.product-description {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.product-description-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.product-description-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Toast for "added to cart" */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  background: #050509;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
  padding: 0.95rem 1rem;
  max-width: 320px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-toast__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f9fafb;
  margin-bottom: 0.2rem;
}

.cart-toast__text {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.6rem;
}

.cart-toast__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-toast__btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.cart-toast__btn--primary {
  border: none;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
}

.cart-toast__btn--primary:hover {
  filter: brightness(1.05);
}

.cart-toast__btn:hover:not(.cart-toast__btn--primary) {
  background: rgba(148, 163, 184, 0.2);
}

/* Mobile – center it & full-width-ish */
@media (max-width: 600px) {
  .cart-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}



/* =========================================================
   CART PAGE
   ========================================================= */

.shop-main.cart-page {
  padding: 3.25rem 1.5rem 4.5rem;
  background: #000;
}

/* Layout: items left, summary right */
.cart-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Empty state */
.cart-empty {
  padding: 2.5rem 2rem;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  background: #050509;
  text-align: center;
  color: #e5e7eb;
  font-size: 0.95rem;
}

/* ---------------------------
   CART ITEMS LIST
----------------------------*/

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Single cart row */
.cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: #050509;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 1rem;
    gap: 0.9rem;
  }
}

/* Thumbnail */
.cart-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background: #111;
}

/* Main text */
.cart-item-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-title a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f9fafb;
  text-decoration: none;
}

.cart-item-title a:hover {
  color: var(--nav-accent);
}

.cart-item-variant {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d1d5db;
}

/* Actions row (qty, remove, line total) */
.cart-item-actions {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.cart-qty-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.cart-qty-input {
  width: 72px;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
  color: #f9fafb;
  font-size: 0.9rem;
}

.cart-remove-btn {
  border: none;
  background: transparent;
  color: #fca5a5;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-remove-btn:hover {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.cart-line-total {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9fafb;
}

/* On narrow screens, line total goes full-width */
@media (max-width: 520px) {
  .cart-item-actions {
    align-items: flex-start;
  }
  .cart-line-total {
    margin-left: 0;
    margin-top: 0.15rem;
  }
}

/* ---------------------------
   SUMMARY PANEL + SHIPPING
----------------------------*/

.cart-summary {
  position: sticky;
  top: calc(var(--nav-height, 72px) + 1.5rem);
}

@media (max-width: 900px) {
  .cart-summary {
    position: static;
  }
}

.cart-summary-card {
  background: #050509;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.cart-summary-card h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
}

/* Subtotal / shipping / total rows */
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cart-summary-row span {
  font-size: 0.9rem;
  color: #d1d5db;
}

.cart-summary-row strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
}

/* Total emphasised a bit more */
.cart-summary-row-total strong#cartTotal {
  font-size: 1.25rem;
}

/* Thin divider between totals and shipping select */
.cart-summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
  margin: 0.85rem 0 1rem;
}

/* Shipping method select block */
.cart-shipping-select {
  margin-bottom: 1.25rem;
}

.cart-shipping-select label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.cart-shipping-select select {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #020617;
  color: #f9fafb;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

/* Note under shipping / subtotal text */
.cart-summary-note {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.25rem;
  margin-bottom: 1.1rem;
}

/* Checkout button */
.cart-checkout-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.cart-checkout-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.65);
  filter: brightness(1.05);
}

.cart-checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* =========================================================
   CHECKOUT PAGE – PWE STYLE
   ========================================================= */

.checkout-page {
  background: #000;
}

/* constrain hero + layout to same width as cart/product */
.checkout-page .shop-hero {
  max-width: 1120px;
  margin: 0 auto 1.75rem;
}

/* MAIN LAYOUT: form left, summary right */
.checkout-layout {
  max-width: 1120px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* LEFT PANEL – FORM CARD */
.checkout-main {
  width: 100%;
}

.checkout-card {
  background: #050509;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.9rem 1.6rem 1.6rem;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.95);
}

@media (max-width: 600px) {
  .checkout-card {
    padding: 1.6rem 1.3rem 1.4rem;
    border-radius: 18px;
  }
}

.checkout-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f9fafb;
  margin-bottom: 1rem;
}

/* FIELDS */
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (max-width: 600px) {
  .checkout-field-row {
    grid-template-columns: 1fr;
  }
}

.checkout-field label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.checkout-field input,
.checkout-field select {
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #f9fafb;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.checkout-field input::placeholder {
  color: #6b7280;
}

.checkout-field input:focus,
.checkout-field select:focus {
  border-color: var(--nav-accent);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.55);
  background: #020617;
}

/* divider between contact + payment */
.checkout-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.5);
  margin: 1.3rem 0 1.1rem;
}

/* STRIPE PAYMENT ELEMENT WRAPPER */
#payment-element {
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
}

/* error text under card */
.checkout-error {
  margin-top: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.5);
  font-size: 0.85rem;
  color: #fecaca;
}

/* PAY BUTTON */
.checkout-pay-btn {
  margin-top: 1.15rem;
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.checkout-pay-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.65);
  filter: brightness(1.05);
}

.checkout-pay-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* spinner inside button */
.checkout-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: checkout-spin 0.7s linear infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

/* RIGHT PANEL – ORDER SUMMARY */
.checkout-summary {
  position: sticky;
  top: calc(var(--nav-height, 72px) + 1.5rem);
}

@media (max-width: 900px) {
  .checkout-summary {
    position: static;
  }
}

.checkout-summary-card {
  background: #050509;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
}

.checkout-summary-card h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.checkout-summary-row span {
  font-size: 0.9rem;
  color: #d1d5db;
}

.checkout-summary-row strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
}

.checkout-summary-row-total strong {
  font-size: 1.25rem;
}

.checkout-summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.6);
  margin: 0.9rem 0 1rem;
}

.checkout-summary-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* COMPLETE PAGE CARD */
.checkout-complete-card {
  max-width: 640px;
  margin: 1.5rem auto 3rem;
  padding: 1.6rem 1.5rem;
  background: #050509;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* ========== SINGLE SHOW PAGE ========== */

.page-show {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  color: #fff;
}

.page-show .show-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.show-hero-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

.show-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.show-hero-content h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 1.4rem + 1.5vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.show-subtitle {
  color: #ffb4c0;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.show-meta {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
  margin-top: 0.5rem;
}

.show-meta strong {
  color: #ffffff;
}

.show-venue-address {
  display: inline-block;
  margin-top: 0.35rem;
  color: #bbbbbb;
  font-size: 0.9rem;
}

/* Layout under hero: description + tickets */

.show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.show-description {
  background: radial-gradient(circle at top left, rgba(230, 57, 70, 0.32), transparent 60%),
              rgba(7, 7, 7, 0.95);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.show-description p + p {
  margin-top: 0.6rem;
}

/* Tickets card */

.show-tickets {
  background: linear-gradient(135deg, #1a1a1a, #060606);
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.show-tickets h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ticket-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.ticket-type {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-type--sold-out {
  opacity: 0.55;
}

.ticket-type-main h3 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.ticket-price {
  font-weight: 600;
  font-size: 0.95rem;
}

.ticket-status {
  font-size: 0.8rem;
  margin-top: 0.15rem;
  color: #b3b3b3;
}

.ticket-status--low {
  color: #ffdd57;
}

.ticket-status--sold-out {
  color: #ff8a80;
}

/* Ticket add form */

.ticket-add-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.ticket-add-form label {
  font-size: 0.8rem;
  color: #cccccc;
}

.ticket-add-form input[type="number"] {
  width: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.25rem 0.4rem;
  text-align: center;
  font-size: 0.85rem;
}

.ticket-add-form .btn,
.ticket-add-form button.btn,
.ticket-add-form button {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.ticket-form-message {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  color: #9df59d; /* success green */
}

/* Responsive */

@media (max-width: 900px) {
  .page-show {
    padding-inline: 1rem;
  }

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

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

  .ticket-type {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .ticket-add-form {
    justify-content: flex-start;
  }
}

/* ========== SHOWS LIST PAGE ========== */

.page-shows {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  color: #fff;
}

.page-shows .page-header {
  text-align: left;
  margin-bottom: 2rem;
}

.page-shows .page-header h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 1.5rem + 1.2vw, 2.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.page-shows .page-header p {
  color: #d4d4d4;
  font-size: 0.95rem;
}

/* Grid */

.shows-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.show-card {
  background: linear-gradient(135deg, #171717, #090909);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.show-card-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.show-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.show-card:hover .show-card-image-wrap img {
  transform: scale(1.06);
  opacity: 0.96;
}

.show-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.show-card-title a {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.show-card-meta {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.show-card-venue {
  font-size: 0.85rem;
  color: #b3b3b3;
}

.show-card-btn {
  margin-top: 0.75rem;
  align-self: flex-start;
  border-radius: 999px;
  padding-inline: 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Responsive padding */

@media (max-width: 900px) {
  .page-shows {
    padding-inline: 1rem;
  }
}

.ticket-form-message {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #9df59d;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ticket-form-message--visible {
  opacity: 1;
  transform: translateY(0);
}


/* Generic Markdown styling */
.md-body h1,
.md-body h2,
.md-body h3,
.md-body h4 {
  font-family: var(--font-heading, inherit);
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.md-body p {
  margin: 0 0 0.75rem;
}

.md-body ul,
.md-body ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.md-body li + li {
  margin-top: 0.25rem;
}

.md-body hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin: 1.5rem 0;
}

.md-body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.md-body strong {
  font-weight: 600;
}

/* NAV LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-text {
  white-space: nowrap;
}

/* Optional: hide text on very small screens */
@media (max-width: 480px) {
  .nav-logo-text {
    display: none;
  }
}

/* CONTACT PAGE */
.contact-page {
  padding-bottom: 4rem;
}

.shop-subtitle {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: #bdbdbd;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-details li {
  margin-bottom: 0.75rem;
}

.contact-details a {
  color: var(--nav-accent);
  text-decoration: none;
}

.contact-note {
  font-size: 0.9rem;
  color: #aaa;
}

.contact-form-card {
  background: #0b0b10;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-field label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  background: #050509;
  border: 1px solid #222;
  color: #fff;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--nav-accent);
}

.contact-submit {
  width: 100%;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
