@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;
}


@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;
  }

  .add-account-pc{
    display: none;
    
  }

  .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: 500px;
  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;
}

@media (max-width: 768px) {
  .display-content {
    display: none;
  }
}

.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;
}