/* ===== MEN CATEGORY SECTION ===== */

.men-category {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-category h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;

  /* ===== VIBRATE EFFECT ===== */
  display: inline-block;
  animation: vibrateGlow 2s linear infinite;
}

/* KEYFRAMES */
@keyframes vibrateGlow {
  0% {
    transform: translate(0);
    text-shadow: 0 0 5px #fff;
  }
  20% {
    transform: translate(0px, 0px);
  }
  40% {
    transform: translate(0px, 0px);
  }
  60% {
    transform: translate(0px, -0px);
  }
  80% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0);
    text-shadow:
      0 0 15px #f97316,
      0 0 25px #facc15;
  }
}

.men-list {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.men-list li {
  list-style: none;
  padding: 10px 20px;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover Effects */
.men-list li:hover {
  background: #f97316;
  color: #ffffff;
  transform: scale(1.1);
}

.men-list li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.men-list li:hover a {
  color: #ffffff;
}

/* MEN LIST ITEMS EFFECT */
.men-category ul li {
  transition: all 0.6s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  animation: fade 1.5s ease;
}

/* HOVER EFFECT (same hero style) */
.men-category ul li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-wrapper1 {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #f97316, #facc15);
}

.announcement-bar1 {
  width: 100%;
  white-space: nowrap;
  position: relative;
}

.announcement-track1 {
  display: inline-flex;
  gap: 60px;
  padding: 10px 0;
  animation: scrollText 10s linear infinite;
}

.announcement-track1 span {
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.announcement-track1 i {
  color: #000000;
  animation: blink 1s infinite alternate;
}

/* Hover Effect (Pause + Highlight) */
.announcement-wrapper1:hover .announcement-track1 {
  animation-play-state: paused;
}

.announcement-track1 span:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Scrolling Animation */
@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Icon Animation */
@keyframes blink {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ===== FULL WIDTH BANNER ===== */
.full-banner {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: linear-gradient(to right, #111827, #1f2937);
  overflow: hidden;
  position: relative;
}

/* LEFT TEXT */
.banner-content {
  color: #fff;
  z-index: 2;
  margin-left: 20px;
}

.banner-content h2 {
  color: #b9f916;
  margin-bottom: 10px;
  font-size: 25px;
}

.banner-content h1 {
  font-family: poppins, sans-serif;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 15px;
  animation: zoomPulse 2s ease-in-out infinite;
}

/* KEYFRAME */
@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* RIGHT IMAGE */
.full-banner img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right;
  transition: 0.6s;
}

/* HOVER EFFECT */
.full-banner:hover img {
  transform: scale(1.05);
  box-shadow:
    -30px 0 60px rgba(255, 255, 255, 0.25),
    30px 0 60px rgba(255, 255, 255, 0.25);
}

/* ANIMATION */
.full-banner {
  animation: fadeBanner 1.5s ease;
}

@keyframes fadeBanner {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.men-clothing {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-clothing h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-clothing h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-footwears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-footwears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-footwears h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-eyewears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-eyewears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-eyewears h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-innerwears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-innerwears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-innerwears h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-accessories {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-accessories h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-accessories h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-grooming {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-grooming h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-grooming h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-sports {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-sports h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-sports h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-bags {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-bags h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-bags h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-jewellery {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-jewellery h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-jewellery h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.men-gits {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.men-gits h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.men-gits h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-category {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-category h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;

  display: inline-block;
  animation: vibrateGlow 2s linear infinite;
}

.women-list {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.women-list li {
  list-style: none;
  padding: 10px 20px;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover Effects */
.women-list li:hover {
  background: #f97316;
  color: #ffffff;
  transform: scale(1.1);
}

.women-list li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.women-list li:hover a {
  color: #ffffff;
}

.women-category ul li {
  transition: all 0.6s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  animation: fade 1.5s ease;
}

.women-category ul li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.women-clothing {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-clothing h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-clothing h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-footwears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-footwears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-eyewears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-eyewears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-eyewears h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-innerwears {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-innerwears h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-innerwears h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-accessories {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-accessories h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-accessories h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-grooming {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-grooming h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-grooming h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-sports {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-sports h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-sports h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-bags {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-bags h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-bags h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-jewellery {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-jewellery h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-jewellery h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.women-gits {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.women-gits h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.women-gits h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-category {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-category h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;

  display: inline-block;
  animation: vibrateGlow 2s linear infinite;
}

.kids-list {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.kids-list li {
  list-style: none;
  padding: 10px 20px;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover Effects */
.kids-list li:hover {
  background: #f97316;
  color: #ffffff;
  transform: scale(1.1);
}

.kids-list li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.kids-list li:hover a {
  color: #ffffff;
}

.kids-category ul li {
  transition: all 0.6s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  animation: fade 1.5s ease;
}

.kids-category ul li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.kids-clothing {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-clothing h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-clothing h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-footwear {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-footwear h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-footwear h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-toys {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-toys h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-toys h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-gaming {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-gaming h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-gaming h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-schools {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-schools h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-schools h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-babycare {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-babycare h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-babycare h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-sports {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-sports h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-sports h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-nursery {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-nursery h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-nursery h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-gits {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-gits h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-gits h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.kids-learning {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.kids-learning h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.kids-learning h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.beauty {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.beauty h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.beauty h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.electronics {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.electronics h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.electronics h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.sports {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.sports h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.sports h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.education {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.education h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.education h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.furniture {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.furniture h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.furniture h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.foods-drinks {
  font-family: sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.foods-drinks h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.foods-drinks h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}

.trends {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  background: hsl(339, 100%, 15%);
  text-align: center;
}

.trends h2 {
  display: inline-block;
  line-height: normal;
  width: auto;
  font-size: 25px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: vibrateGlow 2s linear infinite;
}

.trends h2:hover {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffcbcb, #d5e7ff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  transition: 0.6s;
  transform: scale(1.1);
}
