@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Syncopate:wght@400;700&display=swap");

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Upgraded New Collections cards */
.nc-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.nc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.nc-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 10% 10%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
}

/* Wishlist heart on cards */
.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateZ(0);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease
}

.card-wishlist-btn i {
  color: #ef4444;
  font-size: 18px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s
}

.card-wishlist-btn .heart-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, .35) 0%, rgba(239, 68, 68, 0) 60%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none
}

.card-wishlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18)
}

.card-wishlist-btn.active {
  background: #fff
}

.card-wishlist-btn.active i {
  filter: drop-shadow(0 4px 10px rgba(239, 68, 68, .35))
}

.card-wishlist-btn.bump i {
  animation: heart-bounce .5s ease
}

.card-wishlist-btn.ripple .heart-ripple {
  animation: heart-ripple .6s ease forwards
}

@keyframes heart-bounce {
  0% {
    transform: scale(1)
  }

  35% {
    transform: scale(1.35)
  }

  60% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes heart-ripple {
  0% {
    transform: scale(0);
    opacity: .6
  }

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

.nc-image-wrap img.card-image {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
}

.nc-card:hover .nc-image-wrap img.card-image {
  transform: scale(1.04) rotateZ(-1deg);
}

.nc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, var(--secondary-color), #7c3aed);
  color: var(--primary-color);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.nc-content {
  margin-top: 14px;
}

.nc-title {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.nc-meta .price {
  margin: 6px 0 12px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.nc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nc-actions .add-to-cart-btn,
.nc-actions .view-details-btn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.nc-actions .add-to-cart-btn:hover,
.nc-actions .view-details-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.nc-actions .add-to-cart-btn i {
  margin-right: 6px;
}

@media (max-width: 640px) {
  .nc-actions {
    grid-template-columns: 1fr;
  }

  .nc-image-wrap {
    aspect-ratio: 1.3/1;
  }
}

/* Collections: khatarnaak pro cards */
.cx-card {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
}

.cx-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.cx-image-wrap img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
}

.cx-card:hover .cx-image-wrap img {
  transform: scale(1.015);
}

.cx-glow {
  display: none;
}

.cx-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.cx-content {
  margin-top: 14px;
}

.cx-title {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
}

.cx-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cx-rating {
  color: #eab308;
  font-weight: 600;
  opacity: 0.9;
}

.cx-rating i {
  margin-right: 6px;
}

.cx-price {
  color: #fff;
  font-weight: 800;
}

.cx-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cx-actions .add-to-cart-btn,
.cx-actions .view-details-btn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.cx-actions .add-to-cart-btn:hover,
.cx-actions .view-details-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.cx-actions .add-to-cart-btn i {
  margin-right: 6px;
}

@media (max-width: 640px) {
  .cx-actions {
    grid-template-columns: 1fr;
  }

  .cx-image-wrap {
    aspect-ratio: 1.3/1;
  }
}

/* Product Detail: background video */
.detail-bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.detail-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}

.detail-video-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--secondary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* All Fonts */

/* Font loading via Google Fonts import above */

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 8px;
  /* scrollbar ki motai */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #111;
  /* dark background */
  border-radius: 10px;
}

/* Handle (jo move hota hai) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color));
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* Hover effect on handle */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-light-color);
}

/* Firefox */
* {
  scrollbar-color: var(--secondary-color) #111;
}

:root {
  --primary-color: #fff;
  --secondary-color: #ff8801;
  --secondary-light-color: #f89501b9;
  --accent-color: #181818;
  --bubble-color: linear-gradient(45deg, #fafafa28, #00000000);
  --card-color: rgba(138, 134, 134, 0.048);
  --dark-color: black;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg,
      #050505 0%,
      #0a0a0a 20%,
      #080808 40%,
      #0a0a0a 60%,
      #080808 80%,
      #050505 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(255, 136, 1, 0.08) 0%,
      transparent 30%,
      transparent 70%,
      rgba(255, 136, 1, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%,
      rgba(255, 136, 1, 0.12) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 136, 1, 0.08) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Performance: sidebar and overlays GPU acceleration */
#cart-sidebar,
#wishlist-sidebar {
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s ease;
}

#cart-sidebar.active,
#wishlist-sidebar.active {
  transform: translate3d(0, 0, 0);
}

#cart-overlay,
#wishlist-overlay {
  will-change: opacity;
  transition: opacity 0.3s ease;
}

.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px 20px 80px;
  position: fixed;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: linear-gradient(135deg,
      rgba(19, 19, 19, 0.534) 0%,
      rgba(10, 10, 10, 0.9) 20%,
      rgba(240, 98, 4, 0.068) 40%,
      rgba(10, 10, 10, 0.9) 60%,
      rgba(8, 8, 8, 0.95) 80%,
      rgba(238, 123, 15, 0.096) 100%);
}

.logo h2 {
  font-family: "Orbitron", sans-serif !important;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 50px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
  text-transform: capitalize;
  position: relative;
  letter-spacing: 1px;
  font-family: "Orbitron", sans-serif !important;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right,
      var(--secondary-color),
      var(--card-color));
  transition: all 0.6s ease;
  opacity: 0.4;
}

.nav-links a:hover::before {
  width: 100%;
  opacity: 1;
}

/* removed icon spacing for desktop nav links */

.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3),
    -5px 0 15px rgba(255, 136, 1, 0.1);
  z-index: 1001;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.menu.active {
  transform: translateX(0);
}

.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 136, 1, 0.05) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(255, 136, 1, 0.02) 100%);
  pointer-events: none;
  z-index: -1;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 100px 20px 40px;
  position: relative;
}

.menu-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
  backdrop-filter: blur(12px) ;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: "Orbitron", sans-serif !important;
}

.menu-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--secondary-light-color));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.menu-links a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 136, 1, 0.1),
      rgba(255, 136, 1, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.menu-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 136, 1, 0.3);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 136, 1, 0.2);
}

.menu-links a:hover::before {
  width: 4px;
}

.menu-links a:hover::after {
  opacity: 1;
}

.menu-links a i {
  margin-right: 12px;
  font-size: 18px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
}

.menu-links a:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Staggered animation for menu items */
.menu-links a:nth-child(1) {
  animation-delay: 0.1s;
}

.menu-links a:nth-child(2) {
  animation-delay: 0.2s;
}

.menu-links a:nth-child(3) {
  animation-delay: 0.3s;
}

.menu-links a:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.menu.active .menu-links a {
  animation: slideInFromRight 0.4s ease forwards;
  opacity: 0;
}

.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) ;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-close:hover {
  color: var(--secondary-color);
  background: rgba(255, 136, 1, 0.2);
  border-color: var(--secondary-color);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 10px rgba(255, 136, 1, 0.15);
}

.menu-header {
  position: absolute;
  top: 30px;
  left: 25px;
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 136, 1, 0.3);
}

.menu-icon {
  display: none;
  color: var(--primary-color);
  font-size: 24px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) ;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-icon:hover {
  color: var(--secondary-color);
  background: rgba(255, 136, 1, 0.2);
  border-color: var(--secondary-color);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 136, 1, 0.3);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px) ;
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ctn {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  position: relative;
}

/* Removed individual section orange glow effects - now unified at body level */

.hero-text {
  width: 38%;
  height: 100%;
  padding: 150px 50px 100px 50px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-family: "Anton", sans-serif;
  color: var(--primary-color);
  font-size: 100px;
  font-weight: 400;
  line-height: 1.1;
  font-style: italic;
  letter-spacing: 3px;
  animation: heroTitleEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  text-shadow: 0 0 30px rgba(255, 136, 1, 0.3);
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin-bottom: 20px;
}

.hero-text h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
  animation: expandLine 1.5s ease-out 1.5s both;
}

@keyframes slideRight {
  0% {
    transform: translateX(-50px) translateY(20px);
    opacity: 0;
    filter: blur(5px);
  }

  50% {
    transform: translateX(-10px) translateY(5px);
    opacity: 0.7;
    filter: blur(2px);
  }

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

@keyframes heroTitleEntrance {
  0% {
    transform: translateX(-100px) translateY(30px) scale(0.8);
    opacity: 0;
    filter: blur(10px);
  }

  30% {
    transform: translateX(-20px) translateY(10px) scale(0.95);
    opacity: 0.6;
    filter: blur(3px);
  }

  60% {
    transform: translateX(5px) translateY(-5px) scale(1.02);
    opacity: 0.9;
    filter: blur(1px);
  }

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

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-80px) translateY(15px);
    opacity: 0;
    filter: blur(8px);
  }

  50% {
    transform: translateX(-10px) translateY(5px);
    opacity: 0.7;
    filter: blur(2px);
  }

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

@keyframes fadeInUp {
  0% {
    transform: translateY(40px) translateX(-20px);
    opacity: 0;
    filter: blur(6px);
  }

  40% {
    transform: translateY(10px) translateX(-5px);
    opacity: 0.6;
    filter: blur(2px);
  }

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

@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 100px;
    opacity: 1;
  }
}

/* Removed heavy pulse animation for performance */

/* Removed heavy float animation for performance */

.hero-text h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 4px;
  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
}

.hero-text h3::before {
  content: "◆";
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 18px;
  /* Removed heavy pulse animation for performance */
}

.hero-text h4 {
  font-family: "Orbitron", sans-serif;
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 2px;
  animation: fadeInUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s both;
  text-shadow: 0 0 20px rgba(255, 136, 1, 0.4);
  position: relative;
}

.hero-text h4::before {
  content: "";
  font-size: 20px;
  margin-right: 5px;
  opacity: 0.8;
}

.hero-text p {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 0;
  line-height: 1.7;
  letter-spacing: 0.8px;
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  animation: fadeInUp 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
  opacity: 0.85;
  max-width: 550px;
  position: relative;
}

.hero-text p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

.add-to-cart-btn {
  background: linear-gradient(135deg,
      var(--primary-color),
      rgba(255, 255, 255, 0.9));
  color: var(--accent-color);
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  gap: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.add-to-cart-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
  left: 100%;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--secondary-light-color));
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 136, 1, 0.2);
}

.add-to-cart-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.add-to-cart-btn span {
  flex: 1;
  text-align: center;
}

.add-to-cart-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.add-to-cart-btn:hover i {
  transform: scale(1.2) rotate(10deg);
}

.hero-image {
  width: 60%;
  max-width: 60%;
  height: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  animation: zoomIn 1.5s ease-out 0.5s both;
  z-index: 10;
  transition: all 0.3s ease;
  position: relative;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 12px rgba(255, 136, 1, 0.15));
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
  /* Removed heavy filter effects for performance */
}

@keyframes zoomIn {
  0% {
    transform: scale(0.1) rotate(30deg);
    opacity: 0;
  }

  50% {
    transform: scale(0.8) rotate(15deg);
    opacity: 0.7;
  }

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

@keyframes move {
  0% {
    transform: translate(0%, 0);
  }

  100% {
    transform: translate(-5%, 50px);
  }
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  min-width: 70%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 136, 1, 0.06) 10%,
      rgba(255, 136, 1, 0.04) 25%,
      rgba(255, 136, 1, 0.03) 40%,
      rgba(255, 136, 1, 0.02) 60%,
      rgba(255, 136, 1, 0.01) 80%,
      transparent 95%);
  z-index: 1;
  filter: blur(2px);
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 136, 1, 0.04) 15%,
      rgba(255, 136, 1, 0.03) 30%,
      rgba(255, 136, 1, 0.02) 50%,
      rgba(255, 136, 1, 0.01) 70%,
      rgba(255, 136, 1, 0.005) 85%,
      transparent 95%);
  z-index: 1;
  filter: blur(3px);
}

.hero-image {
  position: relative;
}

.hero-image::before,
.hero-image::after {
  pointer-events: none;
}

/* Surface ellipse shadow under the hero image */
.hero-surface {
  position: absolute;
  bottom: clamp(-8px, -1.5vh, -2px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(220px, 46vw, 720px);
  height: clamp(28px, 8vw, 120px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(146, 130, 107, 0.28) 0%,
      rgba(49, 49, 49, 0.22) 30%,
      rgba(0, 0, 0, 0.14) 55%,
      rgba(41, 41, 41, 0.08) 75%,
      rgba(32, 32, 32, 0.02) 92%,
      rgba(32, 32, 32, 0) 100%);
  filter: blur(20px);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-surface {
    width: clamp(200px, 70vw, 520px);
    height: clamp(22px, 10vw, 90px);
    opacity: 0.5;
  }
}

@media (max-width: 560px) {
  .hero-surface {
    width: clamp(160px, 82vw, 440px);
    height: clamp(18px, 12vw, 80px);
    opacity: 0.45;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Hero Bubbles (large soft circles around the shoe) */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(163, 108, 52, 0.336);
  backdrop-filter: blur(30px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25), 0 0 80px rgba(0, 0, 0, 0.15);
  transform: translateZ(0);
  backdrop-filter: blur(14px);
}

/* Individual bubble sizes and positions (desktop) */
.hero-bubbles .b1 {
  width: clamp(72px, 18vw, 220px);
  height: clamp(72px, 18vw, 220px);
  right: 10%;
  top: 38%;
  opacity: 0;
  display: none;
  z-index: -1;
}

.hero-bubbles .b2 {
  width: clamp(56px, 12vw, 160px);
  height: clamp(56px, 12vw, 160px);
  left: 10%;
  top: 28%;
  opacity: 1;
  z-index: -1;
}

.hero-bubbles .b3 {
  width: clamp(64px, 15vw, 200px);
  height: clamp(64px, 15vw, 200px);
  right: 22%;
  bottom: 10%;
  opacity: 1;
  z-index: 11;
}

.hero-bubbles .b4 {
  width: clamp(48px, 9vw, 120px);
  height: clamp(48px, 9vw, 120px);
  left: 20%;
  bottom: 14%;
  opacity: 1;
}

.hero-bubbles .b5 {
  width: clamp(36px, 6vw, 70px);
  height: clamp(36px, 6vw, 70px);
  right: 28%;
  top: 22%;
  opacity: 1;
  z-index: 11;
}

/* Motion-safe preference */
@media (prefers-reduced-motion: reduce) {
  .hero-bubbles .bubble {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-bubbles .b1 {
    right: 8%;
    top: 40%;
  }

  .hero-bubbles .b2 {
    left: 8%;
    top: 30%;
  }

  .hero-bubbles .b3 {
    right: 18%;
    bottom: 10%;
  }

  .hero-bubbles .b4 {
    left: 16%;
    bottom: 12%;
  }

  .hero-bubbles .b5 {
    right: 24%;
    top: 24%;
  }
}

@media (max-width: 768px) {
  .hero-bubbles .b1 {
    right: 6%;
    top: 42%;
  }

  .hero-bubbles .b2 {
    left: 6%;
    top: 32%;
  }

  .hero-bubbles .b3 {
    right: 14%;
    bottom: 8%;
  }

  .hero-bubbles .b4 {
    left: 12%;
    bottom: 8%;
  }

  .hero-bubbles .b5 {
    right: 20%;
    top: 26%;
  }
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 136, 1, 0.12) 0%,
      transparent 70%);
  /* Removed heavy animations for performance */
}

.dot-1 {
  width: 8px;
  height: 8px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.dot-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.dot-3 {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

/* Removed heavy floatDots animation for performance */

/* Floating elements for other pages */
.collections-hero-right .floating-elements,
.about-hero-right .floating-elements,
.contact-hero-content .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ensure parent containers have relative positioning */
.collections-hero-right,
.about-hero-right,
.contact-hero-content {
  position: relative;
}

.collections-hero-right .floating-dot,
.about-hero-right .floating-dot,
.contact-hero-content .floating-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 136, 1, 0.12) 0%,
      transparent 70%);
}

.collections-hero-right .dot-1,
.about-hero-right .dot-1,
.contact-hero-content .dot-1 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.collections-hero-right .dot-2,
.about-hero-right .dot-2,
.contact-hero-content .dot-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  animation-delay: 1.5s;
}

.collections-hero-right .dot-3,
.about-hero-right .dot-3,
.contact-hero-content .dot-3 {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 30%;
  animation-delay: 3s;
}

.new-collections-ctn {
  width: 100%;
  height: max-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Removed individual section orange glow effects - now unified at body level */

.new-collections-ctn h1 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.new-collections-cards {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px 100px;
  margin-top: 50px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.new-collections-card {
  width: 300px;
  height: max-content;
  min-height: 400px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.new-collections-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  /* margin-top: 10px; */
  letter-spacing: 2px;
  text-align: center;
}

.new-collections-card p {
  font-family: "Poppins", sans-serif;
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

.new-collections-card img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.new-collections-card:nth-child(6n) img {
  filter: saturate(0.2) brightness(1.2) contrast(1.2);
}

.new-collections-card:nth-child(6n):hover img {
  filter: saturate(0.3) brightness(1.3) contrast(1.3);
}

.new-collections-card:hover img {
  transform: translateY(-10px) scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* Base Card Actions */
.card-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
}

/* New Arrivals Card Buttons */
.new-collections-card .add-to-cart-btn,
.product-card .add-to-cart-btn {
  border-radius: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  padding: 10px 12px;
  font-size: 11px;
  min-width: 100px;
  height: 45px !important;
  background: linear-gradient(135deg,
      var(--primary-color),
      rgba(255, 255, 255, 0.9));
  color: var(--accent-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* New Collections card upgrades */
.new-collections-card h3 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.new-collections-card .card-desc {
  color: #ddd;
  font-size: 13px;
  line-height: 1.5;
  margin: 6px 0 8px;
  text-align: center;
}

.new-collections-card .price {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.new-collections-card.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.new-collections-card.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.new-collections-card .view-details-btn,
.product-card .view-details-btn {
  border-radius: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  padding: 10px 12px;
  font-size: 11px;
  min-width: 100px;
  height: 45px !important;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Button Hover Effects */
.new-collections-card .add-to-cart-btn:hover,
.product-card .add-to-cart-btn:hover {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--secondary-light-color));
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 136, 1, 0.2);
}

.new-collections-card .view-details-btn:hover,
.product-card .view-details-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.video-ctn {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 50px;
  background: transparent;
  overflow: hidden;
}

/* Removed individual section orange glow effects - now unified at body level */

.animated-video {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px;
  z-index: 2;
}

.animated-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 200px;
  opacity: 1;
  filter: brightness(0.6);
}

.animated-video .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.animated-video .video-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: var(--primary-color);
  z-index: 2;
}

.animated-video .video-caption h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.animated-video .video-caption p {
  margin-top: 10px;
  max-width: 720px;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.animated-video .video-cta {
  margin-top: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.animated-video .video-cta:hover {
  background: var(--secondary-light-color);
  transform: translateY(-2px);
}

.limited-edition-ctn {
  width: 100%;
  min-height: 50vh;
  height: max-content;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Removed individual section orange glow effects - now unified at body level */

.limited-edition-ctn h1 {
  margin-top: 100px;
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.limited-edition-main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.limited-edition-left {
  width: 50%;
  height: 100%;
  z-index: 2;
  position: relative;
}

.limited-edition-left h3 {
  font-family: "Anton", sans-serif;
  color: var(--primary-color);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: drop-shadow(-1px 0px 2px rgb(51, 0, 58));
}

.limited-edition-subtitle {
  color: #ddd;
  margin-top: 14px;
  max-width: 560px;
}

.le-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.le-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary-color);
  font-size: 12px;
}

.le-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.le-secondary-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.25s ease;
}

.le-secondary-btn:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.12);
}

.limited-edition-right {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.limited-edition-right img {
  width: 100%;
  filter: drop-shadow(-1px 0px 1px var(--accent-color));
  transform: scale(1.1);
  animation: move 5s linear infinite alternate;
}

.limited-edition-main::before {
  content: "";
  position: absolute;
  width: 2400px;
  height: 420px;
  background-color: var(--secondary-color);
  top: 65%;
  left: -300px;
  transform: translateY(-50%) rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

/* Sneaker AR Preview Section */
.ar-preview {
  background: transparent;
  color: var(--primary-color);
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Removed individual section orange glow effects - now unified at body level */

.ar-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ar-text {
  flex: 1;
  min-width: 300px;
}

.ar-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.ar-text span {
  color: var(--secondary-color);
}

.ar-text p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.ar-btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.ar-btn:hover {
  background: var(--secondary-color);
}

.ar-model {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 300px;
}

.ar-model img {
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.ar-controls {
  margin-top: 15px;
}

.ar-controls button {
  background: #222;
  color: var(--primary-color);
  border: none;
  padding: 10px 14px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.ar-controls button:hover {
  background: var(--secondary-color);
}

/* Responsive AR embed (Sketchfab) */
.sketchfab-embed-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 640px;
  /* fixed max width for consistent model size */
  width: 100%;
  aspect-ratio: 1 / 1;
  /* square keeps predictable height */
  position: relative;
  margin: 0 auto;
}

.sketchfab-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sketchfab-embed-wrapper .ar-blocker {
  position: absolute;
  inset: 0;
  background: transparent;
  /* fully transparent overlay */
  z-index: 2;
  /* above iframe */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-overlay-btn {
  background: rgba(255, 255, 255, 0.062);
  color: var(--primary-color);
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform .15s ease, box-shadow .15s ease;
  backdrop-filter: blur(10px);
}

.ar-overlay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.ar-overlay-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.ar-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  /* above overlay */
}

.ar-close-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

@media (max-width: 992px) {
  .ar-container {
    gap: 28px;
  }

  .sketchfab-embed-wrapper {
    max-width: 520px;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .ar-container {
    flex-direction: column;
    align-items: stretch;
  }

  .ar-text {
    text-align: left;
  }

  .sketchfab-embed-wrapper {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* Collections Hero Started */
.collections-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.collections-hero-bg-video video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  backdrop-filter: blur(4px);
}

/* collections content started */
.collections-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  width: 100%;
  padding: 0 8%;
  color: #fff;
}

/* Left Section */
.collections-hero-left {
  flex: 1;
}

.collections-hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.collections-hero-left p {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 25px;
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.features i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.rating-price i {
  color: var(--secondary-color);
  margin-right: 6px;
}

/* Right Section */
.collections-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  width: 350px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(27, 27, 27, 0.4);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-10px);
}

.hero-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
}

.rating-price {
  margin: 12px 0;
  font-size: 0.95rem;
  color: #f1f1f1;
}

.explore-btn {
  background: var(--secondary-color);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: var(--secondary-light-color);
}

/* Products Section Styles */
.products-section {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0.356);
  backdrop-filter: blur(8px);
}

.products-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-header h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.products-header p {
  color: var(--secondary-color);
  font-size: 16px;
  letter-spacing: 1px;
}

.filter-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

/* Allow wrapping of filter buttons on small screens */
@media (max-width: 640px) {
  .filter-menu {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}

/* Filter toolbar: buttons + search */
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.filter-toolbar .filter-menu {
  margin-bottom: 0;
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  border-radius: 30px;
}

.filter-search i {
  color: var(--secondary-color);
}

.filter-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--primary-color);
  min-width: 220px;
}

@media (max-width: 768px) {
  .filter-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .filter-search {
    width: 100%;
    justify-content: space-between;
  }

  .filter-search input {
    width: 100%;
    min-width: 0;
  }
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

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

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

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

.product-card {
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(12px) ;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-card.hide {
  display: none;
}

.product-card.show {
  display: flex;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

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

.product-img {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-img img {
  transform: rotate(-10deg) scale(1.1);
}

.product-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
  text-align: center;
}

.product-card .price {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-card .add-to-cart-btn {
  margin-top: 0;
  width: auto;
  padding: 10px 12px;
  border-radius: 25px;
  font-size: 11px;
  height: 45px !important;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf4f7e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.cart-modal.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background-color: var(--secondary-light-color);
  transform: translateY(-1px);
}

/* Newsletter Section */
.newsletter-ctn {
  width: 100%;
  padding: 100px 20px;
  /* background: linear-gradient(135deg, #0f0f0f, #1a1a1a); */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box {
  max-width: 700px;
  text-align: center;
  color: var(--primary-color);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(12px) ;
  background: rgba(153, 150, 150, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
}

.newsletter-box h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.newsletter-box h2 span {
  color: var(--secondary-color);
}

.newsletter-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  min-width: 250px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-light-color);
}

.newsletter-box small {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.success-modal-ctn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-modal-box {
  background: rgba(17, 17, 17, 0.2);
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  font-size: 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  /* Glass effect */
  animation: pop 0.3s ease;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.425);
}

.success-modal-box i {
  font-size: 40px;
  color: #4caf50;
  /* Green for success */
  margin-bottom: 10px;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

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

/* Upcoming Drops */
.upcoming-drops {
  padding: 80px 10%;
  background: #2020204b;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
}

.upcoming-drops h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.upcoming-drops h2 span {
  color: var(--secondary-color);
  font-family: Orbitron;
}

.upcoming-drops p {
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1rem;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.drop-card {
  background: #37373a28;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.drop-card:hover {
  transform: translateY(-10px);
}

.drop-img {
  position: relative;
  overflow: hidden;
}

.drop-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.drop-card:hover img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.drop-info {
  padding: 20px;
  text-align: left;
}

.drop-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.drop-info p {
  color: #bbb;
  font-size: 0.9rem;
}

.about-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10%;
  gap: 40px;
  position: relative;
}

.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(4px);
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.156),
      rgba(0, 0, 0, 0.419),
      rgba(0, 0, 0, 0.156));
}

.about-hero-left {
  flex: 1;
  color: var(--primary-color);
  z-index: 2;
}

.about-hero-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.about-hero-left h1 span {
  color: var(--secondary-color);
}

.about-hero-left h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}

.about-hero-left p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 550px;
  opacity: 0.85;
}

.about-btn {
  margin-top: 30px;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: var(--secondary-light-color);
  transform: translateY(-3px);
}

.about-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.about-hero-right img {
  width: 100%;
  max-width: 400px;
  transition: transform 0.4s ease;
  z-index: 2;
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.166));
}

.about-hero-right img:hover {
  transform: scale(1.05);
}

.our-story-ctn {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.story-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-header {
  text-align: center;
  margin-bottom: 80px;
}

.story-header h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

.story-header h2 span {
  color: var(--secondary-color);
}

.story-header p {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Timeline Styles */
.story-timeline {
  position: relative;
  margin-bottom: 100px;
}

.story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 30px;
  backdrop-filter: blur(12px);
  background-color: var(--card-color);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.timeline-year {
  font-family: "Orbitron", sans-serif;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.timeline-image {
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

/* Stats Styles */
.story-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  border-radius: 15px;
  flex: 1;
  min-width: 200px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item h4 {
  font-family: "Orbitron", sans-serif;
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 1px;
}

.fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about-hero.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(4px) brightness(0.2);
}

.why-choose-us-ctn {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wc-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wc-header {
  text-align: center;
  margin-bottom: 80px;
}

.wc-header h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

.wc-header h2 span {
  color: var(--secondary-color);
}

.wc-header p {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.wc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.wc-feature {
  text-align: center;
  padding: 40px 30px;
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: all 0.3s ease;
}

.wc-feature:hover {
  transform: translateY(-10px);
}

.wc-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  font-size: 30px;
  color: var(--primary-color);
}

.wc-feature h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.wc-feature p {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.testimonials-ctn {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonials-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonials-header h2 span {
  color: var(--secondary-color);
}

.testimonials-header p {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.testimonials-slider {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 40px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial.active {
  opacity: 1;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  text-align: center;
}

.rating {
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 20px;
}

.testimonial-text {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--secondary-color);
  font-size: 14px;
}

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

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--secondary-light-color);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.feedback-ctn {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feedback-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.feedback-header {
  text-align: center;
  margin-bottom: 50px;
}

.feedback-header h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}

.feedback-header h2 span {
  color: var(--secondary-color);
}

.feedback-header p {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.feedback-form {
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  margin-bottom: 50px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px var(--secondary-color);
}

.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
  margin-right: 5px;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
  color: var(--secondary-color);
}

.submit-btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  background: var(--secondary-light-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.live-feedbacks {
  backdrop-filter: blur(12px) ;
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.live-feedbacks h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.feedbacks-container {
  max-height: 400px;
  overflow-y: auto;
}

.feedback-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  animation: fadeIn 0.5s ease;
}

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

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

.feedback-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.feedback-author {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.feedback-rating {
  color: var(--secondary-color);
}

.feedback-text {
  color: var(--primary-color);
  line-height: 1.6;
  font-style: italic;
}

.feedback-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

/* ===== Contact Hero Section ===== */
.contact-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/contact-bg.jpg);
  background-position: center;
  filter: blur(4px) brightness(0.3);
}

.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.4),
      rgba(20, 20, 20, 0.2));
  backdrop-filter: blur(4px);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: var(--primary-color);
  padding: 0 20px;
  animation: fadeUp 1.2s ease-in-out;
}

.contact-hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-hero-content h1 span {
  color: var(--secondary-color);
  text-shadow: 0 0 5px var(--secondary-color);
}

.contact-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

.scroll-btn {
  background: linear-gradient(45deg,
      var(--secondary-color),
      var(--secondary-light-color));
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 136, 1, 0.5);
  margin-top: 50px;
}

.scroll-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 8px rgba(255, 136, 1, 0.4);
}

/* Animation */
@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

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

/* ===== Transparent Modern Contact Section ===== */
.contact-modern {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  position: relative;
  text-align: center;
}

.contact-modern-content {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1.2s ease;
}

.contact-modern-content h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
}

.contact-modern-content h2 span {
  color: var(--secondary-color);
  text-shadow: 0 0 3px var(--secondary-color);
}

.contact-modern-content p {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1rem;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: transparent;
  color: var(--primary-color);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.modern-form .error-text {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 6px;
}

.modern-form .field-error {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.25);
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 12px rgba(255, 136, 1, 0.6);
}

.modern-btn {
  margin-top: 15px;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg,
      var(--secondary-color),
      var(--secondary-light-color));
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 136, 1, 0.2);
}

.modern-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 8px rgba(255, 136, 1, 0.2);
}

/* Modal Background Overlay */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Box */
.success-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  animation: scaleIn 0.4s ease forwards;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Success Icon */
.success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Close Button */
.success-btn {
  margin-top: 1.2rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg,
      var(--secondary-light-color),
      var(--secondary-color));
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-btn:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

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

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  /* halki dark transparency */
  backdrop-filter: blur(8px);
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1200px;
}

/* ===== Size Guide Page ===== */
.size-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-bg {
  position: fixed;
  inset: 0;
  background: url(../images/third-timeline.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(4px) brightness(0.3);
}

.size-hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px) ;
}

.size-hero-content {
  position: relative;
  z-index: 2;
  color: var(--primary-color);
  text-align: center;
  padding: 0 20px;
}

.size-hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.size-hero-content h1 span {
  color: var(--secondary-color);
}

.size-hero-content p {
  opacity: 0.9;
  font-size: 1.05rem;
}

/* Apply Orbitron to secondary headings on Size Guide */
.size-hero-content h2,
.size-hero-content h3,
.size-hero-content h4 {
  font-family: "Orbitron", sans-serif;
}

/* Shipping & Returns page background */
.sr-bg {
  position: fixed;
  inset: 0;
  background: url(../images/about-hero.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(4px) brightness(0.3);
}

/* Privacy Policy page background */
.pp-bg {
  position: fixed;
  inset: 0;
  background: url(../images/second-timeline.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(4px) brightness(0.3);
}

/* Shipping & Returns glass helper */
.sr-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Ensure headings within Shipping & Returns glass sections use Orbitron */
.sr-glass h1,
.sr-glass h2,
.sr-glass h3,
.sr-glass h4 {
  font-family: "Orbitron", sans-serif;
}

/* Privacy Policy container */
.policy-container {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 26px 22px;
  color: var(--primary-color);
}

.policy-section {
  margin-bottom: 18px;
}

.policy-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.policy-section h2 i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.policy-section p {
  opacity: 0.9;
  line-height: 1.7;
}

/* Ensure subheadings in Privacy Policy use Orbitron */
.policy-card h4,
.policy-box h4 {
  font-family: "Orbitron", sans-serif;
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 14px 0 8px;
}

/* Blurred boxes for info we collect */
.policy-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.policy-box {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.policy-box h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.policy-box h4 i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.policy-box p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
}

.policy-note {
  display: block;
  opacity: 0.8;
  margin-top: 10px;
  font-size: 12px;
}

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

@media (max-width: 580px) {
  .policy-box-grid {
    grid-template-columns: 1fr;
  }
}

.policy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(12px) ;
}

.policy-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.policy-card h4 i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.policy-card p {
  font-size: 13px;
  opacity: 0.9;
}

.policy-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
}

.policy-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}

.policy-list li i {
  color: var(--secondary-color);
}

.policy-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Protection pills */
.policy-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.policy-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.pill-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 136, 1, 0.18);
  color: var(--secondary-color);
}

/* Callouts */
.policy-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
}

.policy-callout i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.policy-callout.warn i {
  color: #ffb703;
}

/* Rights grid */
.policy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.policy-right {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.policy-right i {
  color: var(--secondary-color);
}

@media (max-width: 1024px) {
  .policy-pill-grid {
    grid-template-columns: 1fr;
  }

  .policy-rights-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 580px) {
  .policy-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra-small phones fine-tuning */
@media (max-width: 420px) {
  .policy-container {
    padding: 18px 14px;
  }

  .policy-section h2 {
    font-size: 22px;
  }

  .policy-card h4,
  .policy-box h4 {
    font-size: 15px;
  }

  .policy-card p,
  .policy-box p {
    font-size: 12.5px;
  }
}

.size-converter {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.converter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.converter-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(16px);
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.converter-card::after {
  content: "";
  position: absolute;
  inset: -60% -60% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center,
      rgba(255, 136, 1, 0.18),
      rgba(255, 136, 1, 0) 60%);
  filter: blur(6px);
  transform: translate(40px, -40px);
  pointer-events: none;
}

.converter-card h2 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.converter-card h2 span {
  color: var(--secondary-color);
}

.converter-card .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 12px 0;
}

.converter-card .form-group label {
  display: block;
  margin-bottom: 6px;
  opacity: 0.9;
}

.converter-card .form-group input,
.converter-card .form-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--primary-color);
  outline: none;
}

.converter-card .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
  cursor: pointer;
}

.converter-card .form-group select:hover {
  background: rgba(255, 255, 255, 0.02);
}

.converter-card .form-group select::-ms-expand {
  display: none;
}

.converter-card .form-group select option {
  background: #111;
  color: #fff;
}

.converter-card .form-group input:focus,
.converter-card .form-group select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(255, 136, 1, 0.18);
}

.convert-results,
.advice-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-pill i {
  color: var(--secondary-color);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.sg-chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s ease;
}

.sg-chip:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: transparent;
  transform: translateY(-1px);
}

.fit-meter {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 8px;
}

.fit-meter-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c853, #ffd600, #ff3d00);
  transition: width 0.35s ease;
}

.measure-guide {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.measure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.measure-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  color: var(--primary-color);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.measure-card::after {
  content: "";
  position: absolute;
  inset: auto auto -60% -60%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center,
      rgba(255, 136, 1, 0.16),
      rgba(255, 136, 1, 0) 60%);
  filter: blur(8px);
  transform: translate(-20px, 20px);
  pointer-events: none;
}

.measure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.measure-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(255, 136, 1, 0.25);
}

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

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

@media (max-width: 580px) {
  .size-hero {
    height: 50vh;
  }

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

  .converter-card .form-row {
    grid-template-columns: 1fr;
  }

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

/* Prevent navbar overlap on small screens for size guide hero */
@media (max-width: 768px) {
  .size-hero {
    padding-top: 90px;
  }
}

/* Header */
.map-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.map-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Map Container */
.map-container {
  margin: 2rem auto 0;
  max-width: 1000px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) ;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
}

/* Shipping grid/cards */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.shipping-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  color: var(--primary-color);
}

.ship-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(255, 136, 1, 0.25);
}

.ship-meta h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
}

.ship-meta h4 span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.eta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.eta-pill i {
  color: var(--secondary-color);
}

.ship-meta p {
  font-size: 13px;
  opacity: 0.9;
}

.shipping-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.badge i {
  color: var(--secondary-color);
}

.ship-note {
  color: #fff;
  opacity: 0.85;
  padding: 0 18px 18px 18px;
  font-size: 13px;
}

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

/* ===== Contact Extra Sections Below Map ===== */
.contact-extra {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 50px 20px;
  background-color: transparent;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--card-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  color: var(--primary-color);
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.info-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(255, 136, 1, 0.25);
}

.info-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.info-card p {
  color: #ddd;
  font-size: 14px;
  opacity: 0.9;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.hours {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  color: var(--primary-color);
  backdrop-filter: blur(12px);
}

.hours h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  margin-bottom: 14px;
}

.hours h2 span {
  color: var(--secondary-color);
}

.hours-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.hours-list li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
}

.hours-list li i {
  color: var(--secondary-color);
  opacity: 0.9;
}

.hours-list li span {
  opacity: 0.9;
}

.hours-list li strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.faq {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  color: var(--primary-color);
  backdrop-filter: blur(12px);
}

.faq h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  margin-bottom: 14px;
}

.faq h2 span {
  color: var(--secondary-color);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-item h4 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--primary-color);
  padding: 14px 0;
  cursor: pointer;
}

.faq-item h4 .icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 136, 1, 0.15);
  border-radius: 50%;
  color: var(--secondary-color);
}

.faq-item .faq-toggle {
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease;
}

.faq-item[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item[aria-expanded="true"] .faq-answer {
  max-height: 200px;
  padding: 0 0 14px 38px;
}

.faq-answer p {
  font-size: 14px;
  color: #ddd;
  opacity: 0.9;
}

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

  .hours-list {
    grid-template-columns: 1fr;
  }
}

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

/* Media Queries */
/* ===== 📱 Small Phones (up to 480px) ===== */
@media screen and (max-width: 580px) {
  /* Styles for extra small screens */

  .nav-bar {
    padding: 20px;
  }

  .nav-links {
    display: none;
    /* Hide nav links on small screens */
  }

  .menu-icon {
    display: flex;
    /* Show menu icon on small screens */
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .nav-right {
    gap: 10px;
  }

  .menu {
    width: 100%;
    max-width: 100vw;
  }

  .menu-links {
    padding: 90px 15px 30px;
  }

  .menu-links a {
    padding: 14px 16px;
    font-size: 15px;
  }

  .menu-header {
    font-size: 18px;
    left: 20px;
  }

  .menu-close {
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .hero-ctn {
    flex-direction: column;
    align-items: center;
    height: max-content;
    justify-content: center;
    margin-bottom: 60px;
  }

  .hero-text {
    width: 100%;
    padding-top: 80px;
    text-align: center;
    height: auto;
  }

  .hero-text h1 {
    font-size: 60px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text h3 {
    font-size: 18px;
    text-align: center;
  }

  .hero-text h4 {
    font-size: 22px;
    text-align: center;
  }

  .hero-text p {
    font-size: 14px;
    text-align: center;
    max-width: 100%;
  }

  .hero-text p::before {
    display: none;
  }

  .add-to-cart-btn {
    width: auto;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 11px;
    height: 45px !important;
    min-width: 100px;
    flex: 1;
  }

  .card-actions {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .view-details-btn {
    padding: 8px 12px;
    font-size: 11px;
    height: 45px !important;
    min-width: 100px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    height: auto;
    transform: scale(1.3);
    margin-bottom: 40px;
  }

  .new-collections-card {
    width: 350px;
    padding: 20px;
  }

  .video-ctn {
    height: 50vh;
    padding: 0px;
  }

  .limited-edition-main {
    flex-direction: column-reverse;
    padding: 20px;
    text-align: center;
  }

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

  .limited-edition-left h3 {
    font-size: 40px;
  }

  .limited-edition-main::before {
    width: 1600px;
    height: 240px;
    top: 50%;
    left: -300px;
    transform: translateY(-50%) rotate(6deg);
  }

  .collections-hero-content {
    flex-direction: column;
    text-align: center;
    padding: 90px 20px 20px 20px;
    height: auto;
    justify-content: center;
  }

  .collections-hero-left {
    margin-bottom: 25px;
  }

  .collections-hero-left h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .collections-hero-left p {
    font-size: 0.9rem;
  }

  .features {
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    justify-content: center;
  }

  .collections-hero-right {
    width: 100%;
  }

  .hero-card {
    width: 100%;
    border-radius: 12px;
  }

  .hero-card img {
    height: 180px;
    object-fit: contain;
  }

  .explore-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
  }

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

  .products-header h2 {
    font-size: 32px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    gap: 30px;
  }

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

  .about-hero-left h3 {
    font-size: 1rem;
  }

  .about-hero-left p {
    font-size: 0.9rem;
  }

  .about-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
  }

  .about-hero-right img {
    max-width: auto;
  }

  .our-story-ctn {
    padding: 80px 0;
  }

  .story-header {
    margin-bottom: 50px;
  }

  .story-header h2 {
    font-size: 32px;
  }

  .story-timeline::before {
    left: 30px;
    display: none;
  }

  .timeline-item,
  .timeline-item.reverse {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .timeline-content,
  .timeline-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .story-stats {
    gap: 15px;
  }

  .stat-item {
    min-width: 140px;
    padding: 20px 15px;
  }

  .stat-item h4 {
    font-size: 30px;
  }

  .why-choose-us-ctn {
    padding: 80px 0;
  }

  .wc-header {
    margin-bottom: 50px;
  }

  .wc-header h2 {
    font-size: 32px;
  }

  .wc-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-ctn {
    padding: 80px 0;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-slider {
    height: 400px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .feedback-header h2 {
    font-size: 28px;
  }

  .feedback-form {
    padding: 20px;
  }

  .limited-edition-main::before {
    top: 70%;
    left: -200px;
    height: 420px;
    transform: translateY(-50%) rotate(8deg);
  }

  .limited-edition-right img {
    width: 80%;
    filter: drop-shadow(-1px 0px 1px var(--accent-color));
    transform: scale(1.1);
    animation: move 5s linear infinite alternate;
  }
}

/* ===== 📱 Large Phones (481px to 768px) ===== */
@media screen and (min-width: 581px) and (max-width: 768px) {

  /* Styles for slightly larger mobile devices */
  .nav-bar {
    padding: 20px;
  }

  .nav-links {
    display: none;
    /* Hide nav links on small screens */
  }

  .menu-icon {
    display: flex;
    /* Show menu icon on small screens */
  }

  .nav-right {
    gap: 10px;
  }

  .hero-ctn {
    flex-direction: column;
    align-items: center;
    height: max-content;
    justify-content: center;
    margin-bottom: 60px;
  }

  .hero-text {
    width: 100%;
    padding-top: 80px;
    text-align: center;
    height: auto;
  }

  .hero-text h1 {
    font-size: 60px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text h3 {
    font-size: 20px;
    text-align: center;
  }

  .hero-text h4 {
    font-size: 24px;
    text-align: center;
  }

  .hero-text p {
    font-size: 15px;
    text-align: center;
    max-width: 100%;
  }

  .hero-text p::before {
    display: none;
  }

  .add-to-cart-btn {
    width: auto;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 11px;
    height: 45px !important;
    min-width: 100px;
    flex: 1;
  }

  .card-actions {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .view-details-btn {
    padding: 8px 12px;
    font-size: 11px;
    height: 45px !important;
    min-width: 100px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    height: auto;
    transform: scale(1.2);
    margin-bottom: 40px;
  }

  .limited-edition-right {
    width: 70%;
  }

  .limited-edition-left {
    width: auto;
  }

  .limited-edition-left h3 {
    font-size: 50px;
  }

  .limited-edition-main::before {
    top: 60%;
    left: -200px;
    height: 420px;
    transform: translateY(-50%) rotate(8deg);
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    margin-top: 15px;
    justify-content: center;
  }

  .collections-hero-content {
    flex-direction: column;
    text-align: center;
    padding: 90px 30px 30px 30px;
    height: auto;
  }

  .collections-hero-left {
    margin-bottom: 30px;
  }

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

  .collections-hero-left p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .features {
    justify-content: center;
    font-size: 0.9rem;
    gap: 12px;
  }

  .hero-card {
    width: 90%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-card img {
    height: 200px;
  }

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

  .filter-menu {
    flex-wrap: wrap;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
    gap: 40px;
  }

  .about-hero-left h1 {
    font-size: 2.4rem;
  }

  .about-hero-left h3 {
    font-size: 1.1rem;
  }

  .about-hero-left p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .about-hero-right img {
    max-width: 380px;
  }

  .our-story-ctn {
    padding: 90px 0;
  }

  .story-timeline::before {
    left: 50%;
    display: none;
  }

  .timeline-item,
  .timeline-item.reverse {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .timeline-content,
  .timeline-image {
    width: 100%;
    margin-bottom: 25px;
  }

  .story-stats {
    gap: 20px;
  }

  .stat-item {
    min-width: 160px;
  }

  .wc-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials-slider {
    height: 350px;
  }

  .testimonial-content {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .feedback-form {
    padding: 25px;
  }

  .live-feedbacks {
    padding: 20px;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }
}

/* ===== 💊 Tablets (768px to 1025px) ===== */
@media screen and (min-width: 768px) and (max-width: 1025px) {

  /* Styles for tablets and mid-sized screens */
  .hero-ctn {
    flex-direction: column;
    align-items: center;
    height: max-content;
    justify-content: center;
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }

  .hero-text {
    width: 100%;
    padding-top: 80px;
    text-align: center;
    height: auto;
  }

  .hero-text h1 {
    font-size: 80px;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text h3 {
    font-size: 22px;
    text-align: center;
  }

  .hero-text h4 {
    font-size: 26px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }

  .hero-text p::before {
    display: none;
  }

  .hero-image {
    width: 100%;
    height: auto;
    transform: scale(1.15);
    margin-bottom: 40px;
  }

  /* Limited Edition: fix iPad layout overflow and alignment */
  .limited-edition-main {
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
  }

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

  .limited-edition-left h3 {
    font-size: 56px;
  }

  .limited-edition-right img {
    width: 82%;
    max-width: 760px;
    margin: 0 auto;
    transform: none;
  }

  .limited-edition-main::before {
    top: 58%;
    left: -200px;
    width: 1600px;
    height: 320px;
    transform: translateY(-50%) rotate(7deg);
  }

  .collections-hero-content {
    flex-direction: row;
    padding: 90px 40px 40px 40px;

    text-align: left;
    height: auto;
  }

  .collections-hero-left h1 {
    font-size: 2.5rem;
  }

  .collections-hero-left p {
    font-size: 1rem;
    max-width: 450px;
  }

  .features {
    font-size: 0.95rem;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-card {
    width: 320px;
  }

  .hero-card img {
    height: 220px;
  }

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

  .about-hero {
    flex-direction: row;
    padding: 120px 50px;
    gap: 50px;
  }

  .about-hero-left h1 {
    font-size: 3rem;
  }

  .about-hero-left h3 {
    font-size: 1.3rem;
  }

  .about-hero-left p {
    font-size: 1rem;
    max-width: 500px;
  }

  .about-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .about-hero-right img {
    max-width: 420px;
  }

  .our-story-ctn {
    padding: 90px 0;
  }

  .story-timeline::before {
    left: 50%;
    display: none;
  }

  .timeline-item,
  .timeline-item.reverse {
    flex-direction: column;
    margin-bottom: 70px;
  }

  .timeline-content,
  .timeline-image {
    width: 80%;
    margin-bottom: 30px;
  }
}

/* Footer Styles */
.footer {
  background: transparent;
  color: var(--primary-color);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism variant for non-home pages */
.footer.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  /* Removed border-top to eliminate section separation */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35) inset;
}

/* Removed individual section orange glow effects - now unified at body level */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-logo h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 136, 1, 0.4);
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  /* Removed heavy box-shadow for performance */
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  /* Removed heavy box-shadow for performance */
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-shadow: 0 0 15px rgba(255, 136, 1, 0.3);
  color: var(--secondary-color);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

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

.footer-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(255, 136, 1, 0.5);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Removed heavy box-shadow for performance */
}

.newsletter-form button:hover {
  background-color: #e67e00;
  /* Removed heavy box-shadow for performance */
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Removed border-top to eliminate section separation */
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

.payment-methods {
  display: flex;
  gap: 10px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Floating Elements */
.footer-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-floating-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 136, 1, 0.08) 0%,
      transparent 70%);
  /* Removed heavy animations and effects for performance */
}

.footer-dot-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.footer-dot-2 {
  width: 12px;
  height: 12px;
  top: 35%;
  left: 80%;
  animation-delay: 2s;
}

.footer-dot-3 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 25%;
  animation-delay: 4s;
}

.footer-dot-4 {
  width: 10px;
  height: 10px;
  top: 75%;
  left: 70%;
  animation-delay: 6s;
}

.footer-dot-5 {
  width: 8px;
  height: 8px;
  top: 45%;
  left: 50%;
  animation-delay: 1s;
}

/* Removed heavy footerFloatDots animation for performance */

/* ==================== CART SIDEBAR ==================== */
/* ==================== CART ICON ==================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon i {
  font-size: 22px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.cart-icon:hover i {
  color: var(--secondary-color);
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--accent-color);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ==================== WISHLIST ICON ==================== */
.wishlist-icon {
  position: relative;
  cursor: pointer;
  margin-right: 15px;
}

.wishlist-icon i {
  font-size: 22px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.wishlist-icon:hover i {
  color: #ef4444;
}

#wishlist-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ==================== SIDEBAR ==================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 350px;
  max-width: 90%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transition: right 0.4s ease-in-out;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-footer {
  /* Removed border-top to eliminate section separation */
  border-bottom: none;
}

.cart-header h2 {
  font-size: 20px;
  margin: 0;
}

#close-cart {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #fff;
  transition: color 0.3s ease;
}

#close-cart:hover {
  color: var(--accent-color);
}

/* ==================== CART ITEMS ==================== */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 12px;
  position: relative;
}

.cart-item img {
  width: 55px;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  margin-left: 10px;
}

.cart-item-info h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.cart-item-info p {
  font-size: 13px;
  margin: 4px 0 0;
  color: var(--secondary-color);
}

.cart-item-remove {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--secondary-color);
  transform: scale(1.2);
}

/* ==================== FOOTER BUTTON ==================== */
.clear-cart-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  font-size: 14px;
}

.clear-cart-btn:hover {
  background: var(--secondary-color);
}

/* ==================== CONFIRM BOX ==================== */
.clear-confirm {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px;
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
}

.clear-confirm .confirm-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.clear-confirm button {
  background: var(--accent-color);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 13px;
}

.clear-confirm button:hover {
  background: var(--secondary-color);
}

.hidden {
  display: none !important;
}

/* ==================== OVERLAY ==================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 1100;
}

.cart-overlay.active {
  display: block;
}

/* ==================== WISHLIST SIDEBAR ==================== */
.wishlist-sidebar {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 350px;
  max-width: 90%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transition: right 0.4s ease-in-out;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wishlist-sidebar.active {
  right: 0;
}

.wishlist-header,
.wishlist-footer {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wishlist-footer {
  border-bottom: none;
}

.wishlist-header h2 {
  font-size: 20px;
  margin: 0;
}

#close-wishlist {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #fff;
  transition: color 0.3s ease;
}

#close-wishlist:hover {
  color: var(--secondary-color);
}

.wishlist-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.wishlist-items::-webkit-scrollbar {
  width: 6px;
}

.wishlist-items::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.wishlist-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 12px;
  position: relative;
}

.wishlist-item img {
  width: 55px;
  border-radius: 8px;
  flex-shrink: 0;
}

.wishlist-item-info {
  flex: 1;
  margin-left: 10px;
}

.wishlist-item-info h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.wishlist-item-info p {
  font-size: 13px;
  margin: 4px 0 0;
  color: var(--secondary-color);
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 10px;
}

.view-details-from-wishlist {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-details-from-wishlist:hover {
  background: var(--secondary-color);
}

.wishlist-item-remove {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.3s ease;
  background: none;
  border: none;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-item-remove:hover {
  color: var(--secondary-color);
  transform: scale(1.2);
}

.clear-wishlist-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  font-size: 14px;
}

.clear-wishlist-btn:hover {
  background: var(--secondary-color);
}

.wishlist-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 1100;
}

.wishlist-overlay.active {
  display: block;
}

/* ==================== NOTIFICATION ANIMATIONS ==================== */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .cart-sidebar {
    width: 300px;
  }

  .wishlist-sidebar {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
  }

  .wishlist-sidebar {
    width: 100%;
  }

  .wishlist-icon {
    margin-right: 10px;
  }
}

/* ==================== BUY BUTTON ==================== */
.buy-now-btn {
  background: var(--dark-color);
  color: var(--secondary-color);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: auto;
}

.buy-now-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* ==================== ADD TO CART MODAL ==================== */
.add-to-cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.add-to-cart-modal.hidden {
  display: none;
}

.add-to-cart-modal-content {
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary-color);
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.3s ease;
}

.add-to-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.add-to-cart-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.add-to-cart-close {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.add-to-cart-body {
  padding: 25px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.add-to-cart-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.add-to-cart-options {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.add-to-cart-size-selection h4,
.add-to-cart-color-selection h4,
.add-to-cart-quantity-selection h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.add-to-cart-size-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

.add-to-cart-size-option:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.add-to-cart-size-option.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.add-to-cart-color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.add-to-cart-color-option {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.add-to-cart-color-option:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.add-to-cart-color-option.active {
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.add-to-cart-color-option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.add-to-cart-quantity-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-to-cart-quantity-btn {
  background: var(--accent-color);
  border: none;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
}

.add-to-cart-quantity-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.add-to-cart-quantity-display {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  min-width: 30px;
  text-align: center;
}

.add-to-cart-footer {
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.add-to-cart-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}

.add-to-cart-confirm-btn {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 136, 1, 0.3);
}

.add-to-cart-confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 1999;
}

.add-to-cart-overlay.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .add-to-cart-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .add-to-cart-body {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .add-to-cart-image {
    width: 100px;
    height: 100px;
    align-self: center;
  }

  .add-to-cart-footer {
    flex-direction: column;
    gap: 15px;
  }

  .add-to-cart-confirm-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== BUY MODAL ==================== */
.buy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 2000;
  overflow-y: auto;
  padding: 24px 12px;
}

.buy-modal.hidden {
  display: none;
}

.buy-modal-content {
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary-color);
  padding: 20px 24px;
  border-radius: 16px;
  width: 92%;
  max-width: 900px;
  max-height: none;
  overflow: visible;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.25s ease;
  position: relative;
}

.buy-close {
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  font-size: 22px;
  color: var(--primary-color);
  opacity: 0.8;
}

.buy-close:hover {
  opacity: 1;
}

.buy-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-template-areas:
    "left right"
    "form form";
  align-items: start;
}

.buy-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buy-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  width: max-content;
  max-width: 100%;
}

.buy-summary img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #111;
}

.buy-summary-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.buy-summary-info p {
  color: var(--secondary-color);
  font-weight: 600;
}

.buy-note {
  opacity: 0.8;
  font-size: 12px;
}

.buy-select {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
}

.buy-select-header {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.buy-select-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  max-height: 180px;
  overflow: auto;
}

.buy-select-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 8px;
}

.buy-select-item img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.buy-select-item label {
  font-size: 12px;
  cursor: pointer;
}

/* Custom checkbox styling inside multi-select */
.buy-select-item input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, transform 0.08s ease;
  flex-shrink: 0;
}

.buy-select-item input[type="checkbox"]:hover {
  background: rgba(255, 255, 255, 0.08);
}

.buy-select-item input[type="checkbox"]:active {
  transform: translateY(1px);
}

.buy-select-item input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 136, 1, 0.25);
  border-color: var(--secondary-color);
}

.buy-select-item input[type="checkbox"]:checked {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.buy-select-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.buy-select-item:hover {
  background: rgba(0, 0, 0, 0.28);
}

.buy-price-box {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
}

.currency-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-row label {
  font-size: 12px;
  opacity: 0.9;
}

.currency-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--primary-color);
  border-radius: 8px;
  padding: 8px 34px 8px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px 12px;
  min-width: 140px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, transform 0.08s ease;
}

.currency-select:hover {
  background: rgba(255, 255, 255, 0.02);
}

.currency-select:active {
  transform: translateY(1px);
}

.currency-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(255, 136, 1, 0.25);
}

/* Hide default arrow for IE */
.currency-select::-ms-expand {
  display: none;
}

/* Dropdown options styling */
.currency-select option {
  background: #111;
  color: #fff;
}

.buy-right {
  grid-area: form;
  overflow: visible;
  padding-right: 4px;
}

#checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

#checkout-form .form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

#checkout-form .form-group input,
#checkout-form .form-group textarea,
#checkout-form .form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: transparent;
  color: var(--primary-color);
  outline: none;
}

#checkout-form .form-group input:focus,
#checkout-form .form-group textarea:focus,
#checkout-form .form-group select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(255, 136, 1, 0.2);
}

/* Custom styled select for payment method */
#checkout-payment {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding-right: 36px;
  /* space for arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
  cursor: pointer;
}

#checkout-payment:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

#checkout-payment:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(255, 136, 1, 0.18);
}

/* Dropdown options styling (browser dependent) */
#checkout-payment option {
  background: #111;
  color: #fff;
}

.field-error {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.25) !important;
}

.error-text {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
}

#checkout-form .form-group {
  margin-bottom: 4px;
}

#checkout-form textarea {
  resize: vertical;
  max-height: 140px;
}

@media (max-width: 768px) {
  .buy-modal-content {
    max-width: 96vw;
    padding: 16px;
  }

  .buy-modal-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "form";
    height: auto;
  }

  .buy-right {
    max-height: none;
  }

  .buy-summary {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .buy-summary img {
    width: 64px;
    height: 64px;
  }

  .buy-price-box {
    margin-left: 0;
    width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .currency-row {
    justify-content: space-between;
  }

  .currency-select {
    width: 58%;
  }

  #checkout-form .form-group input,
  #checkout-form .form-group textarea,
  #checkout-form .form-group select {
    font-size: 14px;
  }

  .buy-select-list {
    grid-template-columns: 1fr;
    max-height: 200px;
  }
}

@media (max-width: 420px) {
  .buy-modal {
    padding: 12px 8px;
  }

  .buy-modal-content {
    padding: 12px;
  }

  .currency-select {
    width: 100%;
  }

  .total-line {
    padding: 6px 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .buy-modal-content {
    max-width: 720px;
  }

  .buy-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== 🖥️ Large Desktop Screens ===== */
@media screen and (min-width: 1200px) {
  .add-to-cart-btn {
    min-width: 150px;
    height: 52px;
    padding: 15px 22px;
    font-size: 15px;
  }
}

/* ===== 🖥️ Extra-tall large displays (portrait-ish or very tall) ===== */
@media screen and (min-height: 1000px) and (max-aspect-ratio: 4/3) {

  /* Cap full-viewport sections to avoid excessive empty space */
  .hero-ctn,
  .collections-hero,
  .contact-hero,
  .video-ctn {
    min-height: 80vh;
    max-height: 900px;
  }

  /* Center key content vertically */
  .hero-ctn,
  .collections-hero-content,
  .contact-hero {
    align-items: center;
  }

  /* Scale down oversized headings gracefully on tall, narrow screens */
  .hero-text h1 {
    font-size: clamp(48px, 9vw, 100px);
  }

  .collections-hero-left h1 {
    font-size: clamp(32px, 6vw, 56px);
  }

  .about-hero-left h1 {
    font-size: clamp(32px, 6vw, 56px);
  }

  .limited-edition-left h3 {
    font-size: clamp(36px, 8vw, 80px);
  }

  /* Product grid stays readable */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== PAGE TRANSITION ==================== */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  /* tu chahe to gradient use kar sakta hai */
  z-index: 2000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}

.transition-overlay.active {
  transform: scaleX(1);
}

/* ===== Limited Edition responsive enhancements (appended) ===== */
@media screen and (max-width: 580px) {
  .limited-edition-subtitle {
    font-size: 0.95rem;
  }

  .le-cta-row {
    width: 100%;
  }

  .le-secondary-btn,
  .limited-edition-left .add-to-cart-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== Typography alignment for static pages (appended) ===== */
/* Size Guide: section headings */
.converter-card h2,
.measure-card h3,
.size-converter h2,
.measure-guide h3 {
  font-family: "Orbitron", sans-serif;
}

/* Shipping & Returns: section headings */
.map-header h2,
.shipping-card .ship-meta h4,
.shipping-legend .badge,
.faq h2 {
  font-family: "Orbitron", sans-serif;
}

/* Privacy Policy: overview cards headings */
.info-card h3,
.policy-card h4,
.policy-box h4,
.policy-section h2 {
  font-family: "Orbitron", sans-serif;
}

@media screen and (min-width: 581px) and (max-width: 768px) {
  .limited-edition-subtitle {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .limited-edition-subtitle {
    font-size: 1rem;
  }
}

/* ==================== PRODUCT DETAIL PAGE STYLES ==================== */

/* Product Detail Section */
.product-detail-section {
  padding: 140px 0 60px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Remove list styles globally for product detail page */
.product-detail-section ul,
.product-detail-section ol {
  list-style-type: none;
  padding-left: 0;
}

.product-detail-section li {
  color: #ffffff;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.product-detail-section li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.product-detail-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%);
  pointer-events: none;
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 40px;
  font-size: 14px;
  color: #cccccc;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.breadcrumb span {
  color: #888888;
  font-weight: 500;
}

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

/* Product Images */
.product-images {
  position: sticky;
  top: 120px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-image-container {
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.main-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s ease;
  cursor: zoom-in;
  filter: brightness(1.05) contrast(1.02);
}

.main-image:hover {
  transform: scale(1.03);
  filter: brightness(1.1) contrast(1.05);
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-content: center;
}

.thumbnail {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.thumbnail.active {
  border-color: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

/* Desktop-only additional content */
.desktop-additional-info {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-specs {
  margin-bottom: 25px;
}

.quick-specs h4,
.product-highlights h4 {
  color: var(--primary-color);
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
}

.spec-item i {
  color: var(--secondary-color);
  width: 16px;
  font-size: 14px;
}

.product-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
}

.product-highlights li i {
  color: var(--secondary-color);
  font-size: 12px;
}

/* Show desktop content only on larger screens */
@media screen and (min-width: 1024px) {
  .desktop-additional-info {
    display: block;
  }
}

/* Image Zoom Overlay */
.image-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: zoom-out;
}

.image-zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.zoom-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* Product Info */
.product-info {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color),
      var(--primary-color));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 200% 0;
  }

  50% {
    background-position: -200% 0;
  }
}

.product-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.badge:hover::before {
  left: 100%;
}

.badge.new {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.badge.hot {
  background: linear-gradient(135deg, #ff4444, #ff6b6b);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.product-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--primary-color), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
  display: flex;
  gap: 3px;
  color: #ffd700;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding: 20px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.original-price {
  font-size: 1.8rem;
  color: #888888;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  background: linear-gradient(135deg, #ff4444, #ff6b6b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

.product-description {
  margin-bottom: 30px;
}

.product-description h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.product-description p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

.product-description ul {
  list-style-type: none;
  padding-left: 0;
  margin: 15px 0;
}

.product-description li {
  color: #ffffff;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.product-description li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Size Selection */
.size-selection {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.size-selection h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.size-selection h3::before {
  content: "\f553";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin-right: 8px;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.size-option {
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  color: #ffffff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.size-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.size-option:hover::before {
  left: 100%;
}

.size-option:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.size-option.active {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  color: #000000;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.size-guide-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.size-guide-link:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Color Selection */
.color-selection {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-selection h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-selection h3::before {
  content: "\f53f";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin-right: 8px;
}

.color-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-option:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.color-option.active {
  border-color: var(--secondary-color);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.color-option.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  animation: checkmark 0.3s ease;
}

@keyframes checkmark {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Quantity Selection */
.quantity-selection {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-selection h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selection h3::before {
  content: "\f1ec";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin-right: 8px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 25px;
  width: fit-content;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  color: var(--text-color);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.quantity-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quantity-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 40px;
  text-align: center;
  padding: 10px 20px;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
}

/* Desktop-specific button layout */
@media screen and (min-width: 1024px) {
  .product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: stretch;
    padding: 25px;
  }

  .primary-btn,
  .secondary-btn {
    min-width: auto;
    width: 100%;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
  }

  .wishlist-btn {
    align-self: center;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Large Desktop Screens */
@media screen and (min-width: 1200px) {
  .product-actions {
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 20px 40px;
    font-size: 17px;
  }

  .wishlist-btn {
    align-self: center;
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
}

.primary-btn,
.secondary-btn {
  flex: 1;
  min-width: 180px;
  padding: 16px 30px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn::before,
.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #ff6b35, var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.secondary-btn {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.secondary-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  border-color: transparent;
}

.wishlist-btn {
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  color: var(--text-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}

.wishlist-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.wishlist-btn:hover::before {
  left: 100%;
}

.wishlist-btn:hover {
  border-color: #ff4444;
  color: #ff4444;
  background: linear-gradient(145deg,
      rgba(255, 68, 68, 0.1),
      rgba(255, 68, 68, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

.wishlist-btn.active {
  background: linear-gradient(135deg, #ff4444, #ff6b6b);
  color: white;
  border-color: #ff4444;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
}

/* Product Features */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04));
}

.feature i {
  color: var(--secondary-color);
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

/* Product Tabs Section */
.product-tabs-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.product-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #333;
}

.tab-btn {
  padding: 15px 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.tabs-content {
  max-width: 800px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Product Details Content Styling */
#product-details-content {
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

#product-details-content p {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

#product-details-content ul {
  color: #ffffff;
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

#product-details-content li {
  color: #ffffff;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

#product-details-content li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 16px;
}

/* Additional styling for better visual hierarchy */
#product-details-content p:first-child {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #f0f0f0;
}

#product-details-content ul {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design for product details */
@media screen and (max-width: 768px) {
  #product-details-content {
    font-size: 14px;
  }

  #product-details-content p {
    font-size: 14px;
  }

  #product-details-content p:first-child {
    font-size: 16px;
  }

  #product-details-content li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  #product-details-content ul {
    padding: 15px;
  }
}

/* Specifications Table */
.specs-table {
  background: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
}

.spec-row {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: #ffffff;
  width: 200px;
  flex-shrink: 0;
}

.spec-value {
  color: #cccccc;
  flex: 1;
}

/* Reviews */
.reviews-summary {
  background: var(--card-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.rating-overview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.overall-rating .stars {
  font-size: 1.5rem;
  margin: 10px 0;
}

.total-reviews {
  color: #ffffff;
  font-size: 14px;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-bar span:first-child {
  width: 30px;
  color: #ffffff;
}

.bar {
  flex: 1;
  height: 8px;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.rating-bar span:last-child {
  width: 40px;
  text-align: right;
  color: #ffffff;
  font-size: 14px;
}

.review-item {
  background: var(--card-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: #ffffff;
}

.review-rating {
  color: #ffd700;
}

.review-date {
  color: #cccccc;
  font-size: 14px;
}

.review-comment {
  color: #ffffff;
  line-height: 1.6;
}

/* Shipping Info */
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--card-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.shipping-option:hover {
  transform: translateY(-2px);
}

.shipping-option i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.shipping-option h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

.shipping-option p {
  color: #cccccc;
  margin: 0;
}

/* Related Products */
.related-products-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-color) 100%);
}

.related-products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-products-container h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.related-product-card {
  background: var(--card-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.related-product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

.related-product-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.related-product-card .price {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.view-details-btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-details-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.05);
}

/* ==================== RESPONSIVE DESIGN FOR PRODUCT DETAIL ==================== */

/* Large Tablets and Small Desktops */
@media screen and (max-width: 1200px) {
  .product-detail-container {
    max-width: 1000px;
    padding: 0 30px;
  }

  .product-detail-grid {
    gap: 60px;
  }

  .product-title {
    font-size: 2.5rem;
  }

  .current-price {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  .product-detail-section {
    padding: 120px 0 40px;
  }

  .product-detail-container {
    padding: 0 20px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-images {
    position: static;
    padding: 15px;
  }

  .main-image {
    height: 250px;
    object-fit: contain;
  }

  .thumbnail-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .thumbnail {
    height: 50px;
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .current-price {
    font-size: 2.2rem;
  }

  .original-price {
    font-size: 1.5rem;
    color: #888888;
  }

  .product-actions {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .primary-btn,
  .secondary-btn {
    min-width: auto;
    width: 100%;
    padding: 16px 30px;
  }

  .wishlist-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .product-features {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .feature {
    padding: 15px;
  }

  .size-selection,
  .color-selection,
  .quantity-selection {
    padding: 20px;
    margin-bottom: 25px;
  }

  .size-options {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
  }

  .size-option {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .color-options {
    gap: 15px;
  }

  .color-option {
    width: 45px;
    height: 45px;
  }

  .quantity-controls {
    gap: 20px;
    padding: 12px 20px;
  }

  .quantity-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .quantity-display {
    font-size: 1.3rem;
  }

  .tabs-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
  }

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

  .spec-row {
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
  }

  .spec-label {
    width: auto;
    font-size: 14px;
    color: #ffffff;
  }

  .spec-value {
    font-size: 14px;
    color: #cccccc;
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .related-product-card img {
    height: 140px;
  }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
  .product-detail-section {
    padding: 100px 0 30px;
  }

  .product-detail-container {
    padding: 0 15px;
  }

  .breadcrumb {
    margin-bottom: 25px;
    font-size: 12px;
    color: #cccccc;
  }

  .product-images {
    padding: 10px;
  }

  .main-image-container {
    margin-bottom: 20px;
  }

  .main-image {
    height: 180px;
    object-fit: contain;
    width: 100%;
  }

  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .thumbnail {
    height: 35px;
    object-fit: contain;
  }

  .product-info {
    padding: 15px;
  }

  .product-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .product-rating {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .stars {
    font-size: 16px;
  }

  .rating-text {
    font-size: 13px;
    color: #ffffff;
  }

  .product-price {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .current-price {
    font-size: 1.8rem;
  }

  .original-price {
    font-size: 1.2rem;
    color: #888888;
  }

  .discount-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .product-description {
    margin-bottom: 20px;
  }

  .product-description h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .product-description p {
    font-size: 14px;
    color: #ffffff;
  }

  .size-selection,
  .color-selection,
  .quantity-selection {
    padding: 15px;
    margin-bottom: 20px;
  }

  .size-selection h3,
  .color-selection h3,
  .quantity-selection h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .size-options {
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
    gap: 8px;
  }

  .size-option {
    width: 45px;
    height: 45px;
    font-size: 13px;
  }

  .color-options {
    gap: 12px;
  }

  .color-option {
    width: 40px;
    height: 40px;
  }

  .quantity-controls {
    gap: 15px;
    padding: 10px 15px;
  }

  .quantity-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .quantity-display {
    font-size: 1.2rem;
  }

  .product-actions {
    padding: 15px;
    gap: 12px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 14px 25px;
    font-size: 14px;
  }

  .wishlist-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .product-features {
    padding: 15px;
    gap: 12px;
  }

  .feature {
    padding: 12px;
    gap: 10px;
  }

  .feature i {
    font-size: 20px;
  }

  .feature span {
    font-size: 13px;
  }

  .tabs-nav {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 15px;
    font-size: 12px;
    min-width: 100px;
  }

  .tab-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .reviews-summary {
    padding: 20px;
  }

  .rating-number {
    font-size: 2.5rem;
  }

  .overall-rating .stars {
    font-size: 1.2rem;
  }

  .review-item {
    padding: 15px;
  }

  .review-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .review-comment {
    font-size: 14px;
    color: #ffffff;
  }

  .shipping-option {
    padding: 15px;
    gap: 15px;
  }

  .shipping-option i {
    font-size: 1.5rem;
  }

  .shipping-option h4 {
    font-size: 1rem;
    color: #ffffff;
  }

  .shipping-option p {
    font-size: 14px;
    color: #cccccc;
  }

  .related-products-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .related-product-card {
    padding: 15px;
  }

  .related-product-card img {
    height: 120px;
  }

  .related-product-card h4 {
    font-size: 1rem;
    color: #ffffff;
  }

  .related-product-card .price {
    font-size: 1.1rem;
    color: #ffffff;
  }

  .view-details-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Extra Small Mobile Devices */
@media screen and (max-width: 360px) {
  .product-images {
    padding: 8px;
  }

  .main-image {
    height: 160px;
  }

  .thumbnail {
    height: 30px;
  }

  .thumbnail-images {
    gap: 4px;
  }

  .related-product-card img {
    height: 100px;
  }

  .related-product-card {
    padding: 12px;
  }
}

/* Extra Small Mobile Devices - Product Detail Container */
@media screen and (max-width: 360px) {
  .product-detail-container {
    padding: 0 10px;
  }

  .product-title {
    font-size: 1.6rem;
    color: #ffffff;
  }

  .current-price {
    font-size: 1.6rem;
    color: #ffffff;
  }

  .size-option {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .color-option {
    width: 35px;
    height: 35px;
  }

  .quantity-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}