@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 65px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  left: 60px;
  top: -30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links i{
  margin-right: 7px;
}

#imtag{
  font-size: 24px;
  position: fixed;
  right: 50px;
  top: 20px;
  color: #ffffff;
}

#imtag:hover{
  cursor: pointer;
  color: #ff9800;
  transition: 0.3s;
}

#itag{
  color: #d9ff00;
}

.navbar a{
  text-decoration: none;
  color: #eee;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links .nav-btn {
  background-color: #ff9800;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links .nav-btn:hover {
  background-color: #ff5722;
}

.menu-icon {
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
}

.nav-links {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 250px;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  padding-top: 2rem;
  transition: left 0.3s ease;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
}

.nav-links.active {
  left: 0;
}

.nav-links li {
  margin: 1rem 0;
  text-align: center;
}

.nav-links .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.nav-links .close-btn:hover {
  transform: rotate(90deg);
}

.logo h4{
  top: 2px;
  position: relative;
}

.search-bar {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  z-index: 1000;
}

.search-bar input {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-results {
  margin-top: 1rem;
  max-height: 300px;
  overflow-y: auto;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.result-item:hover {
  background: #f4f4f4;
}

.result-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.result-item p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.navbar .user-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .user-icon a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar .user-icon i {
  font-size: 1.5rem;
}

.navbar .user-icon span {
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  margin-left: 0.5rem;
}

.navbar .user-icon.mobile-view {
  display: none;
}

.navbar .user-icon:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 0.5rem;
}

.add-account-pc{
  position: relative;
  left: -110px;
}

.downloadApk{
  text-decoration: none;
}

@media (max-width: 768px) {
  #loginRegisterBox {
    display: none;
  }

  .display-content{
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar .user-icon.mobile-view {
  display: flex; 
}

  .phone-logo-pos-x{
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  }

  #imtag{
  right: 20px;
  }

  .menu-icon {
  display: block;
  }

  .nav-links {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 250px;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  padding-top: 2rem;
  transition: left 0.3s ease;
  }

  #add-account{
  left: 45px;
  position: relative;
  }

  #add-account i{
  color: #fff;
  }

  .nav-links.active {
  left: 0;
  }
}

@media (max-width: 768px) {
  .menu-icon {
  display: block;
  }

  .nav-links {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 250px;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  padding-top: 2rem;
  transition: left 0.3s ease;
  }

  .nav-links.active {
  left: 0;
  }

  .nav-links li {
  margin: 1rem 0;
  text-align: center;
  }

  .nav-btn {
  display: none;
  }
}

.scroll-container {
  width: 100%;
  margin-top: 80px;
  overflow: hidden; 
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
}

.scroll-text {
  width: 100%;
  font-family: 'poppins', sans-serif;
  color: black;
  display: inline-block;
  white-space: nowrap;
  font-size: 20px;
  color: #333;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%); 
  }
  100% {
    transform: translateX(-100%);
  }
}

.site-footer {
  background: #0b141d;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
  column-gap: 60px;
  row-gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 280px;
  padding: 0 10px;
}

.footer-col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

.info-box {
  display: flex;
  gap: 12px;
  background: #111a22;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.info-box i {
  color: #ff4a4a;
  font-size: 18px;
  margin-top: 4px;
}

.info-text .line {
  font-size: 13px;
  color: #aaa;
}

.highlight {
  color: #ff4a4a;
  font-weight: bold;
  text-decoration: none;
}

.about-links {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 30px;
}

.about-links li {
  margin-bottom: 10px;
}

.about-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.about-links li a:hover {
  color: #ff4a4a;
}

.footer-middle {
  text-align: center;
  margin-top: 40px;
}

.footer-middle img {
  height: 40px;
  margin: 10px;
  transition: transform 0.2s;
}

.footer-middle img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 20px;
}

.container{
  overflow-x: hidden;
  border: 1px solid #b0b0b0;
  height: 450px;
  width: calc(20% - 10px);
  margin-bottom: 80px;
  margin-left: 5px;
  margin-top: 5px;
  border-radius: 6px;
  box-sizing: border-box;
}

.product-box p {
  position: relative;
  font-family: 'Pacifico', sans-serif;
  cursor: default;
  text-align: center;
  margin-top: 4px;
}


.image img {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container #fs {
  text-align: center;
  font-size: 15px;
}

#fs:hover{
  color: #ED7014;
  text-decoration: underline;
}

.container .pcom {
  text-align: center;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.m-b {
  padding: 10px 20px;
  height: 40px;
  color: #ffffff;
  background: #4e54c8;
  border: none;
  border-radius: 2px;
}

.buy-btn i {
  color: #333;
}

.buy-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.m-b:hover {
  cursor: pointer;
  background-color: #7077ff;
  transition: 0.4s;
}

.m-b:active {
  transform: scale(0.97);
}

#block i{
  color: #c0c0c0;
}

@media (max-width: 1200px) {
  .container {
  width: calc(20% - 10px);
  }
}

@media (max-width: 1024px) {
  .container {
  width: calc(25% - 10px);
  }
}

@media (max-width: 768px) {
  .container{
  width: calc(33.33% - 10px);
  }
}

@media (max-width: 480px) {
  .container{
  width: 90%;
  height: 480px;
  }

  .product-box {
  justify-content: center;
  }
}

::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.extra-eliment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 50px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exe {
  font-family: 'Pacifico', cursive;
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.exp {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.extra-element-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 130px;
  height: 130px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.icon-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.box:hover .icon-text p {
  color: #ff7f00;
}

@media (max-width: 768px) {
  .box {
  width: 100px;
  height: 100px;
  }

  .icon img {
  width: 40px;
  height: 40px;
  }

  .exp {
  font-size: 14px;
  margin-bottom: 15px;
  }

  .exe {
  font-size: 20px;
  }
}

@media (max-width: 480px) {
  .box {
  width: 80px;
  height: 80px;
  }

  .icon img {
  width: 40px;
  height: 40px;
  }

  .exe {
  font-size: 18px;
  }

  .exp {
  font-size: 12px;
  }
}

.extra-element-box a{
  text-decoration: none;
}

.h5 h5{
  color: red;
  text-align: center;
  margin-top: 10px;
}

.container .h5 .hc-5{
  color: red;
  text-align: center;
  margin-top: 10px;
}

.slider {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 50px;
}

.slider img:hover {
  cursor: pointer;
}

.slider img:active {
  transform: scale(0.99);
}

.slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .slider {
    max-width: 90%;
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 480px) {
  .slider {
  max-width: 95%;
  aspect-ratio: 2 / 1;
  }
}


.complain-btn{
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  background-color: #eee;
}

.complain-btn a{
  text-decoration: none;
  color: black;
}

.complain-btn i{
  font-size: 20pt;
  margin-top: 14px;
}

.complain-btn p{
  letter-spacing: 3px;
  position: relative;
  margin-left: -25px;
  color: #eee;
  margin-top: 10px;
}

.complain-btn:hover{
  background-color: #333;
  transition: 0.3s;
}

.complain-btn i:hover{
  color: #ffffff;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .complain-btn {
  display: none;
  }
}

.h4-p, .p4-p {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.img-b{
  margin-left: 55px;
}

.location-container {
  padding: 20px;
  margin-top: 30px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
  background-size: 300% 300%;
  animation: gradientAnimation 6s infinite;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  border-radius: 2px;
  width: 95%;
}

@keyframes gradientAnimation {
  0% {
  background-position: 0% 50%;
  }
  50% {
  background-position: 100% 50%;
  }
  100% {
  background-position: 0% 50%;
  }
}

.location-container .i i {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.location-h3 h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  margin: 10px 0;
}

.location-h4 h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  margin: 10px 0;
}

.find-btn {
  margin-top: 20px;
}

.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
  45deg,
  #ff0000,
  #ff7300,
  #fffb00,
  #48ff00,
  #00ffd5,
  #002bff,
  #7a00ff,
  #ff00c8,
  #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
  background-position: 0 0;
  }
  50% {
  background-position: 400% 0;
  }
  100% {
  background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .location-h3 h3 {
  font-size: 20px;
  }

  .location-h4 h4 {
  font-size: 16px;
  }

  .button-85 {
  padding: 0.5em 1.5em;
  }
}

@media (max-width: 480px) {
  .location-h3 h3 {
  font-size: 18px;
  }

  .location-h4 h4 {
  font-size: 14px;
  }

  .button-85 {
  padding: 0.4em 1.2em;
  font-size: 14px;
  }

  .location-container .i i {
  font-size: 30px;
  }
}

.main-logo{
  height: 50px;
  width: 50px;
  position: relative;
  top: 20px;
}

.main-logo:hover{
  cursor: pointer;
}

@media (max-width:768px) {
  .logo h4{
   display: none;
  }

  .main-logo{
  position: relative;
  top: 2px;
  }
}

.square-icon {
  display: inline-block;
  padding: 5px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 7px;
  line-height: 1;
  position: relative;
  left: -3px;
  top: -2px;
}

.cookies-card {
  width: 280px;
  height: fit-content;
  background-color: rgb(255, 250, 250);
  border-radius: 10px;
  border: 1px solid rgb(206, 206, 206);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  gap: 15px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.066);
  display: none;
}

.cookie-heading {
  color: rgb(34, 34, 34);
  font-weight: 800;
  font-size: 16px;
}

.cookie-para {
  font-size: 11px;
  font-weight: 400;
  color: rgb(51, 51, 51);
}

.button-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-button {
  width: 50%;
  padding: 8px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.accept {
  background-color: rgb(34, 34, 34);
  color: white;
}

.reject {
  background-color: #ececec;
  color: rgb(34, 34, 34);
}

.accept:hover {
  background-color: rgb(0, 0, 0);
}

.reject:hover {
  background-color: #ddd;
}

.exit-button {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.exit-button:hover {
  background-color: #ddd;
  color: white;
}

.svgIconCross {
  height: 10px;
}

@media (max-width: 768px) {
  .cookies-card {
  left: auto;
  right: 20px;
  top: auto;
  bottom: 20px;
  }

  .cookie-heading {
  font-size: 14px;
  }

  .cookie-para {
  font-size: 10px;
  }
}

.cookie-title {
  font-size: 18px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
}

#products{
  width: 70%;
  position: relative;
  left: 50px;
  cursor: pointer;
}

.complain-mobile-btn{
  display: none;
}

@media (max-width: 768px) {
  .complain-mobile-btn{
  display: block;
  }

  .complain-mobile-btn button{
  height: 50px;
  width: 50px;
  position: relative;
  top: 20px;
  font-size: 24px;
  border: none;
  outline: none;
  border-radius: 50%;
  }

  .complain-mobile-btn button:active{
  color: red;
  }

  #report{
  position: relative;
  top: 17px;
  }
}

.ac{
  height: 50px;
  position: fixed;
  right: 50px;
  top: 10px;
  width: 200px;
}

.ac-content{
  position: relative;
  top: 0px;
  right: 30px;
  gap: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ac .acpic img{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 10px;
  margin-left: 15px;
  height: 26px;
  width: 26px;
  pointer-events: none;
}

.ac .ac-content .ac-title{
  text-align: center;
  position: relative;
  cursor: default;
  font-size: 14px;
  left: 75px;
  top: -20px;
}

.ac-reg,
.ac-messge,
.ac-log{
  font-size: 13px;
}

.ac-log{
  color: #878282;
}

.ac-messge{
  color: #bdbbbb;
}

.ac-reg{
  color: #878282;
}

.ac-reg:hover,
.ac-log:hover{
  cursor: pointer;
  color: #FF5C00;
  transition: 0.3s;
  text-decoration: underline;
}

.pcb-spc{
  position: fixed;
  right: 270px;
}

.button-pcb {
  position: relative;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background-color: #007BFF;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
  overflow: hidden;
  z-index: 1;
  animation: pcb-clr 20s ease-in-out infinite;
}

.button-pcb::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2061BE;
  z-index: -1;
  transition: top 0.4s ease;
}

.button-pcb:hover::before {
   top: 0;
}

.button-pcb:hover {
   color: white;
}

@keyframes pcb-clr {
   0% { background-color: #6492f5; }
  10% { background-color: #6ca7e6; }
  20% { background-color: #3399ff; }
  30% { background-color: #1E90FF; }
  40% { background-color: #50c4eb; }
  50% { background-color: #87CEFA; }
  60% { background-color: #7f57ec; }
  70% { background-color: #538af0; }
  80% { background-color: #4169E1; }
  90% { background-color: #2a73e0; }
  100%{ background-color: #68b1ff; }
}

@media (max-width: 768px) {
  .pcb-spc {
    display: none;
  }
  .button-pcb {
    display: none;
  }
}

@media (max-width: 768px) {
  .dropdown_component{
    display: none;
  }
}

.dropdown_component {
  position: fixed;
  top: 20px;
  right: 420px;
  z-index: 9999;
}

.droptext {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 15px;
}

.dropbox {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 4px;
  z-index: 10000;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.dropdown:hover .dropbox {
  display: block;
}

.dropbox a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropbox a:hover {
  background-color: #f0f0f0;
}

.dropbox {
  display: none;
}

.dropbox.show {
  display: block;
}

.more-component{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  background: #aaaaaa;
}

.hide-sysmain {
  display: none !important;
}

@media (max-width: 768px) {
  #sysmain {
    display: block !important;
  }
}

.profile-container {
  position: fixed;
  top: 8px;
  right: 150px;
  display: inline-block;
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 5px;
  position: relative;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 65px;
  background-color: whitesmoke;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  min-width: 150px;
  z-index: 10;
  height: 100px;
  width: 70px;
}

.dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}

#user-profile-icons{
  margin-left: 40px;
}

#sign-out-icons{
  margin-left: 35px;
}

@media (min-width: 769px) {
 .phone-navigation {
   display: none;
  }
}
 
.mobile-tab-menu {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
}

.tab-item {
  flex: 1;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-item.active {
  color: #fff;
  font-weight: bold;
}

.tab-item:hover {
  color: #fff;
}

.tab-content {
  padding: 20px;
  display: none;
}

.tab-content.active {
  display: block;
}

#home , #pc-builder, #account-n{
  display: none;
}

#chatbot-toggler {
  position: fixed;
  bottom: 45px;
  right: 20px;
  height: 50px;
  width: 50px;
  z-index: 1000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  background: #5350c4;
  transition: all 0.2s ease;
}

body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}

#chatbot-toggler span {
  color: #fff;
  position: absolute;
}

body.show-chatbot #chatbot-toggler span:first-child, #chatbot-toggler span:last-child{
  opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child{
  opacity: 1;
}

.chatbot-popup {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  opacity: 0;
  transform: scale(0.2);
  transform-origin: bottom right;
  pointer-events: none;
  box-shadow: 0 0 128px rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  z-index: 9999;
}

body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  background: #5350c4;
  padding: 15px 22px;
  justify-content: space-between;
}

.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-info .chatbot-logo {
  height: 35px;
  width: 35px;
  padding: 6px;
  fill: #5350c4;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}

.header-info .logo-text {
  color: #fff;
  font-size: 1.31rem;
  font-weight: 600;
}

.chat-header #close-chatbot {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.2s ease;
}

.chat-header #close-chatbot:hover {
  background: #3d39ac;
}

.chat-body {
  padding: 25px 22px;
  display: flex;
  gap: 20px;
  height: 460px;
  margin-bottom: 82px;
  overflow-y: auto;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #ccccf5 transparent;
}

.chat-body .message {
  display: flex;
  gap: 11px;
  align-items: center;
}

.chat-body .bot-message .bot-avatar {
  height: 35px;
  width: 35px;
  padding: 6px;
  fill: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
  align-self: flex-end;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  border-radius: 50%;
}

.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
  background: #f2f2ff;
}

.cart-btn-circle {
  position: fixed;
  bottom: 120px;
  right: 20px;
  color: white;
  height: 50px;
  width: 50px;
  z-index: 1000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  background: #5350c4;
  transition: all 0.2s ease;
}

.cart-btn-circle:hover {
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}

.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}

.chat-body .bot-message .message-text {
  background-color: #f2f2ff;
  border-radius: 13px 13px 13px 3px;
}

.chat-body .user-message .message-text {
  color: #fff;
  background-color: #5350c4;
  border-radius: 13px 13px 3px 13px;
}

.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  border-radius: 50%;
  background: #6f6bc2;
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  44% {
  transform: translateY(0);
  }

  28% {
  opacity: 0.4;
  transform: translateY(-4px);
  }

  44% {
  opacity: 0.2;
  }
}

.chat-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 15px 22px 20px;
}

.chat-footer .chat-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 32px;
  outline: 1px solid #cccce5;
}

.chat-footer .chat-form:focus-within {
  outline: 2px solid #5350c4;
}

.chat-form .message-input {
  border: none;
  outline: none;
  height: 47px;
  width: 100%;
  resize: none;
  max-height: 180px;
  white-space: pre-line;
  font-size: 1rem;
  padding: 13px;
  border-radius: inherit;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.chat-form .message-input::hover {
  scrollbar-color: #ccccf5 transparent;
}

.chat-form .chat-controls {
  display: flex;
  height: 47px;
  gap: 3px;
  align-items: center;
  align-self: flex-end;
  padding-right: 6px;
}

.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: #706db0;
  background: none;
  border-radius: 50%;
  transition: 0.2s ease;
}

.chat-form .chat-controls #send-message {
  color: #fff;
  display: none;
  background: #5350c4;
}

.chat-form .message-input:valid ~ .chat-controls #send-message {
  display: block;
}

.chat-form .chat-controls #send-message:hover {
  background: #3d39ac;
}

.chat-form .chat-controls button:hover {
  background: #f1f1f1;
}

.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 3px;
}

em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  max-height: 330px;
  visibility: hidden;
  transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px; 
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  height: 65px;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: white;
}

.cart-header h2 {
  font-size: 18px;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
}

.cart-content {
  padding: 15px;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-container {
  position: relative;
  border: 1px solid #ccc;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-container:hover {
  box-shadow: 0 8px 12px rgba(48, 48, 48, 0.2);
}

.remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.remove-btn:hover {
  color: red;
}

.cart-container .images {
  flex-shrink: 0;
  margin-right: 15px;
}

.cart-container .images img {
  height: 80px;
  width: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-container .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-container .details h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
}

.cart-container .details p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.2;
}

.buy-now {
  margin-top: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.buy-now:hover {
  opacity: 0.85;
}

.cartGap{
  height: 20px;
}

.container {
  position: relative;
  display: inline-block;
}

.stockoutNote {
  position: absolute;
  top: 8px;
  left: 5px;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  pointer-events: none;
  z-index: 10;
}

.stockNote {
  margin: 0;
}

.ReadOnlydescription {
  width: min(960px, 92%);
  margin: 48px auto;
  padding: 0 4px;
}

.content {
  background: #ffffff;
  padding: 32px 32px 28px;
  border-radius: 14px;
  text-align: left; 
}

.content h1 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.2px;
  position: relative;
  text-align: left; 
}

.content h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 8px;
  background: #2563eb;
  border-radius: 999px;
}

.content p {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 16px;
  text-align: left;
}

strong {
  color: #111827;
  font-weight: 700;
}

em {
  color: #2563eb;
  font-style: normal;
  font-weight: 600;
}

:where(a, button, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .container { margin: 28px auto; }
  .content { padding: 22px; }
  .content h1 { font-size: 22px; }
  .content p { font-size: 15px; }
}

@media (max-width: 480px) {
  .cart-sidebar {
  width: 80%;
  }
}

@media screen and (max-width: 600px) {
  .chatbot-popup {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    height: 100%;
  }

  .chat-header .header-info .logo-text {
    font-size: 1.1rem;
  }

  .chat-body {
    height: 100%;
    margin-bottom: 0;
  }

  .chat-body .message .message-text {
    max-width: 85%;
  }

  .chat-footer .chat-form {
    border-radius: 0;
    border-radius: 25px;
  }

  .chat-footer{
    bottom: 40px;
  }

  .chat-footer .chat-form .message-input {
    border-radius: 0;
  }

  .chat-footer .chat-form .chat-controls {
    padding-right: 10px;
  }

  .chat-footer .chat-form .chat-controls button {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 500px) {
  .cart-container {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 10px;
  }

  .cart-container .images {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .cart-container .images img {
    height: 60px;
    width: 60px;
  }

  .cart-container .details h3 {
    font-size: 14px;
    text-align: center;
  }

  .cart-container .details p {
    font-size: 13px;
    text-align: center;
  }

  .buy-now {
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
  }

  .remove-btn {
    top: 5px;
    right: 5px;
    font-size: 18px;
  }
}