::selection {
  background: #ff4500;
  color: #000000;
}

::-moz-selection {
  background: #ff4500;
  color: #000000;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff4500 0%, #ffcc00 100%);
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffcc00 0%, #ff4500 100%);
}

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  background-color: #050505;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

body.dark-theme .text-secondary {
  color: #c2c2c2 !important;
}

body.dark-theme {
  animation: bodyFadeIn 1.5s ease;
}

@keyframes bodyFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#customAlert {
  background-color: #ff0000 !important;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

a,
button,
input,
select,
textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

body,
li,
p,
span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  user-select: none;
  display: block;
  background: linear-gradient(to right,
      #ff4500 0%,
      #ffcc00 25%,
      #ffffff 50%,
      #ffcc00 75%,
      #ff4500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation:
    h1-shine 4s linear infinite,
    reveal-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 30px;
  padding-left: 15px;
  text-transform: uppercase;
  user-select: none;
  display: block;
  background: linear-gradient(45deg, #ff4500, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-left: 5px solid #ff4500;
  box-shadow: -10px 0 15px -10px rgba(255, 69, 0, 0.6);
  animation: reveal-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes h1-shine {
  to {
    background-position: 200% center;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

main {
  padding-top: 70px;
}

.navbar {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  border-bottom: 1px solid rgba(255, 69, 0, 0.3);
  padding: 15px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  backdrop-filter: blur(10px);
  z-index: 1030;
  overflow: visible;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff4500 20%, #ffcc00 50%, #ff4500 80%, transparent);
  animation: border-shimmer 4s linear infinite;
  z-index: 1;
}

.navbar-brand {
  align-items: center;
  background: linear-gradient(to right, #ff4500, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  user-select: none;
  text-transform: uppercase;
}

.navbar-logo {
  height: 40px;
  user-select: none;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
}

.navbar-nav .nav-link {
  color: #c0c0c0;
  margin: 0 15px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 12px;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #ff4500, #ffcc00);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link.nav-icon-link::before {
  display: none;
}

.navbar-nav .nav-link[aria-current="page"]::before {
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  display: none;
}

.navbar-nav .nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

.nav-link[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: #ff4500 !important;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
  position: relative;
  display: inline-block !important;
  width: fit-content;
}

.nav-link[aria-current="page"]::after,
.footer-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ffcc00);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.8);
  transform-origin: center;
  animation:
    active-slide 0.5s ease forwards,
    active-pulse 2s ease-in-out infinite alternate;
}

@media (max-width: 991px) {
  .nav-link[aria-current="page"] {
    margin-bottom: 10px;
  }

  .nav-link[aria-current="page"]::after {
    bottom: -2px;
    height: 2px;
  }
}

@keyframes active-slide {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes active-pulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
    filter: brightness(1);
    transform: scaleX(1);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.9);
    filter: brightness(1.2);
    transform: scaleX(1.05);
  }
}

.search-form {
  margin: 0 15px;
  max-width: 500px;
  min-width: 200px;
  display: flex;
  position: relative;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.nav-icon-link {
  font-size: 1.3rem;
  color: #fff !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-icon-link:hover {
  color: #ff4500 !important;
  transform: translateY(-2px);
}

.nav-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(135deg, #ff4500, #ffcc00);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.5);
}

.search-input {
  background-color: #ffffff !important;
  border: 1px solid rgba(255, 69, 0, 0.3) !important;
  border-radius: 25px 0 0 25px;
  color: #000000;
  padding: 10px 20px;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

.search-input::placeholder {
  color: #6b6b6b;
  font-size: 0.9rem;
}

.search-form .search-input:focus {
  border: 2px solid #ff4500 !important;
  box-shadow: -5px 0 15px rgba(255, 69, 0, 0.15) !important;
  outline: none;
}

.search-btn {
  border: none;
  border-radius: 0 25px 25px 0;
  color: #ffffff !important;
  padding: 10px 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: orangered !important;
}

.c-img {
  height: 650px;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.15);
  transition: filter 0.5s ease;
  user-select: none;
}

.carousel-item.active .c-img {
  filter: brightness(0.75) contrast(1.15);
}

.hero-carousel {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.carousel-content {
  max-width: 600px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.4);
  border-radius: 20px;
}

.carousel-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.carousel-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #e0e0e0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.carousel-btn {
  background: linear-gradient(135deg, #ff4500, #ffcc00);
  border: none;
  color: #000;
  font-weight: 800;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.5);
  color: #000;
}

.carousel-indicators button {
  background-color: #333333 !important;
  height: 4px !important;
  width: 30px !important;
  border-radius: 2px;
  border: none !important;
  opacity: 0.5;
  transition: all 0.4s ease !important;
}

.carousel-indicators button.active {
  background: linear-gradient(90deg, #ff4500, #ffcc00) !important;
  width: 30px !important;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.ticker-container {
  align-items: center;
  background: linear-gradient(90deg, #050505 0%, #0c0c0c 50%, #050505 100%);
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  height: 32px;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1020;
}

.ticker-container::before,
.ticker-container::after {
  content: '';
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 1;
}

.ticker-container::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.ticker-container::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.ticker-scroll {
  animation: moveTicker 36s linear infinite;
  display: flex;
  position: absolute;
  user-select: none;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.ticker-container:hover .ticker-scroll {
  animation-play-state: paused;
}

.ticker-scroll span {
  color: #efe7d2;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  padding-right: 130px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.ticker-scroll span:nth-child(odd) {
  color: #ffc977;
  text-shadow: 0 0 6px rgba(255, 169, 64, 0.35);
}

.ticker-scroll span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #ffcc00, #ff7a00);
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.brand-text {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(-45deg,
      #000000 0%,
      #ff0000 15%,
      #ff4500 30%,
      #ffffff 45%,
      #ffcc00 60%,
      #ff4500 85%,
      #000000 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: ultimate-elite 6s ease-in-out infinite;
}

@keyframes ultimate-elite {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.4));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 12px rgba(255, 204, 0, 0.7));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.4));
  }
}

.card-body {
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-body .d-flex {
  margin-top: auto;
}

.p-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
  user-select: none;
  will-change: transform, filter;
  transition: all 1s cubic-bezier(0.1, 0, 0.1, 1);
  filter: brightness(0.65) saturate(0.8) contrast(1.1);
}

.p-image:hover {
  transform: scale(1.1);
  filter: brightness(0.75) saturate(1.1) contrast(1.15);
}

.image-container {
  position: relative;
  overflow: hidden;
  background: #000;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transform: skewX(-25deg);
  transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.product-card:hover .image-container::before {
  left: 150%;
}

.product-btn-buy,
.product-btn-cart {
  background: #000000 !important;
  border: 1px solid #ff4500 !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800 !important;
  letter-spacing: 1px;
  padding: 12px 5px !important;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .product-btn-buy,
  .product-btn-cart {
    font-size: 10px;
    padding: 10px 2px !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
}

.product-btn-buy:hover,
.product-btn-cart:hover {
  background: linear-gradient(90deg, #ff4500, #ffcc00) !important;
  color: #000000 !important;
  border-color: #ffcc00 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4);
}

@media (max-width: 768px) {

  .product-btn-buy:hover,
  .product-btn-cart:hover {
    transform: none;
  }
}

.product-btn-buy:active,
.product-btn-cart:active {
  transform: scale(0.95);
  transition: all 0.1s ease !important;
}

.product-btn-buy::before,
.product-btn-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.product-btn-buy:hover::before,
.product-btn-cart:hover::before {
  left: 100%;
}

.product-btn-buy {
  background: linear-gradient(to right, #111, #000) !important;
}

.product-btn-cart {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.product-card .image-container {
  position: relative;
  overflow: hidden;
}

.product-card .product-image {
  width: 100%;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter;
  filter: brightness(0.8) saturate(0.9) contrast(1.1);
}

.product-card:hover .product-image {
  transform: scale(1.1);
  filter: brightness(0.95) saturate(1.1) contrast(1.15);
}

.product-card .image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 2;
}

.product-card:hover .image-container::before {
  left: 150%;
}

.product-card {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, #ff4500, transparent, #ffcc00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-12px);
  background: #111111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 69, 0, 0.2);
  border-color: #ff4500;
}

.product-card:hover::before {
  opacity: 1;
  animation: product-shine 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover::after {
  opacity: 1;
}

.premium-cards .product-card {
  background: radial-gradient(140% 140% at 0% 0%, rgba(255, 102, 0, 0.12), rgba(8, 8, 12, 0.98) 60%);
  border-color: rgba(255, 102, 0, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.premium-cards .product-card::after {
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255, 204, 153, 0.65), transparent 45%, rgba(255, 153, 0, 0.7));
}

.premium-cards .product-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 153, 0, 0.6);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8), 0 0 26px rgba(255, 102, 0, 0.2);
}

.premium-cards .product-card .card-body {
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.96), rgba(6, 6, 8, 0.96));
  border-top: 1px solid rgba(255, 102, 0, 0.2);
  padding: 22px 20px 24px;
}

.premium-cards .product-card .card-body > .mb-3 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 12px;
  padding: 8px 10px;
}

.premium-cards .product-card .product-name {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.premium-cards .product-card .product-desc {
  opacity: 1;
  animation: none;
}

.premium-cards .p-image {
  height: 280px;
}

@media (max-width: 576px) {
  .premium-cards .product-card {
    border-radius: 16px;
  }

  .premium-cards .p-image {
    height: 220px;
  }

  .premium-cards .product-card .product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.home-premium .hero-block {
  position: relative;
  border-radius: 24px;
  padding: 44px;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255, 102, 0, 0.2), rgba(5, 5, 8, 0.9) 60%);
  border: 1px solid rgba(255, 102, 0, 0.25);
  overflow: hidden;
}

.home-premium .hero-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.25), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.home-premium .hero-block > .row {
  position: relative;
  z-index: 1;
}

.home-premium .highlight-strip {
  border: 1px solid rgba(255, 102, 0, 0.2);
  background: linear-gradient(120deg, rgba(255, 102, 0, 0.12), rgba(10, 10, 14, 0.35));
  padding: 26px;
  border-radius: 20px;
}

.home-premium .category-card {
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.home-premium .section-heading {
  padding: 18px 0 6px;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

@keyframes product-shine {
  0% {
    left: -140%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

.product-card:hover .sale-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  animation: badgeGlow 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8));
}

@media (hover: none) {
  .p-image:hover {
    transform: none;
    filter: brightness(0.75) saturate(0.8) contrast(1.1);
  }

  .product-card:hover {
    transform: none;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 69, 0, 0.2);
  }

  .product-card:hover::after {
    opacity: 0;
  }

  .product-card:hover .sale-badge {
    opacity: 0;
    transform: scale(0.8);
    visibility: hidden;
    animation: none;
    filter: none;
  }

  .product-card:hover .product-image {
    transform: none;
    filter: brightness(0.8) saturate(0.9) contrast(1.1);
  }

  .product-card:hover .image-container::before {
    left: -150%;
  }

  .product-btn-buy:hover,
  .product-btn-cart:hover {
    transform: none;
    box-shadow: none;
  }

  .product-btn-buy:hover::before,
  .product-btn-cart:hover::before {
    left: -100%;
  }
}

.product-desc {
  color: #d1d1d1;
  flex-grow: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0;
  animation: desc-fade-in 1s ease-out 0.6s forwards;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .product-card .cart-item-price {
    display: block !important;
  }
}

@keyframes desc-fade-in {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ff4500, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.original-price {
  color: #666666;
  font-size: 16px;
  margin-right: 8px;
  text-decoration: line-through;
  font-family: 'JetBrains Mono', monospace;
}

.sale-price {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
  position: relative;
}

.sale-price::after {
  font-size: 10px;
  vertical-align: top;
  color: #ffcc00;
  letter-spacing: 1px;
}

.sale-badge {
  background-color: #dc3545;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  left: 10px;
  letter-spacing: 1px;
  opacity: 0;
  padding: 8px 14px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  transform: scale(0.8);
  transition: all 0.3s ease;
  user-select: none;
  visibility: hidden;
  z-index: 10;
}

.sale-badge::before {
  animation: badgeGlow 1.5s ease-in-out infinite;
  background: radial-gradient(circle, rgba(255, 100, 100, 0.3) 0%, transparent 70%);
  border-radius: 5px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.footer {
  background-color: #000000;
  border-top: 1px solid rgba(255, 69, 0, 0.3);
  margin-top: 80px;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff4500, #ffcc00, #ff4500, transparent);
  background-size: 200% auto;
  animation: border-shimmer 4s linear infinite;
}

.footer-heading {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to right, #ff4500, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  color: #bfbfbf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d0d0d0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-links a {
  color: #d0d0d0;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  color: #ff4500;
  transform: translateY(-5px) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8));
}

.footer-copyright {
  color: #9c9c9c;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  margin-top: 40px;
  text-align: center;
  letter-spacing: 1px;
}

@keyframes border-shimmer {
  to {
    background-position: 200% center;
  }
}

.shake-animation {
  display: inline-block !important;
  animation: cartImpactGlow 0.5s cubic-bezier(.36, .07, .19, .97) both;
  backface-visibility: hidden;
  color: #ff4500 !important; 
}

@keyframes cartImpactGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 69, 0, 0));
  }

  25% {
    transform: scale(1.4) rotate(-15deg);
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.9)); 
  }

  50% {
    transform: scale(1.4) rotate(15deg);
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 1));
  }

  75% {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 69, 0, 0));
  }
}


.badge {
  border-radius: 4px;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  user-select: none;
}

.pagination {
  gap: 7px;
}

.page-link {
  background-color: #101010 !important;
  border: 1px solid rgba(255, 69, 0, 0.35) !important;
  border-radius: 4px !important;
  color: #f0f0f0 !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  user-select: none;
}

.page-link:hover {
  background-color: #111 !important;
  border-color: #ff4500 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3) !important;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #ff4500, #ffcc00) !important;
  border-color: transparent !important;
  color: #000000 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.5) !important;
  z-index: 3 !important;
}

.page-item.disabled .page-link {
  background-color: #141414 !important;
  border-color: #3a3a3a !important;
  color: #b5b5b5 !important;
  opacity: 1;
  pointer-events: none !important;
}

.page-link span {
  font-size: 18px;
  line-height: 1;
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  border-radius: 8px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 69, 0, 0.1);
  padding: 10px 0 !important;
  margin-top: 10px !important;
  animation: dropdownFade 0.3s ease-out;
}

.dropdown-item {
  color: #d1d1d1 !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600 !important;
  padding: 12px 25px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease !important;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.2), transparent) !important;
  color: #ff4500 !important;
  padding-left: 30px !important;
}


.dropdown-item:active,
.dropdown-item.active {
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.85), rgba(255, 204, 0, 0.65)) !important;
  color: #111 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.dropdown-divider {
  border-top: 1px solid rgba(255, 69, 0, 0.2) !important;
  margin: 8px 0 !important;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.dropdown-item.active,
.dropdown-item:active {
  background-color: #ff4500 !important;
  color: #000 !important;
}

#backToTop {
  align-items: center !important;
  background-color: #000 !important;
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  border-radius: 50% !important;
  bottom: 30px !important;
  color: #ff4500 !important;
  display: flex !important;
  height: 55px !important;
  justify-content: center !important;
  opacity: 0 !important;
  position: fixed !important;
  right: 30px !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  visibility: hidden !important;
  width: 55px !important;
  z-index: 1000 !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

#backToTop::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff4500, #ffcc00);
  z-index: -1;
  opacity: 0.3;
}

#backToTop.show {
  opacity: 1 !important;
  visibility: visible !important;
  animation: btt-entrance 0.5s ease-out;
}

#backToTop:hover {
  background-color: #ff4500 !important;
  color: #000 !important;
  border-color: #ffcc00 !important;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.5);
}

#backToTop i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

#backToTop:hover i {
  transform: translateY(-3px);
}

@keyframes btt-entrance {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.fly-img {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

.row.mt-2 {
  margin-top: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes moveTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-scroll {
    animation: none;
    position: static;
    transform: none;
  }
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(220, 53, 69, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 768px) {
  .c-img {
    height: 450px;
  }

  .p-image {
    height: 250px;
  }

  .carousel-overlay {
    padding: 0 30px;
  }

  .carousel-heading {
    font-size: 2rem;
  }

  .carousel-text {
    font-size: 0.9rem;
  }

  .carousel-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .c-img {
    height: 350px;
  }

  .p-image {
    height: 200px;
  }

  .hero-block {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .carousel-overlay {
    padding: 0 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 60%);
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .carousel-heading {
    font-size: 1.6rem;
  }

  .carousel-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .carousel-label {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .hero-carousel {
    border-radius: 0 0 16px 16px;
  }
}

.hero-block {
  background: radial-gradient(circle at top left, rgba(255, 69, 0, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 204, 0, 0.1), transparent 45%);
  border: 1px solid rgba(255, 69, 0, 0.15);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-kicker {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #ffcc00;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 540px;
}

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

.hero-btn-primary {
  background: linear-gradient(135deg, #ff4500, #ffcc00);
  border: none;
  color: #000;
  font-weight: 800;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(255, 69, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(255, 204, 0, 0.4);
  color: #000;
}

.hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-btn-outline:hover {
  border-color: #ffcc00;
  color: #ffcc00;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b0b0b0;
  font-family: 'JetBrains Mono', monospace;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}

.hero-tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 69, 0, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
}

.hero-tile:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.tile-large {
  grid-row: span 2;
}

.highlight-strip {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 0, 0, 0.6));
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.highlight-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.highlight-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  color: #ffcc00;
  margin-bottom: 12px;
}

.highlight-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.highlight-text {
  color: #bdbdbd;
  font-size: 0.9rem;
  line-height: 1.7;
}

.category-grid .category-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.2);
  height: 100%;
  min-height: 260px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.8));
}

.category-overlay h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.category-overlay span {
  color: #ffcc00;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.section-heading {
  border-top: 1px solid rgba(255, 69, 0, 0.2);
  padding-top: 30px;
}

.section-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #ffcc00;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin: 0;
  text-transform: uppercase;
}

.experience-strip {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 0, 0, 0.7));
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.experience-image {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 100%;
  max-height: 420px;
  filter: brightness(0.8);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.experience-text {
  color: #bdbdbd;
  line-height: 1.8;
  margin: 16px 0 24px;
}

.experience-points {
  display: grid;
  gap: 12px;
}

.point-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
}

.point-title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
}

.point-sub {
  color: #a0a0a0;
  font-size: 0.8rem;
}

.testimonial-grid {
  border-top: 1px solid rgba(255, 69, 0, 0.2);
  padding-top: 30px;
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 40s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

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

.testimonial-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5);
}

.testimonial-text {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  color: #ffcc00;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-cta {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(0, 0, 0, 0.8));
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  margin-bottom: 30px;
}

.newsletter-text {
  color: #bdbdbd;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1 1 220px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.product-detail-card {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

.product-page .product-detail-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(140% 140% at 0% 0%, rgba(255, 102, 0, 0.2), rgba(6, 6, 10, 0.95) 60%);
  border-color: rgba(255, 102, 0, 0.32);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.product-page .product-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.2), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.product-media {
  background: #0b0b0b;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.2);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.product-page .product-media {
  border-radius: 20px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.product-page .product-media img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
}

.product-page .product-media img:hover {
  transform: none;
  filter: none;
}

.product-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 204, 0, 0.35);
  color: #ffe2b3;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: 'JetBrains Mono', monospace;
}

.live-viewers i {
  color: #ffcc00;
  animation: eye-blink 2.4s ease-in-out infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.8);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes eye-blink {
  0%, 92%, 100% {
    transform: scaleY(1);
  }

  94% {
    transform: scaleY(0.2);
  }
}

@keyframes live-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.movement-badge {
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.movement-auto {
  background: rgba(255, 204, 0, 0.2);
  color: #ffcc00;
  border-color: rgba(255, 204, 0, 0.45);
}

.movement-smart {
  background: rgba(0, 194, 255, 0.18);
  color: #7ee3ff;
  border-color: rgba(0, 194, 255, 0.45);
}

.movement-quartz {
  background: rgba(255, 102, 0, 0.18);
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.45);
}

.stock-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdbdbd;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 22px;
  flex-wrap: wrap;
}

.price-original {
  text-decoration: line-through;
  color: #8f8f8f;
  font-size: 1rem;
}

.price-sale {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #ff6600;
  font-weight: 700;
}

.spec-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 22px;
}

.spec-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
}

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffcc00;
  display: block;
  margin-bottom: 6px;
}

.spec-value {
  color: #ffffff;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-page .product-actions .wishlist-btn {
  flex: 1 1 100%;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .product-page .product-detail-card {
    padding: 22px;
  }

  .product-page .product-media {
    padding: 0;
  }

  .product-page .product-media img {
    max-height: 560px;
  }
}

.product-page .product-detail-card .wishlist-btn {
  position: static;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  box-shadow: none;
  display: block;
}
.product-page .product-actions .wishlist-btn,
.product-page .product-actions .compare-btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-page .product-actions .wishlist-btn:hover,
.product-page .product-actions .compare-btn:hover {
  background: linear-gradient(90deg, #ff4500, #ffcc00) !important;
  color: #000000 !important;
  border-color: #ffcc00 !important;
}
.product-page #related-products-container .product-btn-buy {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-shell {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 0, 0, 0.85));
  border-radius: 24px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  padding: 28px;
}

.wishlist-intro {
  padding-right: 10px;
}

.wishlist-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 18px;
}

.wishlist-list .product-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 69, 0, 0.2);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.wishlist-list .product-card .product-name {
  color: #ffffff;
}

.tracking-shell {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 0, 0, 0.85));
  border-radius: 24px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  padding: 28px;
}

.tracking-form-card,
.tracking-panel {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}

.tracking-header {
  margin-bottom: 20px;
}

.tracking-kicker {
  font-family: 'JetBrains Mono', monospace;
  color: #ffcc00;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 6px;
}

.tracking-title {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}

.tracking-subtitle {
  color: #bdbdbd;
  margin: 0;
}

.tracking-input {
  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 69, 0, 0.3) !important;
  border-radius: 12px;
  color: #fff !important;
  padding: 12px 16px;
}

.tracking-input:focus {
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2) !important;
}

.tracking-steps {
  display: grid;
  gap: 16px;
}

.tracking-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
}

.tracking-step h5 {
  margin: 0 0 6px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.tracking-step p {
  margin: 0;
  color: #bdbdbd;
  font-size: 0.9rem;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 69, 0, 0.2);
  border: 1px solid rgba(255, 69, 0, 0.5);
  color: #ffcc00;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.tracking-tips {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.tip-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 69, 0, 0.2);
  color: #d1d1d1;
  font-size: 0.9rem;
}

.tip-card i {
  color: #ff6600;
}

.tracking-result {
  margin-bottom: 40px;
}

.search-suggestions {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1045;
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.search-suggestions.show {
  display: block;
}

.suggestion-item {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.suggestion-item:hover {
  background: rgba(255, 69, 0, 0.15);
  color: #ffcc00;
}

@media (max-width: 768px) {
  .offcanvas .search-form {
    position: relative;
    z-index: 12010;
  }

  .search-suggestions {
    background: #0a0a0a;
    border: 1px solid rgba(255, 102, 0, 0.6);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(0, 0, 0, 0.6);
    padding: 6px 0;
    max-height: 50vh;
    z-index: 12000;
    backdrop-filter: none;
  }

  .offcanvas .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f12;
  }
}

.suggestion-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.suggestion-price {
  font-size: 0.8rem;
  color: #ffcc00;
  font-family: 'JetBrains Mono', monospace;
}

.product-focus {
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.6), 0 0 60px rgba(255, 69, 0, 0.4) !important;
  border-color: #ffcc00 !important;
  transform: translateY(-6px) scale(1.02);
}

@media (max-width: 991px) {
  .hero-block {
    padding: 30px;
  }

  .hero-grid {
    grid-auto-rows: 140px;
  }

  .navbar-collapse {
    display: none !important;
  }
}

.offcanvas {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  border-right: 2px solid rgba(255, 69, 0, 0.3);
  width: 300px !important;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
  padding: 20px 24px;
  background: rgba(255, 69, 0, 0.05);
}

.offcanvas-user-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.offcanvas-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  gap: 6px;
}

.offcanvas-action-btn i {
  font-size: 1.5rem;
  color: #ff4500;
}

.offcanvas-action-btn span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offcanvas-action-btn:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: #ff4500;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.offcanvas-action-btn:hover i {
  color: #ffcc00;
}

.offcanvas-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ff4500, #ffcc00);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.5);
}

.offcanvas-title {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.offcanvas-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
}

.offcanvas-body {
  padding: 24px;
}

.offcanvas .navbar-nav {
  gap: 0;
}

.offcanvas .nav-item {
  border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.offcanvas .nav-link {
  color: #c0c0c0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin: 0;
}

.offcanvas .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 69, 0, 0.1);
  border-left-color: #ff4500;
  padding-left: 20px;
}

.offcanvas .nav-link[aria-current="page"] {
  color: #ff4500 !important;
  background: rgba(255, 69, 0, 0.15);
  border-left-color: #ffcc00;
}

.offcanvas-footer {
  border-top: 1px solid rgba(255, 69, 0, 0.2);
  padding-top: 20px;
}

.offcanvas-footer .footer-text {
  color: #888;
  font-size: 0.8rem;
  margin: 0;
}

.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close-white:hover {
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid rgba(255, 69, 0, 0.5);
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: #ff4500;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.3);
}

@media (max-width: 576px) {
  .hero-block {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

/* ===== Page Upgrade Utilities ===== */
.page-hero {
  position: relative;
  border-radius: 18px;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 102, 0, 0.25);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 102, 0, 0.35), transparent 55%);
  opacity: 0.6;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.15);
  color: #ffcc00;
  border: 1px solid rgba(255, 102, 0, 0.3);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-actions .btn {
  border-radius: 10px;
}

.info-card {
  background: #121212;
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.2);
  color: #ffcc00;
  margin-bottom: 12px;
}

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

.stat-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 102, 0, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: #ffcc00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  text-decoration: none;
  box-shadow: none;
  border-bottom: none !important;
}

.wishlist-btn i {
  display: block;
  line-height: 1;
  text-decoration: none !important;
}

.wishlist-btn:focus {
  box-shadow: none;
  outline: none;
}

.wishlist-btn:focus-visible {
  outline: none;
}

.wishlist-btn::before,
.wishlist-btn::after {
  display: none;
}

.wishlist-bounce {
  color: #ff6600 !important;
  animation: wishlistBounce 0.6s ease;
}

@keyframes wishlistBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-4px) scale(1.15);
  }
  70% {
    transform: translateY(0) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.wishlist-btn:hover {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  color: #fff;
}

.wishlist-btn.active {
  background: #ff6600;
  color: #000;
  border-color: #ff6600;
}

.wishlist-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.toast-alert {
  max-width: 90vw;
}

@media (max-width: 576px) {
  .toast-alert {
    min-width: auto !important;
    padding: 18px !important;
  }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.status-pending {
  color: #1a1200;
  background: #ffcc00;
  border-color: #ffb300;
}

.status-delivered {
  color: #071d0f;
  background: #28a745;
  border-color: #1f8a39;
}

.status-shipped {
  color: #07141f;
  background: #00c2ff;
  border-color: #00a6db;
}

.status-cancelled {
  color: #2b0b0b;
  background: #ff6b6b;
  border-color: #e85a5a;
}

.filter-bar {
  background: radial-gradient(circle at top left, rgba(255, 69, 0, 0.08), transparent 45%),
    rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 69, 0, 0.35);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55), 0 0 12px rgba(255, 69, 0, 0.08);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-kicker {
  color: #ffcc00;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

.filter-title {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.filter-hint {
  color: #a5a5a5;
  font-size: 0.9rem;
}

.filter-bar .form-label {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffcc00;
}

.filter-dropdown-btn {
  background-color: rgba(0, 0, 0, 0.95) !important;
  color: #d1d1d1 !important;
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.filter-dropdown-btn:focus,
.filter-dropdown-btn.show {
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2) !important;
}

.filter-dropdown-menu {
  max-height: 260px;
  overflow-y: auto;
}

.filter-dropdown-menu .dropdown-item {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-select {
  background-color: rgba(0, 0, 0, 0.95) !important;
  color: #d1d1d1 !important;
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ff4500 50%),
    linear-gradient(135deg, #ff4500 50%, transparent 50%) !important;
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px) !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  padding-right: 42px !important;
}

.filter-select:focus {
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2) !important;
}

.filter-select option {
  background-color: #000000;
  color: #d1d1d1;
}

.filter-bar .form-select {
  background-color: rgba(0, 0, 0, 0.95) !important;
  color: #d1d1d1 !important;
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  box-shadow: none !important;
}

.filter-bar .form-select:focus {
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2) !important;
}

.filter-results {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}

.product-page .product-actions .product-btn-buy {
  text-align: center;
}

.product-page .btn:not(.product-btn-buy):not(.product-btn-cart) {
  background: #000000 !important;
  border: 1px solid #ff4500 !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-page .btn:not(.product-btn-buy):not(.product-btn-cart):hover {
  background: linear-gradient(90deg, #ff4500, #ffcc00) !important;
  color: #000000 !important;
  border-color: #ffcc00 !important;
}