*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
}
.top-container{
  padding-top: 8vh;
  min-height: calc(100vh - 8vh);
  width: 100vw;
}
.main{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 8vh;
  border-bottom: 1px solid white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0 2vw ;
  background-color: black;
  z-index: 100;
}

.header-left, .header-right{
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-left img{
  height: 18px;
}

.nav{
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav:hover{
  color: #ccc;
}

.dropdown{
  position: relative;
}
.dropdown-content{
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color:#F5F5F5;
  border:1px solid grey ;
  z-index: 10;
  width: 210px;
}

.dropdown-content a{
  text-decoration: none;
  color: #1c1c1c;
   font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-toggle{
  text-decoration: none;
  color: white;
   font-size: 18px;
  font-weight: 500;
}

.dropdown:hover .dropdown-content{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.7vw;

}


.navi{
  height: 22px;
  width: 22px;
  object-fit: contain;
  cursor: pointer;
  transform: opacity 0.3s ease;
}

.nav-profile{
  border-radius: 50%;
}

.navi:hover{
  opacity: 0.7;
}

.header-right{
  gap: 1.5rem;
}

.menu-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
@media (max-width:1000px){

  .menu-icon {
    display: block;
    position: absolute;
    left: 1.3vw;
  }

  .nav{
    display: none;
  } 

  .dropdown-toggle{
    display: none;
  }

  .header-left{
    justify-content: center;
    width: 100%;
  }

  .header-right{
    position: absolute;
    right: 2vw;
    /* top: 2%; */
  }

}

@media (max-width:700px){
  .nav-profile{
    display: none;
  }
}

.home-picture{
  background-image: url('https://nzxt.com/cdn/shop/files/Kraken_Core_KV_1_b5d82f80-c171-4900-b262-6e23f06a9131.png?v=1759329355&width=1600');
  background-size: 100% 100%;
  
  background-repeat: no-repeat;
    margin: auto;
    width: 95vw;
    height: 57vh;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .home-picture h1{
    font-size: 2.4rem;
  }

  #p3{
    max-width: 24vw;
  }

.home-picture button {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5vh;
}

.home-picture button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-style{
  text-decoration: none;
  color: black;
}

@media (max-width:1000px){
  .home-picture{ background-image: url("https://nzxt.com/cdn/shop/files/Kraken_Core_KV_mobo_EN_2.jpg?v=1759330012&width=1000");
  background-size:100%;
  /* background-position: center bottom; */
  background-repeat: no-repeat;
  height: 160vw;
  justify-content: start;
  }
  #space{
    display: none;
  }
  #p3{
    max-width: 90vw;
  }
}


.section-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.section-content{
  margin-bottom: 2vh;
  /* border: 1px solid red; */
  margin: auto;
  width: 90vw;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;


}

.frame{
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  /* border: 1px solid blue; */
}

 .product-image-wrapper{
  position: relative;
  background-color: #f5f5f5;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
 } 

.frame img{
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  background-color: #f1f1f1;
}

.wishlist-icon{
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #9333ea;
  cursor: pointer;
  transition: transform 0.2s ease;
} 

.wishlist-icon:hover{
  transform: scale(1.2);
}

.content-name{
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #000;
}
.content-desc{
   /* margin-bottom: 0.75rem; */
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  /* min-height: rem; */
}
.rating{
  display: flex;
  align-items: center;
  /* gap: 0.5rem; */
  /* margin-bottom: 0.75rem; */
}
.rating-text{
  font-size: 0.85rem;
  color: #666;
}

.stars{
  color: #9333ea; /* Purple color */
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.scroll-container::-webkit-scrollbar {
  width: 0; /* Hides scrollbar in Chrome, Edge, Safari */
}

.btn-viewAll{
  display: flex;
  justify-content: center;
}

.btn-viewAll button{
  width: 9vw;
  min-width: 100px;
  min-height: 40px;
  background-color:black;
  color:white;
  font-weight: 550;
  font-size: clamp(0.8rem, 1rem, 1.1rem);
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  margin-top:6vh;
}
.btn-viewAll button:hover{
  background-color: #f5f5f5;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1000px){
  .btn-viewAll button{
    width: 9vw; 
    min-width: 150px;
    font-size: clamp(0.75rem, 0.9rem, 1rem);
    padding: 12px 28px;
  }
}

hr{
  margin: auto;
  width: 90vw;
  margin-top: 6vh;
  opacity: 0.5;
}
.section-heading h2{
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
}

.tabs{
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.tab{
  background: none;
  border: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.5rem 2rem 1rem;
  cursor: pointer;
  color: black;
  transition: color 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab.active{
  color: #000;
  border-bottom: 3px solid #333;
}


.reviews-section{
  margin: 6vh auto;
  width: 100%;
  padding: 0 5vw;
}

/* Reviews Header Styling */
.reviews-header{
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

/* Overall Rating Stars */
.overall-rating .stars{
  color: #9333ea;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.overall-rating .half-star{
  color: #9333ea;
  opacity: 0.5;
}

.review-count{
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Reviews Container with Navigation */
.reviews-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 90vw;
  max-width: 1200px;
  gap: 1rem;
  margin: auto;
}


/* Reviews Content Container (Scrollable)*/
.reviews-content{
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.reviews-content::-webkit-scrollbar{
  display: none;
}

/* Individual Review Card */
.review-card{
  flex: 0 0 auto;
  width: 350px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Review Image Container */
.review-image{
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.review-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* More Images Badge */
.more-images{
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Review Info Section */
.review-info{
  padding: 1.5rem;
}

/* Reviewer Information */
.reviewer{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Reviewer Avatar (Initials) */
.reviewer-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  flex-shrink: 0;
}

/* Reviewer Details */
.reviewer-details h3{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #000;
}

/* Verified Buyer Badge */
.verified{
  font-size: 0.85rem;
  color: #666;
}

/* Product Being Reviewed */
.reviewing{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Product Thumbnail */
.product-thumb{
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Reviewing Label */
.reviewing-label{
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.2rem;
}

/* Product Name in Review */
.reviewing .product-name{
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

/* Review Rating Section */
.review-rating{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

/* Star Rating in Review */
.review-rating .stars{
  color: #9333ea;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Review Date */
.review-date{
  font-size: 0.85rem;
  color: #999;
}

/* Review Title */
.review-title{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
  line-height: 1.4;
}

/* Review Text Content */
.review-text{
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

/* Review Helpful Section */
.review-helpful{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.85rem;
  color: #666;
}

/* Helpful Buttons (Thumbs Up/Down) */
.helpful-btn{
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.helpful-btn:hover{
  background: #e0e0e0;
  border-color: #999;
  transform: translateY(-2px);
}

.helpful-btn:active{
  transform: translateY(0);
}

/* Tablet Devices */
@media (max-width: 768px){
  .reviews-header h2{
    font-size: 1.5rem;
  }

  .overall-rating .stars{
    font-size: 1.3rem;
  }

}

@media (max-width: 480px){
  .reviews-section{
    padding: 0 2vw;
  }

  .reviews-header h2{
    font-size: 1.3rem;
  }

  .overall-rating .stars{
    font-size: 1.1rem;
  }

  .review-count{
    font-size: 0.85rem;
  }

  .review-card{
    width: 280px;
  }

  .review-image{
    height: 220px;
  }

  .review-info{
    padding: 1rem;
  }

  .reviewer-avatar{
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .reviewer-details h3{
    font-size: 0.9rem;
  }

  .review-title{
    font-size: 0.95rem;
  }

  .review-text{
    font-size: 0.85rem;
  }

  .play-button{
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Very Small Devices */
@media (max-width: 360px){
  .review-card{
    width: 260px;
  }

  .review-image{
    height: 200px;
  }

  .review-info{
    padding: 0.8rem;
  }
}


.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 80px 30px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  
}

.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #bbb;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #9b4de3;
}

/* RIGHTMOST COLUMN (ABOUT) */
.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
}

/* Social Icons  */
.social-icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.social-icons a {
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #9b4de3;
}

.language-row {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.language-item img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

/* Bottom links */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom ul li a {
  color: #999;
  text-decoration: none;
}

.footer-bottom ul li a:hover {
  color: #9b4de3;
}

.footer-bottom p {
  margin: 10px 0 0;
  color: #888;
}

/* chat icons  */
.chat-icon {
  position: fixed;
  bottom: 12px;
  right: 12px;
  transform: translate(-50%);
  background:linear-gradient(180deg, #a24ef0, #7a23d6);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 30px rgba(155, 77, 227, 0.35), (0 2px 6px rgba(0, 0, 0, 0.2));
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.chat-icon:hover {
  transform: translate(-50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(155, 77, 227, 0.45), (0 4px 12px rgba(0, 0, 0, 0.25));
}

.chat-icon:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 77, 227, 0.5);
}

@media(max-width: 480px){
  .chat-icon {
    right: 10px;
    bottom:10px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 30px;
  }
}

