/* ===== PEACHY BOOTY - MAIN STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Anton&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --hot-pink: #ff2d7a;
  --neon-green: #9cff00;
  --bright-orange: #ff7a00;
  --black: #111111;
  --white: #ffffff;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--hot-pink); border-radius: 3px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,45,122,0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: height var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  height: 60px;
  box-shadow: 0 4px 40px rgba(255,45,122,0.2);
}
.header-logo img { height: 52px; transition: height var(--transition); }
#header.scrolled .header-logo img { height: 40px; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

#cart-btn {
  background: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  transition: background var(--transition);
}
#cart-btn:hover { background: rgba(255,45,122,0.15); }
#cart-btn svg { width: 22px; height: 22px; stroke: var(--white); }
#cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--hot-pink);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
}
#cart-count.show { opacity: 1; transform: scale(1); }
#cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 2px solid var(--hot-pink);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  font-family: 'Bungee', cursive;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--hot-pink); }

/* ===== HERO SLIDER ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 0.9s ease;
  padding: 0 8% 0 8%;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.15) 100%);
  z-index: 1;
}

/* Graffiti decorations */
.graffiti-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.graffiti-splash-1 {
  top: 10%; right: 5%;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,45,122,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.graffiti-splash-2 {
  bottom: 15%; left: 3%;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(156,255,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.star-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.star-deco svg { opacity: 0.6; }

.slide-content {
  position: relative;
  z-index: 5;
  max-width: 620px;
}
.slide-content .eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--neon-green);
}
.slide-content h1 {
  font-family: 'Bungee', cursive;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255,45,122,0.3);
}
.slide-content h1 .accent { color: var(--hot-pink); }
.slide-content h1 .accent-green { color: var(--neon-green); }
.slide-content h1 .accent-orange { color: var(--bright-orange); }
.slide-content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hot-pink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-green);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--black); box-shadow: 0 0 30px rgba(156,255,0,0.5); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; width: 16px; height: 16px; }

/* Slider Controls */
.slider-arrows {
  position: absolute;
  bottom: 50%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
  transform: translateY(50%);
}
.arrow-btn {
  pointer-events: all;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.arrow-btn:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  transform: scale(1.1);
}
.arrow-btn svg { width: 20px; height: 20px; stroke: var(--white); }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--hot-pink);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255,45,122,0.6);
}

/* PYBY Watermark */
.pyby-watermark {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 10;
  opacity: 0.18;
  width: 80px;
  pointer-events: none;
}

/* ===== SHOP SECTION ===== */
#shop {
  padding: 100px 5% 80px;
  position: relative;
}
#shop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hot-pink), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}
.section-header h2 .pink { color: var(--hot-pink); }
.section-header .underline-bar {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 2px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}
.filter-btn.active {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,45,122,0.35);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,45,122,0.2);
}

/* PYBY Badge */
.pyby-badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 36px; height: 36px;
  z-index: 5;
  opacity: 0.85;
}
.pyby-badge img { width: 100%; border-radius: 50%; }

/* Image Gallery */
.card-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #222;
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: scale(1.03);
}
.gallery-img.active {
  opacity: 1;
  transform: scale(1);
}
.product-card:hover .gallery-img.active {
  transform: scale(1.06);
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.gdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gdot.active {
  background: var(--hot-pink);
  transform: scale(1.3);
}

/* Category tag */
.cat-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--bright-orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 5;
}

/* Card Info */
.card-info {
  padding: 18px 18px 20px;
}
.card-info h3 {
  font-family: 'Bungee', cursive;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 6px;
}
.card-info .price {
  color: var(--neon-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.btn-add-cart {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--hot-pink);
  color: var(--hot-pink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-add-cart:hover {
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,45,122,0.4);
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox-modal {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border-radius: 6px;
  border: 1px solid rgba(255,45,122,0.2);
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-height: 90vh;
}
.lightbox-img {
  position: relative;
  background: #222;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}
.lightbox-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--hot-pink); }
.lightbox-close svg { width: 18px; height: 18px; stroke: white; }

.lightbox-details {
  padding: 40px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lightbox-details .lb-cat {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bright-orange);
  font-weight: 600;
}
.lightbox-details h2 {
  font-family: 'Bungee', cursive;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--white);
}
.lightbox-details .lb-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-green);
}

.size-label, .qty-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: block;
}
.size-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.size-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  box-shadow: 0 0 12px rgba(255,45,122,0.3);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  width: fit-content;
  overflow: hidden;
}
.qty-control button {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 1.2rem;
  border: none;
  transition: background 0.2s;
}
.qty-control button:hover { background: rgba(255,45,122,0.25); }
.qty-control input {
  width: 48px; height: 40px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-lb-cart {
  padding: 15px;
  background: var(--hot-pink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all var(--transition);
  margin-top: auto;
}
.btn-lb-cart:hover {
  background: var(--neon-green);
  color: var(--black);
  box-shadow: 0 0 30px rgba(156,255,0,0.4);
}

/* ===== CART DRAWER ===== */
#cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; height: 100%;
  background: var(--dark-bg);
  border-left: 1px solid rgba(255,45,122,0.2);
  z-index: 1500;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
#cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.show { opacity: 1; pointer-events: all; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
  font-family: 'Bungee', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.cart-close:hover { background: var(--hot-pink); }
.cart-close svg { width: 16px; height: 16px; stroke: white; }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  gap: 12px;
}
.cart-empty svg { opacity: 0.3; }

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-img { width: 70px; height: 70px; object-fit: cover; border-radius: 3px; background: #222; }
.cart-item-info h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--white);
}
.cart-item-info .ci-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.ciq-btn {
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  border-radius: 2px;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ciq-btn:hover { border-color: var(--hot-pink); color: var(--hot-pink); }
.cart-item-price {
  font-weight: 700;
  color: var(--neon-green);
  font-size: 0.95rem;
  text-align: right;
}
.cart-remove {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  text-align: right;
  margin-top: 4px;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--hot-pink); }

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cart-total-row span:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.cart-total-row .total-amount {
  font-family: 'Bungee', cursive;
  font-size: 1.6rem;
  color: var(--white);
}
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, var(--hot-pink), var(--bright-orange));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,45,122,0.3);
}
.btn-checkout:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255,45,122,0.4); }

/* ===== ABOUT SECTION ===== */
#about {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.about-bg-splash {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.08;
}
.ab-splash-1 {
  width: 500px; height: 500px;
  background: var(--hot-pink);
  top: -100px; right: -100px;
}
.ab-splash-2 {
  width: 350px; height: 350px;
  background: var(--neon-green);
  bottom: -80px; left: -60px;
}
.ab-splash-3 {
  width: 250px; height: 250px;
  background: var(--bright-orange);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}

.about-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-inner h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1;
}
.about-inner h2 .pink { color: var(--hot-pink); }
.about-border {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,122,0.4), rgba(156,255,0,0.4), transparent);
  margin: 36px 0;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}
.about-tagline {
  font-family: 'Bungee', cursive;
  font-size: 2rem;
  margin-top: 36px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green), var(--bright-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== FOOTER ===== */
#footer {
  background: #080808;
  border-top: 1px solid rgba(255,45,122,0.12);
  padding: 60px 5% 0;
  position: relative;
  overflow: hidden;
}
.footer-pyby-deco {
  position: absolute;
  bottom: 30px; right: 30px;
  width: 60px;
  opacity: 0.07;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .ft-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-tagline {
  font-family: 'Bungee', cursive;
  font-size: 1rem;
  color: var(--hot-pink);
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.footer-col h4 {
  font-family: 'Bungee', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--hot-pink); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-info a:hover { color: var(--hot-pink); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--hot-pink);
  background: rgba(255,45,122,0.1);
}
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); }
.social-link:hover svg { stroke: var(--hot-pink); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;  /* Enables wrapping */
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}
.footer-bottom > span:last-child {
  flex-basis: 100%;  /* Forces full-width new line */
  text-align: center;
}
.footer-bottom .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,45,122,0.4);
  display: inline-block;
}

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card-bg);
  border: 1px solid var(--neon-green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); }
#toast .t-name { color: var(--neon-green); }

/* Card color swatches */
.card-swatches {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 10px;
}
.card-swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  outline: none;
  flex-shrink: 0;
}
.card-swatch:hover { transform: scale(1.15); }
.card-swatch.active {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 2px rgba(255,45,122,0.35);
}
/* White swatch gets a visible border so it shows on dark bg */
.card-swatch[style*="#f0f0f0"], .card-swatch[style*="#ffffff"], .card-swatch[style*="#fff"] {
  border-color: rgba(255,255,255,0.25);
}
.card-swatch[style*="#f0f0f0"].active, .card-swatch[style*="#ffffff"].active, .card-swatch[style*="#fff"].active {
  border-color: var(--hot-pink);
}
.swatch-check {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.card-swatch.active .swatch-check { opacity: 1; }
/* Dark swatch check mark in white, light swatch check mark in dark */
.card-swatch[style*="#f0f0f0"].active .swatch-check,
.card-swatch[style*="#ffffff"].active .swatch-check { color: #333; text-shadow: none; }

/* Lightbox color swatches */
.lb-color-swatches {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.lb-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  flex-shrink: 0;
  position: relative;
}
.lb-swatch:hover { transform: scale(1.12); }
.lb-swatch.active {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 3px rgba(255,45,122,0.3);
}
.lb-swatch[style*="#f0f0f0"], .lb-swatch[style*="#ffffff"], .lb-swatch[style*="#fff"] {
  border-color: rgba(255,255,255,0.2);
}
.lb-swatch[style*="#f0f0f0"].active { border-color: var(--hot-pink); }

/* Nav email link */
.nav-links .nav-email {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-links .nav-email::after { display: none; }
.nav-links .nav-email:hover {
  color: var(--hot-pink);
  border-color: var(--hot-pink);
  background: rgba(255,45,122,0.08);
}
.mobile-nav-email {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.5) !important;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 20px;
  width: fit-content;
}
.mobile-nav-email:hover { color: var(--hot-pink) !important; border-color: var(--hot-pink) !important; }

/* Lightbox image arrows */
.lb-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.lb-img-arrow:hover { background: var(--hot-pink); border-color: var(--hot-pink); }
.lb-img-arrow svg { width: 18px; height: 18px; stroke: white; }
.lb-img-prev { left: 12px; }
.lb-img-next { right: 12px; }
.lb-img-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.lb-img-dots .lbdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.2s;
}
.lb-img-dots .lbdot.active { background: var(--hot-pink); transform: scale(1.3); }

/* Shop Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 2px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--hot-pink); color: var(--hot-pink); }
.page-btn.active {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 0 16px rgba(255,45,122,0.35);
}
.page-arrow {
  width: 40px; height: 40px;
  border-radius: 2px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.page-arrow:hover:not(:disabled) { border-color: var(--hot-pink); color: var(--hot-pink); }
.page-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.page-arrow svg { width: 16px; height: 16px; stroke: currentColor; }

/* CreaticX footer credit */
.creaticx-link {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.creaticx-link:hover { color: var(--hot-pink); }


@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lightbox-img { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  #cart-drawer { width: 100%; right: -100%; }
}
@media (max-width: 700px) {
  :root { --header-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  #shop { padding: 70px 4% 60px; }
  #about { padding: 70px 5%; }
  #footer { padding: 48px 5% 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .slider-arrows { padding: 0 10px; }
}
@media (max-width: 440px) {
  .product-grid { grid-template-columns: 1fr; }
}
