/*
Theme Name: Devs On Budget
Theme URI: https://devsonbudget.com/
Author: Homeless Guys Studio
Description: Premium Unity assets built by passionate developers.
Version: 1.0.0
Text Domain: devsonbudget
*/

/* ============================================================
   ROOT & RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #ff6b00;
  --orange-d: #e05c00;
  --orange-l: #ff8c38;
  --orange-xl: #fff1e6;
  --cream: #faf8f5;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --gray: #6b7280;
  --light: #f4f4f4;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --transition: .25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-orange {
  background: var(--orange);
}

/* Section header */
.sec-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.sec-tag {
  display: inline-block;
  background: var(--orange-xl);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.sec-tag-inv {
  background: rgba(255, 255, 255, .22);
  color: var(--white);
}

.sec-h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--dark);
}

.sec-h2.light {
  color: var(--white);
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.65;
}

.highlight-word {
  color: var(--orange);
}

/* Section CTA */
.sec-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-nav {
  background: var(--orange);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}

.btn-nav:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255, 107, 0, .35);
}

.btn-hero-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, .45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.btn-hero-ghost:hover {
  border-color: var(--orange);
  background: var(--orange-xl);
}

.btn-buy {
  background: var(--orange);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

.btn-buy-alt {
  background: var(--dark);
  color: var(--white);
}

.btn-buy-alt:hover {
  background: #333;
}

.btn-card {
  background: var(--orange);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition);
}

.btn-card:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

.btn-outline-big {
  display: inline-flex;
  align-items: center;
  font-size: .98rem;
  font-weight: 700;
  color: var(--dark);
  padding: 13px 30px;
  border-radius: var(--radius-md);
  border: 2px solid var(--dark);
  transition: background var(--transition), color var(--transition);
}

.btn-outline-big:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-sub {
  background: var(--dark);
  color: var(--white);
  font-size: .92rem;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.btn-sub:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--orange);
  font-size: .95rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.ann-cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  padding: 4px 14px;
  border-radius: 999px;
  transition: background var(--transition);
}

.ann-cta:hover {
  background: var(--orange-d);
}

.ann-x {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--white);
  font-size: 1.1rem;
  opacity: .6;
  transition: opacity var(--transition);
  cursor: pointer;
}

.ann-x:hover {
  opacity: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.03em;
  flex-shrink: 0;
}

.nav-logo-badge {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 60px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Animated background blobs */
.hero-bg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -100px;
  right: -100px;
  animation: orbdrift 18s ease-in-out infinite alternate;
}

.orb2 {
  width: 350px;
  height: 350px;
  background: #ffb347;
  bottom: 100px;
  left: -80px;
  animation: orbdrift 14s ease-in-out infinite alternate-reverse;
}

.orb3 {
  width: 250px;
  height: 250px;
  background: var(--orange-l);
  top: 50%;
  left: 40%;
  animation: orbdrift 20s ease-in-out infinite alternate;
}

@keyframes orbdrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.12);
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, .065) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Hero layout */
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  flex: 1;
  padding-top: 30px;
}

/* Hero pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

/* Hero heading */
.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.04em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-highlight {
  background: var(--orange);
  color: var(--white);
  padding: 2px 14px;
  border-radius: 10px;
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 460px;
}

/* Hero buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray);
}

.trust-avatars {
  display: flex;
}

.av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
  color: var(--white);
  margin-left: -10px;
}

.av:first-child {
  margin-left: 0;
}

.av1 {
  background: var(--orange);
}

.av2 {
  background: #3b82f6;
}

.av3 {
  background: #14b8a6;
}

.av4 {
  background: #8b5cf6;
}

/* Hero right - card cluster */
.hero-right {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── NEW PROFESSIONAL CARDS (4 COLUMNS) ─── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prod-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f9fa;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.1);
}

.prod-card-img .prod-badge {
  top: 10px;
  right: 10px;
  left: auto;
  font-size: 0.65rem;
  padding: 3px 8px;
}

.prod-card-img .prod-ver {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.prod-card-body {
  padding: 16px 16px 0;
}

.prod-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

.prod-tags span {
  background: #f1f3f5;
  color: var(--gray);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.prod-card-foot {
  padding: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.prod-price-wrap {
  margin-bottom: 12px;
}

.prod-old {
  font-size: 0.75rem;
  color: var(--gray);
  text-decoration: line-through;
}

.prod-new {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.prod-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-view-asset,
.btn-buy-now {
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-view-asset {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-view-asset:hover {
  background: var(--orange-xl);
  border-color: var(--orange);
  color: var(--orange);
}

.btn-buy-now {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.btn-buy-now:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.25);
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--orange);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

/* Main featured card */
.hero-main-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 320px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .14);
  position: relative;
  z-index: 3;
  border: 1.5px solid var(--border);
}

.hmc-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hmc-badge {
  background: var(--orange-xl);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}

.hmc-ver {
  background: var(--light);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 999px;
}

.hmc-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.hmc-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}

.hmc-desc {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.hmc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.hmc-chips span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--light);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--dark);
}

.hmc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hmc-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hmc-old {
  font-size: .8rem;
  color: var(--gray);
  text-decoration: line-through;
}

.hmc-new {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
}

/* Floating mini cards */
.flip-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  z-index: 2;
  white-space: nowrap;
}

.fc-ico {
  font-size: 1.4rem;
}

.fc-name {
  color: var(--dark);
}

.fc-p {
  color: var(--orange);
  font-weight: 800;
  margin-left: auto;
  padding-left: 10px;
}

.free-tag {
  color: #16a34a !important;
}

.fc-a {
  top: 30px;
  left: -30px;
}

.fc-b {
  top: 80px;
  right: -30px;
}

.fc-c {
  bottom: 100px;
  left: -40px;
}

.fc-d {
  bottom: 50px;
  right: -20px;
}

/* Float animations */
.float-anim {
  animation: float1 5s ease-in-out infinite;
}

.float-anim-2 {
  animation: float2 6s ease-in-out infinite;
}

.float-anim-3 {
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0 60px;
  background: transparent;
}

.hsr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

.hsr-num {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--dark);
}

.hsr-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray);
}

.hsr-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cc, #ff6b00) 0%, transparent 60%);
  opacity: 0;
  border-radius: inherit;
  transition: opacity var(--transition);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.cat-card:hover::before {
  opacity: .04;
}

.cat-icon-wrap {
  font-size: 2.2rem;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--cc, #ff6b00) 12%, transparent);
}

.cat-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.cat-body p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.5;
}

.cat-count {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 8px;
}

.cat-arr {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray);
  transition: color var(--transition), transform var(--transition);
  margin-top: auto;
}

.cat-card:hover .cat-arr {
  color: var(--orange);
  transform: translateX(4px);
}

/* ============================================================
   PRODUCTS / BEST SELLERS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

/* Featured spans full top row */
.prod-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-rows: auto auto auto auto auto;
  align-items: start;
  gap: 10px 20px;
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}

.prod-featured .prod-badge {
  grid-column: 1;
  grid-row: 1;
}

.prod-featured .prod-ver {
  grid-column: 2;
  grid-row: 1;
}

.prod-featured .prod-ico {
  grid-row: 2;
  grid-column: 1;
  font-size: 3.5rem;
}

.prod-featured .prod-name {
  grid-row: 2;
  grid-column: 2 / 4;
  align-self: center;
}

.prod-featured .prod-desc {
  grid-row: 3;
  grid-column: 1 / 4;
}

.prod-featured .prod-tags {
  grid-row: 4;
  grid-column: 1 / 4;
}

.prod-featured .prod-foot {
  grid-row: 5;
  grid-column: 1 / 4;
}

.prod-featured .prod-name {
  font-size: 1.9rem;
  color: var(--white);
}

.prod-featured .prod-desc {
  color: rgba(255, 255, 255, .7);
}

.prod-featured .prod-old {
  color: rgba(255, 255, 255, .45);
}

.prod-featured .prod-new {
  color: var(--orange-l);
}

.prod-featured:hover {
  border-color: var(--orange);
}

.prod-badge {
  display: inline-block;
  background: var(--orange-xl);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.prod-badge-free {
  background: #dcfce7;
  color: #16a34a;
}

.prod-featured .prod-badge {
  background: rgba(255, 107, 0, .2);
  color: var(--orange-l);
}

.prod-ver {
  display: inline-block;
  background: var(--light);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.prod-featured .prod-ver {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
}

.prod-ico {
  font-size: 2.4rem;
  line-height: 1;
}

.prod-name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--dark);
}

.prod-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.prod-tags span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.prod-featured .prod-tags span {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .15);
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.prod-featured .prod-foot {
  border-top-color: rgba(255, 255, 255, .1);
}

.prod-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prod-old {
  font-size: .8rem;
  color: var(--gray);
  text-decoration: line-through;
}

.prod-new {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
}

.prod-free-label {
  color: #16a34a;
}

/* ============================================================
   FREE NEWSLETTER
   ============================================================ */
.free-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.free-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.free-h2 span {
  color: rgba(255, 255, 255, .75);
}

.free-sub {
  font-size: .97rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.free-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.fl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

.fl-item span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
  font-weight: 900;
}

.sub-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.sub-input {
  flex: 1;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--white);
  outline: none;
  min-width: 0;
  transition: border-color var(--transition), background var(--transition);
}

.sub-input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.sub-input:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, .25);
}

.sub-note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

/* Bundle stack */
.bundle-stack {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  min-width: 230px;
}

.bsc-ico {
  font-size: 2rem;
}

.bsc-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}

.bsc-free {
  font-size: .72rem;
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 4px;
  width: fit-content;
}

.bsc1 {
  transform: rotate(-6deg) translate(-20px, -30px);
  z-index: 1;
}

.bsc2 {
  transform: rotate(0deg) translate(10px, 0);
  z-index: 2;
}

.bsc3 {
  transform: rotate(5deg) translate(-10px, 28px);
  z-index: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 30px;
}

.about-stat {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1.5px solid var(--border);
  transition: border-color var(--transition);
}

.about-stat:hover {
  border-color: var(--orange);
}

.as-num {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--orange);
}

.as-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray);
}

.about-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* About card */
.about-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}

.ac-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ac-av {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 900;
  flex-shrink: 0;
}

.ac-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.ac-handle {
  font-size: .78rem;
  color: var(--gray);
}

.ac-quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--dark);
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 20px;
}

.ac-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.soc-btn {
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.soc-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* About mini cards */
.prod-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: auto;
}

.about-mini-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1.5px solid var(--border);
}

.amc-ico {
  font-size: 1.5rem;
}

.amc-t {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.amc-s {
  font-size: .78rem;
  color: var(--gray);
}

/* ============================================================
   TOP SELLING SECTIONS (Games & Assets)
   ============================================================ */
.ts-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Sidebar label */
.ts-label {
  flex: 0 0 260px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ts-label::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.ts-row-orange .ts-label {
  background: linear-gradient(135deg, var(--orange) 0%, #cc5500 100%);
}

.ts-row-red .ts-label {
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
}

.ts-label h2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Horizontal card list */
.ts-cards-wrapper {
  flex: 1;
  overflow: hidden;
  /* Hide scrollbar for a clean track look, or enable overflow-x: auto */
  position: relative;
}

.ts-cards-track {
  display: flex;
  gap: 14px;
}

.ts-cards-track .ts-card {
  flex: 0 0 calc((100% - (14px * 5)) / 6);
  min-width: 140px;
  /* Minimum width to maintain layout */
}

.ts-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.ts-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

/* Card Image / Color Header */
.ts-card-img {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ts-rank {
  position: absolute;
  top: 7px;
  left: 7px;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .58rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.ts-emoji {
  font-size: 2rem;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .3));
  transition: transform .3s ease;
}

.ts-card:hover .ts-emoji {
  transform: scale(1.18) rotate(-6deg);
}

/* Card colour themes */
.ts-img-horror {
  background: linear-gradient(135deg, #1a0a1a 0%, #6b0f0f 100%);
}

.ts-img-adventure {
  background: linear-gradient(135deg, #0f1a0a 0%, #2d5a1b 100%);
}

.ts-img-fps {
  background: linear-gradient(135deg, #0a0f1a 0%, #1b3a6b 100%);
}

.ts-img-platformer {
  background: linear-gradient(135deg, #1a1a0a 0%, #7a5a00 100%);
}

.ts-img-rpg {
  background: linear-gradient(135deg, #1a0a1a 0%, #5a1b7a 100%);
}

.ts-img-stealth {
  background: linear-gradient(135deg, #0a0a0a 0%, #1f2f3f 100%);
}

.ts-img-examine {
  background: linear-gradient(135deg, #001a1a 0%, #006666 100%);
}

.ts-img-door {
  background: linear-gradient(135deg, #1a0f0a 0%, #7a4010 100%);
}

.ts-img-letter {
  background: linear-gradient(135deg, #0f0a1a 0%, #403070 100%);
}

.ts-img-keypad {
  background: linear-gradient(135deg, #001a0a 0%, #005a30 100%);
}

.ts-img-particle {
  background: linear-gradient(135deg, #1a0a00 0%, #cc5500 100%);
}

.ts-img-inventory {
  background: linear-gradient(135deg, #00001a 0%, #003080 100%);
}

/* Card body */
.ts-card-body {
  padding: 11px 12px 13px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 7px;
}

.ts-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ts-badge {
  display: inline-block;
  background: var(--orange-xl);
  color: var(--orange);
  font-size: .58rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ts-badge-free {
  background: #dcfce7;
  color: #16a34a;
}

.ts-badge-blue {
  background: #dbeafe;
  color: #2563eb;
}

.ts-badge-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.ts-badge-teal {
  background: #ccfbf1;
  color: #0d9488;
}

.ts-ver {
  display: inline-block;
  background: var(--light);
  color: var(--gray);
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
  white-space: nowrap;
}

.ts-name {
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--dark);
  line-height: 1.25;
}

.ts-cat {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ts-desc {
  font-size: .73rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.ts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ts-tags span {
  font-size: .6rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--dark);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.ts-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  gap: 8px;
  flex-wrap: wrap;
}

.ts-prices {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ts-old {
  font-size: .75rem;
  color: var(--gray);
  text-decoration: line-through;
  line-height: 1;
}

.ts-new {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.ts-price-free {
  font-size: 1.1rem;
  font-weight: 900;
  color: #16a34a;
}

.ts-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

/* btn-view already exists in style.css for prod cards — shared */

/* Dark-tinted card variant (for Assets section) */
.ts-card-dark .ts-tags span {
  background: var(--light);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: start;
}

.news-small-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.news-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.nc-tag {
  display: inline-block;
  background: var(--orange-xl);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--dark);
}

.news-big h3 {
  font-size: 1.4rem;
}

.news-card p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.nc-foot {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 24px;
}

.deal-orbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.do {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .78rem;
  line-height: 1.4;
  color: var(--white);
  animation: float1 5s ease-in-out infinite;
}

.do strong {
  display: block;
  font-size: .9rem;
  font-weight: 900;
}

.do1 {
  background: var(--orange);
  animation-delay: 0s;
}

.do2 {
  background: #3b82f6;
  animation-delay: .7s;
  width: 130px;
  height: 130px;
}

.do3 {
  background: #16a34a;
  animation-delay: 1.4s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, .75);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-nav-logo {
  margin-bottom: 4px;
}

.footer-nav-logo .nav-logo-badge {
  background: var(--orange);
}

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

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition);
}

.fsoc:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

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

.foot-pays {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.foot-pays span {
  font-size: .72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in animation */
.animate-fadein {
  opacity: 0;
  transform: translateY(22px);
  animation: fadein .7s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes fadein {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .prod-featured {
    grid-column: 1 / -1;
  }

  .hero-wrap {
    gap: 36px;
  }

  .hero-right {
    height: 420px;
  }

  .hero-main-card {
    width: 280px;
  }

  .about-wrap {
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hero-right {
    display: none;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hsr-sep {
    display: none;
  }

  .hsr-item {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 50;
  }

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

  .nav-links a {
    padding: 10px 14px;
    border-radius: 10px;
  }

  .navbar {
    position: sticky;
  }

  .nav-wrap {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .cats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

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

  .free-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .free-right {
    display: none;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .cta-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-right {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .sec-h2 {
    font-size: 1.8rem;
  }

  .hero-pill,
  .hero-btns,
  .hero-trust {
    flex-wrap: wrap;
  }

  .hero {
    padding: 40px 20px 0;
  }
}

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .ann-bar {
    font-size: .78rem;
    gap: 8px;
  }
}

/* ============================================================
   CART & E-COMMERCE ADDITIONS
   ============================================================ */

/* Product card action buttons row */
.prod-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-view {
  background: var(--dark);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.btn-view:hover {
  background: #333;
}

/* Cart Nav Button */
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  color: var(--dark);
}

.cart-btn:hover {
  border-color: var(--orange);
  background: var(--orange-xl);
  color: var(--orange);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gray);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  transition: background .3s, transform .3s;
}

.cart-count.has-items {
  background: var(--orange);
  transform: scale(1.15);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Product card image (replaces emoji .prod-ico) ───────────── */
.prod-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.prod-card:hover .prod-img {
  transform: scale(1.06);
}

/* ── Featured (Best Seller) card — no image, text left-aligned ── */
.prod-featured {
  flex-direction: column;
}

.prod-featured .prod-img-wrap {
  width: 90px;
  height: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.25);
}

.prod-featured .prod-body-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.prod-featured .prod-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ================================================================
   HERO 3D CARD STACK CAROUSEL
   ================================================================ */
.hero-right {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

/* Base card */
.hcs-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 22px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  /* smooth all transforms */
  transition:
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.75s ease,
    box-shadow 0.75s ease,
    z-index 0s;
  transform-origin: center bottom;
  will-change: transform, opacity;
}

/* ── POSITIONS ─────────────────────────────────────────────────── */

/* FRONT — center, full size, fully visible */
.hcs-card.pos-front {
  transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 28px 70px rgba(255, 107, 0, .2), 0 8px 24px rgba(0, 0, 0, .15);
}

/* BACK-LEFT — left side, smaller, half behind center */
.hcs-card.pos-left {
  transform: translateX(-58%) translateY(24px) scale(0.78) rotateY(12deg);
  opacity: 0.65;
  z-index: 5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

/* BACK-RIGHT — right side, smaller, half behind center */
.hcs-card.pos-right {
  transform: translateX(58%) translateY(24px) scale(0.78) rotateY(-12deg);
  opacity: 0.65;
  z-index: 5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

/* ── CARD INTERNALS ─────────────────────────────────────────────── */
.hcs-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.hcs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hcs-card.pos-front:hover .hcs-img-wrap img {
  transform: scale(1.05);
}

.hcs-body {
  padding: 14px 16px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.hcs-badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--orange-xl);
  color: var(--orange);
  width: fit-content;
}

.hcs-badge-blue {
  background: #dbeafe;
  color: #2563eb;
}

.hcs-badge-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.hcs-name {
  font-size: .98rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.025em;
  line-height: 1.2;
}

.hcs-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.hcs-tags span {
  font-size: .65rem;
  font-weight: 700;
  background: var(--cream);
  color: var(--gray);
  padding: 2px 8px;
  border-radius: 999px;
}

.hcs-foot {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hcs-prices {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hcs-old {
  font-size: .75rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.hcs-new {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -.03em;
}

.hcs-btn {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.hcs-btn:hover {
  background: var(--orange);
  transform: scale(1.04);
}

/* ── DOTS ───────────────────────────────────────────────────────── */
.hcs-dots {
  display: flex;
  gap: 7px;
  margin-top: 8px;
}

.hcs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.hcs-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 999px;
}

/* ================================================================
   MOBILE RESPONSIVENESS (style.css)
   ================================================================ */

/* ── Tablets & large phones (max 992px) ─────────────────────── */
@media (max-width: 992px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-sub {
    max-width: 100%;
    text-align: center;
  }

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

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

  .hero-right {
    height: 360px;
    width: 100%;
  }

  /* About layout */
  .about-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  /* Free section */
  .free-wrap {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .free-left {
    width: 100%;
  }

  .sub-form {
    flex-direction: column;
    gap: 12px;
  }

  .sub-input,
  .btn-sub {
    width: 100%;
  }

  .free-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* CTA Banner */
  .cta-wrap {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .cta-right {
    justify-content: center;
  }
}

/* ── Mobile (max 768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Announcement Bar */
  .ann-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 40px 12px 20px;
    height: auto;
    font-size: 0.75rem;
  }

  .ann-cta {
    font-size: 0.7rem;
    padding: 2px 10px;
  }

  /* Navbar */
  .nav-wrap {
    height: 60px;
    gap: 16px;
  }

  .nav-logo span {
    display: none;
  }

  /* Mobile Menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 1000;
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 800;
    display: block;
    padding: 12px;
    color: var(--dark);
  }

  .nav-right .btn-nav {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 40px;
    text-align: center;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
    max-width: 400px;
  }

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

  .hero-right {
    order: -1;
    height: 320px;
    width: 100%;
  }

  .hero-card-stack {
    width: 220px;
    height: 320px;
  }

  .hcs-card.pos-left {
    transform: translateX(-50%) translateY(20px) scale(0.75) rotateY(10deg);
  }

  .hcs-card.pos-right {
    transform: translateX(50%) translateY(20px) scale(0.75) rotateY(-10deg);
  }

  /* Hero stats */
  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 20px;
  }

  .hsr-sep {
    display: none;
  }

  /* Content grids */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* About section */
  .about-wrap {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-mini-cards {
    gap: 12px;
  }

  /* Free section */
  .free-wrap {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  .sub-form {
    flex-direction: column;
    gap: 10px;
  }

  .sub-input,
  .btn-sub {
    width: 100%;
  }

  .free-left {
    width: 100%;
  }

  .free-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  /* CTA Banner */
  .cta-wrap {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .cta-right .deal-orbs {
    justify-content: center;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  /* News big card */
  .news-big {
    min-height: auto;
    padding: 24px;
  }
}

/* ── Small phones (max 480px) ────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns a,
  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 16px;
  }

  /* Cart sidebar full width on mobile */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* Section headings smaller */
  .sec-h2 {
    font-size: 1.8rem;
  }

  /* Cards full width */
  .cat-card,
  .prod-card,
  .news-card {
    width: 100%;
  }

  /* About grid full width */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .as-num {
    font-size: 1.6rem;
  }

  /* Pill + trust smaller */
  .hero-pill {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-trust {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Free section list */
  .free-list {
    text-align: left;
  }

  /* Featured product full bleed */
  .prod-featured {
    padding: 20px;
  }
}


@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

  .hero-right {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Announcement Bar */
  .ann-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 40px 12px 20px;
    height: auto;
    font-size: 0.75rem;
  }

  .ann-cta {
    font-size: 0.7rem;
    padding: 2px 10px;
  }

  .nav-wrap {
    height: 60px;
    gap: 16px;
  }

  .nav-logo span {
    display: none;
    /* Hide full text logo on mobile */
  }

  /* Mobile Menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 1000;
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 800;
    display: block;
    padding: 12px;
    color: var(--dark);
  }

  .nav-right .btn-nav {
    display: none;
    /* Hide in navbar on mobile, already in hero or menu */
  }

  /* Hero adjustments */
  .hero {
    padding-top: 40px;
    text-align: center;
  }

  .hero-left {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
    max-width: 400px;
  }

  .hero-card-stack {
    width: 240px;
    height: 340px;
  }

  .hcs-card.pos-left {
    transform: translateX(-50%) translateY(20px) scale(0.75) rotateY(10deg);
  }

  .hcs-card.pos-right {
    transform: translateX(50%) translateY(20px) scale(0.75) rotateY(-10deg);
  }

  /* Grids */
  .products-grid,
  .cats-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ts-row {
    flex-direction: column;
  }

  .ts-label {
    flex: 0 0 auto;
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .ts-label h2 {
    font-size: 1.8rem;
  }

  .ts-cards-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    /* Space for scrollbar */
    margin-right: -20px;
    /* Bleed to edge */
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .ts-cards-track {
    width: max-content;
  }

  .ts-cards-track .ts-card {
    width: 200px;
    /* Fixed width for horizontal scrolling */
    flex: 0 0 auto;
  }

  .best-sellers-row {
    flex-direction: column;
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 20px;
  }

  .hsr-sep {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col:first-child {
    align-items: center;
  }

  .f-socials {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn-white,
  .hero-btns .btn-outline-big {
    width: 100%;
    justify-content: center;
  }

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

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* .ts-row adjustments for small mobile */
  .ts-cards-track .ts-card {
    width: 160px;
    /* slightly smaller cards on tiny screens */
  }

  .ts-actions {
    flex-wrap: wrap;
  }
}