@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f2f4f8;
}

html,
body {
  margin: 0;
  padding: 0;
}

.container {
  width: 1320px !important;
  margin: 0 auto;
}

/* 
** header part design starts
*/

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.head-top {
  width: 100%;
  background-color: #000000;
  padding: 10px 0;
}

.ht-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ht-item.company-logo {
  width: 150px;
}

.ht-item.search {
  width: 650px;
  position: relative;
}

.ht-item.quick-actions {
  width: calc(100% - 800px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding-left: 25px;
}

.company-logo {
  height: 100%;
}

.company-logo>a {
  height: 100%;
}

.company-logo>a>img {
  height: 100%;
}

.search>.search-bar {
  width: 100%;
  outline: none;
  border: none;
  padding: 12px 40px 12px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #262626;
  border-radius: 5px;
}

.search-icon {
  color: #262626;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-results {
  position: absolute;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  top: 100%;
  left: 0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  font-family: 'Poppins', sans-serif;
  width: 650px;
  max-width: 100%;
  border-top: 3px solid #2590cf;
  z-index: 1000000000000;
  box-sizing: border-box;
  margin-top: 5px;
}

.search-results>.sr-title {
  font-size: 16px;
  font-weight: 600;
  color: #2590cf;
  padding: 10px 0;
  border-bottom: 1px solid #dadada;
}

.search-results>.sr-warning {
  font-size: 14px;
  font-weight: 400;
  color: rgb(152, 152, 152);
  padding-top: 10px;
}

#search-results {
  display: none;
}

.ht-item.quick-actions>li {
  list-style: none;
  font-family: 'Poppins', sans-serif;
  color: #2590cf;
  text-align: center;
}

.quick-actions>li>a {
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  display: inline-block;
}

.quick-actions>li>a>i {
  color: #f4d50d
}

a.offers-nav,
a.black-friday-nav {
  border: 1px dashed #b0b0b0;
  padding: 5px 15px;
  border-radius: 5px;
}

a.offers-nav:hover,
a.black-friday-nav:hover {
  background-color: #f4d50d;
  color: #000000;
  border: 1px solid #f4d50d;
}

a.offers-nav:hover>i,
a.black-friday-nav:hover>i {
  color: #000000;
}

.login-register>.login-link-nav:hover,
.login-register>.register-link-nav:hover {
  color: #f4d50d;
}

/* PC Builder Navigation Button */
.pc-builder-nav {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 117, 252, 0.4);
  border: 2px solid #ffffff;
  position: relative;
  overflow: hidden;
}

.pc-builder-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 117, 252, 0.6);
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
}

.pc-builder-nav::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: 0.5s;
}

.pc-builder-nav:hover::before {
  left: 100%;
}

.pc-builder-nav i {
  font-size: 1.2em;
  animation: pcBuilderIconPulse 2s infinite;
}

@keyframes pcBuilderIconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.pc-builder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pc-builder-btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FF8C00 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  border: 2px solid #FFD700;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.6),
    0 5px 15px rgba(255, 140, 0, 0.3),
    inset 0 1px 8px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  animation: premiumPulse 3s ease-in-out infinite;
}

.pc-builder-content {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 5;
}

.pc-crown {
  color: #DC143C;
  font-size: 1em;
  animation: crownFloat 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
  filter: drop-shadow(0 0 5px #FFD700);
}

.pc-text {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.pc-chip {
  color: #4169E1;
  font-size: 0.95em;
  animation: chipSpin 4s linear infinite;
  text-shadow: 0 0 8px rgba(65, 105, 225, 0.8);
  filter: drop-shadow(0 0 3px #00FFFF);
}

/* Premium Glow Background */
.pc-builder-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 215, 0, 0.4),
    transparent,
    rgba(255, 140, 0, 0.4),
    transparent,
    rgba(255, 215, 0, 0.4),
    transparent
  );
  animation: premiumRotate 4s linear infinite;
  z-index: -1;
}

/* Ultra Shimmer Effect */
.pc-builder-btn::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: ultraShimmer 3s ease-in-out infinite;
  z-index: 1;
  border-radius: 15px;
}

/* Floating Particles */
.pc-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  font-size: 10px;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.8s;
}

.particle-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 1.6s;
}

.particle-4 {
  bottom: 25%;
  right: 10%;
  animation-delay: 2.4s;
}

.particle-5 {
  top: 50%;
  left: 50%;
  animation-delay: 3.2s;
  transform: translate(-50%, -50%);
}

/* Hover Effects */
.pc-builder-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 
    0 0 50px rgba(255, 215, 0, 1),
    0 15px 40px rgba(255, 140, 0, 0.6),
    inset 0 3px 15px rgba(255, 255, 255, 0.5);
  border-color: #FFE55C;
}

.pc-builder-btn:hover .pc-crown {
  animation: crownExcited 0.5s ease-in-out infinite;
  color: #FF1493;
}

.pc-builder-btn:hover .pc-chip {
  animation: chipTurbo 1s linear infinite;
  color: #00FFFF;
}

.pc-builder-btn:hover .particle {
  animation: particleExplode 2s ease-out infinite;
}

/* Keyframe Animations */
@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(255, 215, 0, 0.8),
      0 8px 25px rgba(255, 140, 0, 0.4),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 50px rgba(255, 215, 0, 1),
      0 12px 35px rgba(255, 140, 0, 0.6),
      inset 0 3px 15px rgba(255, 255, 255, 0.5);
  }
}

@keyframes premiumRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ultraShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(5deg); }
  75% { transform: translateY(-1px) rotate(-3deg); }
}

@keyframes crownExcited {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-5px) rotate(10deg) scale(1.2); }
}

@keyframes chipSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes chipTurbo {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  25% { opacity: 1; transform: translateY(-10px) scale(1); }
  75% { opacity: 0.7; transform: translateY(-5px) scale(0.8); }
}

@keyframes particleExplode {
  0% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 1; transform: scale(1.5) translateY(-20px); }
  100% { opacity: 0; transform: scale(0.3) translateY(-30px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pc-builder-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .pc-crown, .pc-chip {
    font-size: 1em;
  }
}



.main-nav {
  z-index: 100000;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
}

/* This will be applied via JavaScript */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
}

.navbar-menu {
  display: flex;
  flex-direction: Row;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}

.navbar-menu>li {
  list-style: none;
  position: relative;
}

.navbar-menu>li>a {
  text-decoration: none;
  color: #262626;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 5px;
  display: inline-block;
}

.navbar-menu>li>a:hover {
  color: #2590cf;
}

.navbar-menu>li>ul {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 200px;
  gap: 5px;
  border-top: 3px solid #2590cf;
}

.navbar-menu>li:hover>ul {
  display: flex;
}

.navbar-menu>li>ul>li {
  list-style: none;
  display: block;
  width: 100%;
  position: relative;
}

.navbar-menu>li>ul>li>a {
  text-decoration: none;
  color: #262626;
  font-family: 'poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  padding: 5px 15px;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu>li>ul>li>a:hover {
  background-color: #2590cf;
  color: #ffffff;
  width: 100%;
}

.navbar-menu>li>ul>li>ul {
  position: absolute;
  left: 200px;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 200px;
  gap: 5px;
  border-top: 3px solid #2590cf;
}

.navbar-menu>li>ul>li:hover>ul {
  display: flex;
}

.navbar-menu>li>ul>li>ul>li {
  list-style: none;
  display: block;
  width: 100%;
  position: relative;
}

.navbar-menu>li>ul>li>ul>li>a {
  text-decoration: none;
  color: #262626;
  font-family: 'poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  padding: 5px 15px;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu>li>ul>li>ul>li>a:hover {
  background-color: #2590cf;
  color: #ffffff;
  width: 100%;
}

/* Ensure content doesn't overlap with fixed navbar */
@media (max-width: 815px) {
  body {
    padding-top: 0px; /* Adjust based on navbar height */
  }
  
  /* Specific fix for dashboard page to prevent double padding */
  body.dashboard-page {
    padding-top: 0;
  }
}






/*
** header part design ends
*/









/* 
** hero section design starts
*/



.hero-section {
  width: 100%;
}

.hero-section>.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
}

.left-hero-part {
  width: 70%;
}

.right-hero-part {
  width: 30%;
}



.slider_home {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.buttons button {
  background: rgba(0, 0, 0, 0.0);
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  height: 100%;
}

.buttons button:hover {
  background: rgba(0, 0, 0, 0.3);
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 30px;
  height: 8px;
  margin: 0 5px;
  background: #ffffff;
  cursor: pointer;
}

.dot.active {
  background: #2590cf;
}

.right-hero-part {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}

.right-hero-part>.top-right-hero-part {
  background-color: #000000;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding: 20px;
  height: 330px;
}

.top-right-hero-part>h2 {
  color: #ffffff;
  font-size: 55px;
  text-transform: uppercase;
  line-height: 100%;
}

.top-right-hero-part>p {
  color: #b0b0b0;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: 10px;
}

.top-right-hero-part>img {
  width: 150px;
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.top-right-hero-part>a {
  text-decoration: none;
  color: #ffd700;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 15px 20px;
  border: 1px solid #ffd700;
  display: inline-block;
  margin-top: 50px;
  background-color: rgba(0, 0, 0, 0.5);
}

.top-right-hero-part>a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 20px #ffd700;
}

.bottom-right-hero-part {
  width: 100%;
  overflow: hidden;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.bottom-right-hero-part>img {
  width: 110%;
}


.sliding-text-wrap {
  width: 1320px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #000000;
  padding: 10px 15px;
  font-family: 'Hind Siliguri', sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.the-notice-text {
  font-family: 'Hind Siliguri', sans-serif !important;
  font-size: 16px;
}

.pre-notice-text {
  padding-right: 10px;
  font-weight: 600;
  color: #ffd700;
  font-family: 'Poppins', sans-serif;
}


/* 
** hero section design ends
*/


/* 
** PC Building Steps Seciton Design Starts
*/

.pc-building-steps {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}


.pc-building-steps>.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}

.pbs-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #ffffff;
}

.pbs-card>.pbs-card-left-icon {
  width: 60px;
  height: 60px;
  background-color: #2590cf;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.pbs-card-left-icon>span {
  font-size: 25px;
}

.pbs-card-right-texts {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.pbs-card-right-texts>h3 {
  font-size: 18px;
  font-weight: 700;
}

.pbs-card-right-texts>p {
  font-size: 14px;
  font-weight: 400;
  color: #262626;
  letter-spacing: 1px;
}


/* 
** PC Building Steps Seciton Design Ends
*/





/* 
** Featured Category Seciton Design Starts
*/



.featured-category-home {
  width: 100%;
}

.featured-category-home>.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.fch-title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
}

.fch-info {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #262626;
  margin-bottom: 30px;
}

.fch-categories-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto;
  gap: 20px;
  margin-bottom: 60px;
}

.fch-categories-wrapper>.fch-card {
  padding: 10px 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #262626;
  width: 140px;
  background-color: #ffffff;
}

.fch-card:hover {
  background-color: #efefef;
}

.fch-card>.fch-card-icon {
  width: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fch-card-icon>img {
  width: 100%;
}

.fch-card>.fch-card-name {
  margin-top: 10px;
  font-weight: 500;
  font-size: 17px;
  color: #262626;
  text-align: center;
}



/* 
** Featured Category Seciton Design Ends
*/



/* 
** Physical Outlet Section Design Starts
*/

.physical-outlet-info {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
}

.poi-wrapper {
  width: 100%;
  background-image: linear-gradient(to right, #071e68, #2590cf);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
}

.poi-icon-title-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.poi-icon {
  color: #ffffff;
  font-size: 35px;
  margin-right: 20px;
}

.poi-t-i>h2 {
  color: #ffffff;
  font-size: 29px;
  font-weight: 600;
}

.poi-t-i>p {
  color: #b0b0b0;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
}

.poi-nevigate-btn>a {
  display: inline-block;
  text-align: center;
  background-color: #ffd700;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #262626;
  transition: 0.3s all ease-in-out;
}

.poi-nevigate-btn>a:hover {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 3px 6px 0px rgba(0, 0, 0, 0.5);
  transform: scale(1.03);
}

/* 
** Physical Outlet Section Design Ends
*/



/* 
** Featured Products Section Design Starts
*/

.featured-products-home {
  width: 100%;
}

.featured-products-home>.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.fph-title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
}

.fph-info {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #262626;
  margin-bottom: 30px;
}

.fph-products-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 20px;
  margin-bottom: 60px;
}

.fph-product-card {
  width: 250px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.fph-product-card>a>img {
  width: 100%;
}

.fph-p-c-d-o {
  background-color: #000000;
  color: #ffd700;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
  position: absolute;
  top: 15px;
  left: 0;
}

.fph-product-title {
  text-decoration: none;
  color: #262626;
  font-weight: 600;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}

.fph-product-prices {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.fph-offer-price {
  color: #ff005d;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

/* 
** Featured Products Section Design Ends
*/




/* 
** About SEO Content Section Design Starts
*/

.about-seo-content {
  width: 100%;
  margin-bottom: 60px;
}

.about-seo-content>.container>h1 {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
}

.about-seo-content>.container>p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: justify;
  color: #262626
}

/* 
** About SEO Content Section Design Ends
*/







/* 
** Footer Section Design Starts
*/



footer {
  background-color: #000000;
  padding: 40px 20px;
  color: #ffffff;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ffd700;
}

.contact-box {
  background-color: #101d2b;
  border: 1px solid #101d2b;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.contact-box:hover {
  border: 1px solid #ffd700;
}

.contact-box i {
  font-style: normal;
  margin-right: 10px;
}

.store-locator {
  color: #ffd700;
  font-weight: bold;
}

.app-links img {
  height: 40px;
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 30px;
  border-top: 1px solid #1e2a38;
  padding-top: 20px;
}



/* 
** Footer Section Design Ends
*/



/* cart icon */
.cart-btn {
  position: fixed;
  top: 50%;
  transform: translateX(-50%);
  right: 5px;
  z-index: 99999;
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  ;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.cart-btn:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

.cart-btn>.cart-icons {
  position: relative;
}

.cart-btn>.cart-icons>.cart-numbers {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ff005d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: -3px;
  right: -8px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.fas.fa-shopping-cart {
  font-size: 25px;
}

/* Mobile Search Box */
.mobile-search-container {
  display: none;
  padding: 10px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.mobile-search-box {
  display: flex;
  gap: 10px;
}

.mobile-search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.mobile-search-input:focus {
  border-color: #2590cf;
  box-shadow: 0 0 0 0.2rem rgba(37, 144, 207, 0.25);
}

.mobile-search-btn {
  background: #2590cf;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-search-btn:hover {
  background: #1a7baf;
}

/* Mobile Account Links */
.mobile-account-links {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 1px solid #dee2e6;
}

.mobile-account-link {
  padding: 12px 0;
  color: #2590cf;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}

.mobile-account-link:last-child {
  border-bottom: none;
}

.mobile-account-link:hover {
  color: #1a7baf;
}

.mobile-account-link i {
  width: 20px;
  text-align: center;
}

/* Show search box only on mobile */
@media (max-width: 815px) {
  .mobile-search-container {
    display: block;
  }
  
  /* Hide desktop search on mobile */
  .ht-item.search {
    display: none;
  }
  
  /* Make mobile navbar visible on mobile */
  .mobile-navbar {
    display: flex;
  }
}

/* Search Results Styles for Mobile */
#mobile-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 5px;
    display: none;
    overflow: hidden;
    max-height: 500px;
    width: 100%;
    box-sizing: border-box;
}

#mobile-search-results.active {
    display: block;
}

/* Responsive styles for search results */
@media (max-width: 768px) {
  .search-tabs {
    display: flex;
  }
  
  .search-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .search-tab.active {
    background: #fff;
    border-bottom: 2px solid #2590cf;
    color: #2590cf;
  }
  
  .search-content {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
  }
  
  .search-products-content,
  .search-categories-content {
    display: none;
  }
  
  .search-products-content.active,
  .search-categories-content.active {
    display: block;
  }
  
  .sr-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .sr-warning {
    text-align: center;
    color: #999;
    padding: 20px 0;
    font-size: 13px;
  }
  
  /* Loading Spinner */
  .search-loading {
    text-align: center;
    padding: 20px 0;
  }
  
  .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2590cf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Product Item in Search Results */
  .search-product-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  .search-product-item:last-child {
    border-bottom: none;
  }
  
  .search-product-item:hover {
    background-color: #f9f9f9;
  }
  
  .search-product-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 10px;
    border: 1px solid #eee;
  }
  
  .search-product-info {
    flex: 1;
  }
  
  .search-product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .search-product-price {
    font-size: 13px;
    color: #2590cf;
    font-weight: 600;
  }
  
  .search-product-regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 5px;
  }
  
  /* Category Item in Search Results */
  .search-category-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  .search-category-item:last-child {
    border-bottom: none;
  }
  
  .search-category-item:hover {
    background-color: #f9f9f9;
  }
  
  .search-category-icon {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    color: #666;
  }
  
  .search-category-name {
    font-size: 14px;
    color: #333;
  }
  
  /* Search Footer */
  .search-footer {
    padding: 10px 15px;
    background: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .view-all-results {
    color: #2590cf;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .view-all-results:hover {
    text-decoration: underline;
  }
}

/* Mobile search results adjustments for small screens */
@media (max-width: 576px) {
    #mobile-search-results {
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
}

/* responsive part */

/* Navbar */
.mobile-navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #000000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.mobile-navbar .logo {
  font-size: 20px;
  font-weight: bold;
}

.mobile-navbar .logo img {
  width: 45px;
}

/* Mobile Navbar Logo Link */
.mobile-navbar .logo a {
  display: block;
  text-decoration: none;
}

.mobile-navbar .logo a:hover {
  text-decoration: none;
}

.mobile-navbar>.icon {
  font-size: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
}

#cart-count {
  background-color: #ff005d;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: -10px;
  text-align: center;
  font-weight: 800;
}

/* Sliding Menu */
.side-menu,
.cart-bar {
  position: fixed;
  top: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  z-index: 100001;
  transition: transform 0.3s ease;
}

.side-menu {
  left: 0;
  transform: translateX(-100%);
}

.side-menu.active {
  transform: translateX(0);
}

#menu-close {
  cursor: pointer;
}

.cart-bar {
  right: 0;
  transform: translateX(100%);
}

.cart-bar.active {
  transform: translateX(0);
}

.menu-header,
.cart-header {
  padding: 10px;
  background: #2590cf;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-list li {
  padding: 5px;
}

.menu-list,
.submenu {
  list-style: none;
  padding: 10px;
}

.submenu li {
  padding: 5px;
}

.submenu {
  display: none;
}

.expandable {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  margin: 2px 0;
}

.expandable:hover {
  background: #e0e0e0;
}

/* Cart content */
.cart-bar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  z-index: 100001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-left: 1px solid #eee;
}

.cart-bar.active {
  transform: translateX(0);
}

.cart-header {
  background: #ff005d;
  color: #fff;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6004c;
}

#cart-close {
  cursor: pointer;
  font-size: 22px;
  transition: color 0.2s;
}

#cart-close:hover {
  color: #ffd6e5;
}

/* Cart content */
.cart-content {
  padding: 15px 20px;
}

.cart-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
}

.cart-item-price {
  font-weight: bold;
  color: #ff005d;
  margin-bottom: 5px;
  font-size: 14px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  background: #f0f0f0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-input {
  width: 40px;
  height: 24px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 5px;
  font-size: 14px;
}

.cart-item-remove {
  position: absolute;
  top: 12px;
  right: 0;
  background-color: #000000;
  border: none;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  color: #ffffff;
  background-color: #ff005d;
}

.empty-cart {
  padding: 30px 0;
  text-align: center;
  color: #999;
  font-size: 16px;
}

.cart-summary {
  padding: 15px;
  background: #f9f9f9;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cart-summary p {
  margin: 8px 0;
  font-size: 16px;
  color: #444;
  display: flex;
  justify-content: space-between;
}

.checkout-btn {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  background: #ff005d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  border-radius: 6px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.go-to-cart-page {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 5px;
  margin-top: 5px;
  font-weight: 500;
}

.checkout-btn:hover {
  background: #e6004c;
}

/* Responsive */
@media (max-width: 815px) {

  .mobile-navbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  /* You can hide your desktop navbar here if needed */

  #header {
    display: none;
  }

  .container {
    width: 100% !important;
  }

  .hero-section>.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0px !important;
    width: 100% !important;
  }

  .left-hero-part {
    width: 100%;
  }

  .right-hero-part {
    width: 100%;
    padding: 30px 30px;
  }

  .sliding-text-wrap {
    width: 100%;
  }

  .pc-building-steps>.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    width: 100% !important;
    padding: 0 20px;
  }

  .fch-info {
    text-align: center;
    margin-bottom: 0px !important;
  }

  .fch-categories-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .fch-categories-wrapper>.fch-card {
    width: auto !important;
  }

  .fch-card>.fch-card-name {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #262626;
    text-align: center;
  }

  .fch-card>.fch-card-icon {
    width: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .poi-wrapper {
    width: 100%;
    background-image: linear-gradient(to right, #071e68, #2590cf);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px;
    gap: 15px;
  }

  .poi-icon-title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .poi-icon {
    margin-right: 0px;
  }

  .poi-t-i {
    text-align: center;
  }

  .poi-t-i>h2 {
    font-size: 24px;
  }

  .poi-t-i>p {
    font-size: 12px;
  }

  .fph-products-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px;
  }

  .fph-product-card {
    width: auto;
    overflow: hidden;
    padding: 10px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .fph-product-prices {
    text-align: center;
  }

  .about-seo-content {
    margin-bottom: 40px;
    padding: 20px;
  }

  .cart-btn {
    display: none;
  }
}

/* Shop Page Styles */
.shop-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.filter-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.filter-section {
  margin-bottom: 25px;
}

.filter-subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.brand-checkbox, .badge-checkbox, .attribute-checkbox {
  display: block;
  margin-bottom: 10px;
}

.brand-checkbox input, .badge-checkbox input, .attribute-checkbox input {
  margin-right: 8px;
}

.filter-btn {
  width: 100%;
  padding: 12px;
  background-color: #2590cf;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn:hover {
  background-color: #1a7baf;
}

.shop-main {
  flex: 1;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.shop-title {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.shop-controls {
  display: flex;
  gap: 20px;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-group label {
  font-size: 14px;
  color: #666;
}

.control-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
/* Shop Page - Collapsible Filters */
@media (max-width: 815px) {
  .shop-sidebar {
    /* Don't hide by default, use transform for sliding effect */
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 0 20px 20px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .shop-sidebar.active {
    transform: translateX(0);
  }
  
  .filter-toggle-btn {
    display: block;
  }
  
  /* Overlay for mobile */
  .filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .filter-overlay.active {
    display: block;
  }
}

/* Desktop - Show sidebar by default */
@media (min-width: 816px) {
  .shop-sidebar {
    background: #fff;
    height: fit-content;
    position: sticky;
    top: 20px;
  }
  
  .filter-toggle-btn {
    display: none;
  }
}

/* Sidebar Search Box */
.sidebar-search-box {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.sidebar-search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.sidebar-search-input:focus {
  border-color: #2590cf;
  box-shadow: 0 0 0 0.2rem rgba(37, 144, 207, 0.25);
}

.sidebar-search-btn {
  background: #2590cf;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.sidebar-search-btn:hover {
  background: #1a7baf;
}

/* Mobile Sidebar Search Box */
.mobile-sidebar-search-box {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-sidebar-search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.mobile-sidebar-search-input:focus {
  border-color: #2590cf;
  box-shadow: 0 0 0 0.2rem rgba(37, 144, 207, 0.25);
}

.mobile-sidebar-search-btn {
  background: #2590cf;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-sidebar-search-btn:hover {
  background: #1a7baf;
}

/* Sidebar Menu */
.sidebar-menu {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.sidebar-menu-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.sidebar-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu-item {
  margin-bottom: 8px;
}

.sidebar-menu-item a {
  text-decoration: none;
  color: #555;
  display: block;
  padding: 8px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.sidebar-menu-item a:hover {
  color: #2590cf;
}

.sidebar-expandable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #eee;
}

.sidebar-expandable:hover {
  color: #2590cf;
}

.sidebar-toggle {
  font-size: 18px;
  transition: transform 0.3s;
}

.sidebar-submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.sidebar-submenu.active {
  display: block;
}

.has-submenu > .sidebar-expandable .sidebar-toggle {
  transform: rotate(45deg);
}
