@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --orange: #FFFFFF;
  --orange-light: #CCCCCC;
  --orange-dark: #999999;
  --black: #0A0A0A;
  --dark: #141414;
  --dark2: #1E1E1E;
  --dark3: #2A2A2A;
  --white: #FFFFFF;
  --gray: #888888;
  --light-gray: #CCCCCC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

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

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

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

.nav-cta {
  background: var(--orange);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 0;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--orange-light);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--orange-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

/* ─── SECTION HEADERS ────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 3px;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-video-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 10rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-video-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-container {
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
  }

  .hero-logo {
    width: 28vw !important;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    display: none !important;
  }
}

.hero-text .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--orange);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: clamp(160px, 55vw, 400px);
  height: auto;
  display: block;
  margin: 0 auto 3.5rem;
}

.hero-text h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.88;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.hero-text h1 .accent {
  color: var(--orange);
  display: block;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-social {
  margin-top: 3rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-social span {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.platform-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  padding: 2.5rem;
  max-width: 360px;
  width: 100%;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-card::before {
  display: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.card-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.card-product-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--light-gray);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ─── FEATURES SECTION ───────────────────────── */
.features {
  padding: 6rem 2rem;
  background: var(--dark);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-top-color: var(--white);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── SHOP SECTION (HOME PREVIEW) ────────────── */
.shop-preview {
  padding: 6rem 2rem;
}

.shop-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--white);
}

.product-thumb {
  background: var(--dark2);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.product-thumb::after {
  display: none;
}

.product-thumb-img {
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  height: auto;
}

.product-thumb-img .product-img-front {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.product-thumb-img .product-img-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-thumb-img .product-img-front {
  opacity: 0;
}

.product-card:hover .product-thumb-img .product-img-back {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

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

.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}

.price-unit {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  padding: 8rem 2rem;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.cta-banner-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ─── DULLAZZ BANNER ─────────────────────────── */
.dullazz-banner {
  position: relative;
  overflow: hidden;
}

.dullazz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
}

.dullazz-grid-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dullazz-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

.dullazz-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.dullazz-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.dullazz-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.dullazz-btn {
  min-width: 160px;
}

@media (max-width: 768px) {
  .dullazz-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
}

@media (max-width: 480px) {
  .dullazz-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

  .dullazz-heading {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--dark3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--white);
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  color: var(--dark3);
  font-size: 0.8rem;
  border-top: 1px solid var(--dark3);
  padding-top: 1.5rem;
}

/* ─── ABOUT PAGE ─────────────────────────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
}

.page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  padding: 5rem 2rem;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark2);
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  display: none;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--orange);
  padding: 1rem 1.5rem;
  border-radius: 0;
  text-align: center;
}

.about-badge .num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  line-height: 1;
  color: var(--black);
}

.about-badge .label {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .section-title {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  padding: 1.25rem 0;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.platforms-section {
  padding: 4rem 2rem;
  background: var(--dark);
}

.platforms-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.platform-card {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  padding: 2rem 1rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.platform-card:hover {
  border-top-color: var(--white);
  transform: translateY(-4px);
}

.platform-icon {
  font-size: 2.5rem;
}

.platform-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.platform-handle {
  font-size: 0.8rem;
  color: var(--orange);
}

/* ─── SHOP PAGE ──────────────────────────────── */
.shop-filters {
  padding: 0 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 255, 255, 0.05);
}

.shop-grid-section {
  padding: 0 2rem 6rem;
}

.shop-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--dark3);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--white);
  color: var(--black);
}

.modal-product-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.modal-divider {
  border: none;
  border-top: 1px solid var(--dark3);
  margin: 1.5rem 0;
}

.modal-steps {
  list-style: none;
  margin-bottom: 1.5rem;
}

.modal-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.step-num {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.step-text strong {
  color: var(--white);
}

.qr-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}

.qr-wrap img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.qr-label {
  font-size: 0.8rem;
  color: #333;
  font-weight: 600;
}

.modal-contact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.modal-contact strong {
  color: var(--orange);
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.animate {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .platforms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── PRODUCT PAGE ───────────────────────────── */
.pg-wrap {
  padding-top: 80px;
  min-height: 100vh;
}

.pg-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Gallery */
.pg-gallery {
  position: sticky;
  top: 100px;
}

.pg-main-wrap {
  width: 100%;
  background: #f2f2f2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-main-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pg-main-emoji {
  font-size: 8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pg-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.pg-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
  background: #f2f2f2;
}

.pg-thumb.active,
.pg-thumb:hover {
  opacity: 1;
  border-color: var(--white);
}

/* Info panel */
.pg-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.pg-back {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.pg-back:hover {
  color: var(--white);
}

.pg-cat-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: -0.75rem;
}

.pg-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}

.pg-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-top: -0.5rem;
}

.pg-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Sizes */
.pg-sizes-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pg-field-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.pg-sizes-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pg-size-btn {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--dark3);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.pg-size-btn:hover {
  border-color: var(--white);
}

.pg-size-btn.selected {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Buy */
.pg-buy-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.pg-pay-note {
  font-size: 0.73rem;
  color: var(--gray);
  text-align: center;
  margin-top: -0.75rem;
}

/* Accordions */
.pg-accordions {
  border-top: 1px solid var(--dark3);
}

.pg-acc-item {
  border-bottom: 1px solid var(--dark3);
}

.pg-acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.pg-acc-icon {
  font-size: 1.1rem;
  color: var(--gray);
}

.pg-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pg-acc-item.open .pg-acc-body {
  max-height: 500px;
}

.pg-acc-body ul {
  list-style: none;
  padding: 0 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pg-acc-body li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1.2rem;
  position: relative;
}

.pg-acc-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dark3);
}

/* Product card — "View" link style */
.product-view-link {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.product-card:hover .product-view-link {
  color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
  .pg-wrap {
    padding-top: 64px;
  }

  .pg-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 6rem;
  }

  .pg-gallery {
    position: static;
  }

  .pg-main-wrap {
    border-radius: 0;
  }

  .pg-thumbs {
    padding: 0.5rem 1rem;
    gap: 0.4rem;
  }

  .pg-thumb {
    width: 64px;
    height: 64px;
  }

  .pg-info {
    padding: 1.25rem 1.25rem 2rem;
    gap: 1.2rem;
  }

  .pg-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pg-price {
    font-size: 1.6rem;
  }

  .pg-buy-btn {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    z-index: 100;
    margin: 0;
    padding: 1.1rem;
  }

  .pg-pay-note {
    display: none;
  }
}

/* ─── MISSION SECTION ────────────────────────── */
.mission-section {
  padding: 7rem 2rem;
  background: var(--dark) url('../images/platos.jpg') center center / cover no-repeat;
  text-align: center;
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.mission-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.mission-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.mission-divider {
  width: 60px;
  height: 2px;
  background: var(--white);
  margin: 0 auto 2.5rem;
  opacity: 0.3;
}

.mission-body {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.mission-body p {
  font-size: 1rem;
  color: var(--light-gray);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.mission-logo-wrap {
  margin: 3rem auto;
  width: 90px;
  opacity: 0.85;
}

.mission-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── WELCOME SECTION ────────────────────────── */
.welcome-section {
  padding: 6rem 2rem;
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
}

.welcome-container {
  max-width: 900px;
  margin: 0 auto;
}

.welcome-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}

.welcome-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.welcome-icon {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.welcome-icon:hover {
  opacity: 0.6;
  transform: translateY(-3px);
}

.welcome-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
