.hero {
  width: 95%;
  max-width: 1400px;
  margin: 2rem auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.carousel {
  position: relative;
  width: 100%;
  height: 480px;
  background: radial-gradient(circle at center, #111536 0%, #050614 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}

.heroSubtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00d2ff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.heroTitle {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #a5b4fc 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.laptopMockup {
  width: 450px;
  height: 10px;
  background: #2e3047;
  border-radius: 20px;
  margin: 1rem 0 2.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3), 
              0 0 40px rgba(129, 140, 248, 0.2);
}

.laptopMockup::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #00d2ff, #818cf8, #ff0055);
  filter: blur(2px);
}

.buyBtn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 3rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.buyBtn:hover {
  background: #fff;
  color: #050614;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.buyBtn:active {
  transform: translateY(0) scale(0.96);
}

.carouselDots {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.dot.active {
  width: 18px;
  border-radius: 3px;
  background: #00d2ff;
}

.navBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 11, 22, 0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  border: none;
}

.iconNormal { display: block; }
.iconHover { display: none; }

.navBtn:hover {
  background: rgba(10, 11, 22, 0.5);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.navBtn:active {
  transform: translateY(-50%) scale(0.9);
}

.navBtn:hover .iconNormal { display: none; }
.navBtn:hover .iconHover { display: block; }

.navBtnLeft { left: 1rem; }
.navBtnLeft:hover { 
  left: 0; 
  width: 60px;
  height: 120px;
  border-radius: 0 100px 100px 0;
  padding-right: 5px;
}

.navBtnRight { right: 1rem; }
.navBtnRight:hover { 
  right: 0; 
  width: 60px;
  height: 120px;
  border-radius: 100px 0 0 100px;
  padding-left: 5px;
}

/* Custom PC Banner */
.secondaryBanner {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto 3rem;
  background: color-mix(in srgb, var(--secondary-bg) 70%, transparent);
  border-radius: 16px;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.secondaryBanner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 15%, transparent) 0%, transparent 70%);
  z-index: 1;
}

.bannerContent {
  z-index: 2;
}

.bannerTitle {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.buildBtn {
  background: #fff;
  color: #101435;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.buildBtn:hover {
  background: #00d2ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}

.buildBtn:active {
  transform: translateY(0) scale(0.96);
}

.bannerGraphic {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerImage {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  animation: floatGlow 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bannerImage:hover {
  transform: scale(1.04) rotate(1.5deg);
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 15px 30px color-mix(in srgb, var(--accent-color) 25%, transparent));
  }
  50% {
    transform: translateY(-12px);
    filter: drop-shadow(0 25px 50px color-mix(in srgb, var(--accent-color) 45%, transparent));
  }
  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 15px 30px color-mix(in srgb, var(--accent-color) 25%, transparent));
  }
}

/* Products Grid */
.mainContent {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.productSection {
  margin-bottom: 4rem;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Product Card Redesign */
.productCard {
  background: var(--secondary-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  height: 100%;
  width: 100%;
}

.productCard:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
[data-theme='dark'] .productCard:hover, [data-theme='crywolf'] .productCard:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.productCard:active {
  transform: translateY(-2px) scale(0.98);
  border-color: var(--accent-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
[data-theme='dark'] .productCard:active, [data-theme='crywolf'] .productCard:active {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.productBadge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.productImageWrapper {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}
[data-theme='dark'] .productImageWrapper, [data-theme='crywolf'] .productImageWrapper {
  background: #ffffff; /* Keep white container for white GPU images so it matches nicely */
}

.productImage {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.productCard:hover .productImage {
  transform: scale(1.08);
}

.productTitle {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  flex-grow: 1;
}

.productPrice {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.oldPrice {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

/* --- NEW SECTIONS --- */
.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.sectionLabel {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sectionTitle {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-header);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.sectionSubtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.viewAllBtn {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.viewAllBtn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.viewAllBtn:active {
  transform: scale(0.95);
}


.categoryCount {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Horizontal Carousels */
.carouselContainer {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  align-items: stretch;
}
.carouselContainer::-webkit-scrollbar {
  display: none;
}
.carouselContainer:active {
  cursor: grabbing;
}
.carouselContainer:empty {
  cursor: default;
}

.carouselContainer .productCard {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carouselContainer .productCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.carouselContainer .productCard:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Hot Deals Section */
.hotDealsSection {
  margin-bottom: 5rem;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, transparent 100%);
  padding: 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(239, 68, 68, 0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.hotDealsSection::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hotDealsIconBox {
  background: linear-gradient(135deg, #ef4444, #f97316);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  cursor: default;
}

.hotDealsIconBox:hover {
  transform: rotate(0deg) scale(1.1);
}

.hotDealsLabel {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotDealsLabel::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hotDealsTitle {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-header);
  margin: 0;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--text-header) 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hotDealsSubtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.25rem 0 0;
}

.hotDealsTimer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.1) inset;
  transition: all 0.3s ease;
}

.hotDealsTimer:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.hotDealsNavBtn {
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--secondary-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotDealsNavBtn:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ef4444;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}

.hotDealsNavBtn:active {
  transform: scale(0.95);
}

.hotDealsViewAllBtn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.hotDealsViewAllBtn:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.hotDealsViewAllBtn:active {
  transform: translateX(1px) scale(0.96);
}

/* Featured Gear Section - Promo Style */
.featuredGearSection {
  margin-bottom: 5rem;
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.featuredGearSection:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.featuredIconBox {
  width: 42px;
  height: 42px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.featuredLabel {
  display: none; /* Hide for cleaner look like promoCard */
}

.featuredTitle {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
}
[data-theme='dark'] .featuredTitle, [data-theme='crywolf'] .featuredTitle {
  color: #f8fafc;
}

.featuredSubtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Discounted Section */
.discountedSection {
  margin-bottom: 5rem;
  background: linear-gradient(145deg, #2a0a18, #3b0716);
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

[data-theme='light'] .discountedSection {
  background: linear-gradient(145deg, #fff1f2, #ffe4e6);
  border: 1px solid #fecdd3;
  box-shadow: 0 25px 50px -12px rgba(225, 29, 72, 0.1);
}

.discountedIconBox {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
}

.discountedLabel {
  color: #fb7185;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
[data-theme='light'] .discountedLabel {
  color: #e11d48;
}

.discountedTitle {
  font-size: 2.75rem;
  font-weight: 900;
  color: #f8fafc;
  margin: 0;
  letter-spacing: -1px;
}
[data-theme='light'] .discountedTitle {
  color: #0f172a;
}

.discountedSubtitle {
  color: #fecdd3;
  font-size: 1rem;
  margin: 0.5rem 0 0;
  font-weight: 500;
}
[data-theme='light'] .discountedSubtitle {
  color: #be123c;
}

.featuredNavBtn {
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--secondary-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.featuredNavBtn:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
  color: #2563eb;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.featuredNavBtn:active {
  transform: scale(0.95);
}

.featuredViewAllBtn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.featuredViewAllBtn:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.featuredViewAllBtn:active {
  transform: translateX(1px) scale(0.96);
}

.featuredCarouselWrapper {
  position: relative;
}

.featuredCarousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
}

.featuredCarousel::-webkit-scrollbar {
  display: none;
}

/* Brands Section */
.brandsSection {
  margin-bottom: 4rem;
}

.brandsLabel {
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brandsTitle {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-header);
  margin: 0;
  letter-spacing: -0.5px;
}

.brandsMarqueeWrapper {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brandsMarqueeTrack {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: brandsScroll 80s linear infinite;
}

.brandsMarqueeTrack:hover {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brandTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: default;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brandTagImg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.brandTag:hover {
  border-color: var(--accent-color);
  color: #fff;
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

.brandTag:active {
  transform: translateY(0) scale(0.95);
}

.carouselFadeLeft,
.carouselFadeRight {
  position: absolute;
  top: 0;
  bottom: 2rem;
  width: 80px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carouselFadeLeft {
  left: 0;
  background: linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);
}
.carouselFadeRight {
  right: 0;
  background: linear-gradient(270deg, var(--primary-bg) 0%, transparent 100%);
}
.carouselWrapper:hover .carouselFadeLeft,
.carouselWrapper:hover .carouselFadeRight {
  opacity: 1;
}

@media (max-width: 768px) {
  .carouselContainer .productCard {
    min-width: 240px;
    max-width: 240px;
  }
  .featuredGearSection,
  .hotDealsSection {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .brandTag {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 576px) {
  .brandTag {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }
  .featuredGearSection,
  .hotDealsSection {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 3rem;
  }
  .hotDealsTimer {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}

.addBtn {
  width: 100%;
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.addBtn:hover {
  background: color-mix(in srgb, var(--accent-color) 80%, #000);
}

.addBtn:active {
  transform: scale(0.97);
}

.timer {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Shop by Type Tabs */
.typeTabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.typeTabs::-webkit-scrollbar { display: none; }

.typeTab {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.typeTab:hover {
  color: var(--text-main);
}

.typeTab:active {
  transform: scale(0.96);
}

.typeTab.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
  }
  
  .mainContent {
    width: 100%;
    padding: 0 1rem;
  }
  
  .carousel {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .heroTitle {
    font-size: 2.2rem;
  }
  
  .laptopMockup {
    width: 100%;
    max-width: 250px;
    margin: 1.5rem 0;
  }

  .secondaryBanner {
    flex-direction: column-reverse;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    overflow: visible;
    margin-top: 4rem;
  }

  .bannerTitle {
    font-size: 2rem;
  }

  .bannerContent {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
  }

  .bannerGraphic {
    margin-top: -6rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: scale(1) translateX(0) !important;
  }

  .bannerGraphic img {
    max-width: 260px !important;
    height: auto !important;
  }

  .sectionHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .sectionTitle {
    font-size: 1.6rem;
  }

  .productGrid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .carouselContainer .productCard {
    min-width: 200px;
    max-width: 200px;
  }
  
  .typeTabs {
    padding-bottom: 0.5rem;
  }
  
  .featuredGearSection,
  .hotDealsSection {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
  }
  
  .hotDealsTimer {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }

  .brandTag {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }
  
  .navBtnLeft { left: 0.5rem; }
  .navBtnRight { right: 0.5rem; }
  .buyBtn { padding: 0.75rem 2rem; }
}

.wishlistBtn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
}

.wishlistBtn:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--primary-bg) 70%, white);
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.2);
}

.wishlistBtn:active {
  transform: scale(0.95);
}

.wishlistBtn.wished {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  animation: heartBeat 0.5s ease-in-out;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}



/* Category Section */
.categorySection {
  margin-bottom: 4rem;
}

.categoryHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.categoryLabel {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.categoryLabel::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-block;
}

.categoryTitle {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-header);
  margin: 0 0 0.25rem;
  letter-spacing: -0.5px;
}

.categorySub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.categoryNav {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
}

.categoryNavBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.categoryNavBtn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
}

.categoryNavBtn:active {
  transform: scale(0.92);
}

.categoryScroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
}

.categoryScroll::-webkit-scrollbar {
  display: none;
}

.categoryCard {
  min-width: 170px;
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.categoryCard:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.categoryCard:active {
  transform: translateY(-2px) scale(0.97);
}

.categoryCardIcon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.categoryCard:hover .categoryCardIcon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.categoryCardName {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-header);
  position: relative;
  z-index: 1;
}

.categoryCardCount {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.categoryCardGlow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.categoryCard:hover .categoryCardGlow {
  opacity: 1;
}

@media (max-width: 768px) {
  .categoryTitle {
    font-size: 1.6rem;
  }
  .categoryCard {
    min-width: 140px;
    padding: 1.25rem;
  }
  .categoryCardIcon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .categoryCardIcon svg {
    width: 24px;
    height: 24px;
  }
  .categoryCardName {
    font-size: 0.9rem;
  }
  .categoryNav {
    display: none;
  }
}

@media (max-width: 576px) {
  .categoryCard {
    min-width: 120px;
    padding: 1rem;
    gap: 0.5rem;
  }
  .categoryCardIcon {
    width: 44px;
    height: 44px;
  }
}



.categoryHomeSection {
  margin-top: 1.5rem;
  padding: 0;
  background: transparent;
}

.categoryHomeTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.categoryHomeViewAllBtn {
  background: transparent;
  border: none;
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.relatedGrid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.relatedGrid::-webkit-scrollbar {
  display: none;
}

.relatedCard {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
  border: 1px solid #f3f4f6;
}

.relatedCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #e5e7eb;
}

.relatedCard:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.relatedImageWrapper {
  height: 140px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.relatedImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.relatedName {
  color: #374151;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.relatedPrice {
  color: #111827;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: auto;
}

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

.promoCard {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  transition: all 0.3s ease;
}

.promoCard:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.promoHeaderRow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.promoIcon {
  width: 42px;
  height: 42px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.promoCard:hover .promoIcon {
  background: #2563eb;
  color: #ffffff;
}

.promoTitle {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0f172a;
  text-transform: uppercase;
}

[data-theme='dark'] .promoTitle {
  color: #f8fafc;
}

.promoText {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 65%;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

[data-theme='dark'] .promoText {
  color: #94a3b8;
}

.promoButtonSolid {
  background: #2563eb;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.promoButtonSolid:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
.promoButtonSolid:active {
  transform: translateY(0) scale(0.96);
}

.promoButtonOutline {
  background: transparent;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 2;
}
.promoButtonOutline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}
.promoButtonOutline:active {
  transform: translateY(0) scale(0.96);
}

.promoWatermark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  color: #f8fafc;
  z-index: -1;
  transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
}

.promoCard:hover .promoWatermark,
.discountedSection:hover .promoWatermark,
.featuredGearSection:hover .promoWatermark {
  transform: scale(1.25) rotate(15deg);
}

[data-theme='dark'] .promoWatermark {
  color: rgba(255, 255, 255, 0.02);
}

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

.relatedGrid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.relatedGrid::-webkit-scrollbar {
  height: 6px;
}
.relatedGrid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
}
[data-theme='dark'] .relatedGrid::-webkit-scrollbar-thumb, [data-theme='crywolf'] .relatedGrid::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
}

.relatedCard {
  min-width: 200px;
  max-width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.relatedCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.relatedCard:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 8px -2px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}
[data-theme='dark'] .relatedCard, [data-theme='crywolf'] .relatedCard {
  background: rgba(255,255,255,0.03);
  box-shadow: none;
}
[data-theme='dark'] .relatedCard:hover, [data-theme='crywolf'] .relatedCard:hover {
  background: rgba(255,255,255,0.05);
}
[data-theme='dark'] .relatedCard:active, [data-theme='crywolf'] .relatedCard:active {
  background: rgba(255,255,255,0.08);
}

.relatedImageWrapper {
  position: relative;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.relatedBadge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #dc2626;
  color: white;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}
.relatedImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.relatedName {
  font-size: 0.8rem;
  color: #334155;
  margin-bottom: 0.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  font-weight: 500;
}
[data-theme='dark'] .relatedName, [data-theme='crywolf'] .relatedName {
  color: #94a3b8;
}
.relatedPrice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-color);
}
.relatedOldPrice {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}
[data-theme='dark'] .relatedPrice, [data-theme='crywolf'] .relatedPrice {
  color: #fff;
}

.categoryHomeTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
[data-theme='dark'] .categoryHomeTitle, [data-theme='crywolf'] .categoryHomeTitle {
  color: #fff;
}

.categoryHomeViewAllBtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.categoryHomeViewAllBtn:hover {
  opacity: 0.85;
}
.categoryHomeViewAllBtn:active {
  transform: scale(0.94);
  opacity: 1;
}
