* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block; 
}

body {
  overflow-x: hidden; 
}

.right h3{
  text-align: center;
}

.right{
  height: 70vh;
  width: 250px; 
  background-color: grey;
  display: none;
  transition:all ease-in-out 1s;
  margin-top: 8vh;
  border-radius: 15px;
  text-align: center;
  position: absolute; 
  right: 0; 
  z-index: 100; 
}

.circle{
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #000;
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 0.9rem;
}

nav {
  width: 100%; 
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px; 
  padding: 20px 2%; 
  flex-wrap: wrap; 
}

.nav a {
  text-decoration: none;
  font-size: large;
  color: black;
}

.nav img {
  height: 35px;
  object-fit: contain;
}

.nav .icons {
  display: flex;
  gap: 15px; 
  align-items: center;
}
.nav .icons img {
  height: 24px;
}

.top {
  text-align: center;
  margin-top: 5vh;
  width: 100%; 
}

.top h1 {
  font-size: 2rem;
  margin-bottom: 4vh;
}

.images {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px; 
  margin-bottom: 10vh;
  flex-wrap: nowrap; 
  overflow-x: auto; 
  padding: 2vh 1%; 
  scroll-snap-type: x mandatory; 
}

.images::-webkit-scrollbar {
  height: 8px;
  background-color: #f1f1f1;
}
.images::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}


.product, .one, .two {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px; 
  min-width: 200px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px; 
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  scroll-snap-align: start; 
}

.product img {
  width: 160px; 
  height: 160px; 
  object-fit: contain;
  margin-bottom: 8px; 
}


.product:hover,
.one:hover,
.two:hover {
  transform: translateY(-5px);
}

.one img,
.two img {
  width: 140px;  
  height: 140px; 
  border-radius: 10px;
  margin-bottom: 1vh;
  object-fit: contain;
}

.bash {
  font-weight: bold;
  padding-bottom: 0.5vh;
}

.rs {
  padding-bottom: 0.5vh;
  color: #333;
  font-weight: bold;
}

.rs del {
  color: #888;
  font-weight: normal;
}

.star {
  color: black;
  padding-bottom: 0.5vh;
}

.name {
  padding-bottom: 0.5vh;
  color: #555;
  font-size: 0.9rem;
  min-height: 40px; 
}

.buy {
  margin-top: 1vh;
  height: 40px;
  width: 90%;
  background-color: rgb(12, 65, 12);
  text-align: center;
  line-height: 40px;
  border-radius: 120px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.buy:hover {
  opacity: 0.85;
}

.yellow {
  background-color: rgb(221, 221, 79);
}

.black {
  color: black;
}
.sold-out {
  background-color: #a0a0a0; 
  cursor: not-allowed;
  color: white;
}

.sold-out:hover {
  opacity: 1;
}

.links a{
  text-decoration: none;
  color: black;
}
.links{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; 
  gap: 10px; 
  justify-content: center;
  font-weight: bold;
  margin-bottom: 3vh;
  padding: 0 10px; 
  width: 100%; 
}

.img{
  display: flex;
  gap: 10px; 
  padding: 0 1%; 
  flex-wrap: wrap; 
  justify-content: center; 
  width: 100%; 
  margin: 0 auto; 
} 

.grid-image{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-grow: 1; 
  justify-content: center; 
}

.hover {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
}

.hover:hover {
  transform: scale(1.05);
  opacity: 0.9;
  cursor: pointer;
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.aura{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-basis: 55%; 
  flex-grow: 2; 
  max-width: 100%; 
}

.aura img{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px ;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  border-radius: 20px;
}

.aura:hover .overlay{
  opacity: 1;
  transform: translateY(0);
}

.grid-image > div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  width: 250px; 
  height: 250px; 
  flex-grow: 1; 
  max-width: 100%; 
}

.grid-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.grid-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  border-radius: 20px;
}

.grid-image > div:hover img {
  transform: scale(1.05);
}

.grid-image > div:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.b{
  background-color: rgb(0, 0, 0);
}
.b:hover{
  cursor: pointer;
}

.view{
  background: #000;
  color: white;
  display: flex;
  height: 40px;
  width: 160px;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border-radius: 20px;
  cursor: pointer;
}

.cate{
  display: flex;
  justify-content: center;
}
.cate a{
  text-decoration: none;
}

.im{
  margin: 20px auto; 
  padding: 0 0.5%; 
  max-width: 100%; 
}
.im img {
  width: 100%;
  border-radius: 20px; 
}

button{
  border: 2px solid transparent;
}

.categories {
  text-align: center;
  margin-top: 10vh;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; 
  margin: 4vh auto;
  width: 99%; 
  max-width: 1200px; 
  padding: 0 0.5%; 
}

.category-card {
  position: relative;
  height: 60vh;
  min-height: 400px; 
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3vh;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.03);
}

.category-card .outline-text {
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 5rem; 
  font-weight: 800;
  color: transparent;
  z-index: 1;
  line-height: 1;
  word-break: break-word;
  text-align: left;
  max-width: 90%; 
  white-space: pre-wrap; 
}

.category-card p {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2vh;
  background: rgba(0,0,0,0.4);
  padding: 5px 15px;
  border-radius: 10px;
}

.category-card button {
  position: relative;
  z-index: 2;
  background: white;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card button:hover {
  background: #000;
  color: white;
}

.avail{
  display: grid;
  margin-top: 20px;
  gap: 8px; 
  grid-template-columns: repeat(5, 1fr); 
  justify-items: center;
  padding: 0 1%; 
  max-width: 1200px; 
  margin: 20px auto; 
}
.avail img {
  max-width: 100px; 
  object-fit: contain;
}
.press .avail {
  grid-template-columns: repeat(5, 1fr); 
}


.watch {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw; 
  margin: 5vh auto;
  max-width: 1200px;
  padding: 0 1%; 
}

.watch .smart {
  border-radius: 20px;
  width: 500px;
  max-width: 48%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0; 
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 1.5vh; 
  flex-grow: 1; 
}

.content h1 {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
  color: #222;
  margin: 0;
}

.content h1:nth-child(1)::before,
.content h1:nth-child(2)::before,
.content h1:nth-child(3)::before,
.content h1:nth-child(4)::before {
  font-weight: bold;
}

.footer {
  background-color: #f8f8f8;
  padding: 60px 2% 30px; 
  font-family: Arial, sans-serif;
  color: #111;
  margin-top: 5vh;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px; 
}

.footer-column h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-column a[href^="mailto:"] {
  text-decoration: underline;
}

.social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff6600;
}

.signup input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #000;
  outline: none;
}

.signup button {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.signup button:hover {
  background-color: #333;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #333;
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 15px;
}

.smart{
  border-radius: 20px;
}



@media (max-width: 1200px) {
  .img {
    flex-direction: column;
    align-items: center;
  }
  .aura {
    width: 95%;
    flex-basis: auto; 
  }
  .grid-image {
    width: 95%; 
  }
  .grid-image > div {
    width: 48%; 
    height: auto;
  }
  .avail {
    grid-template-columns: repeat(4, 1fr); 
  }
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 98%;
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .img {
    flex-direction: column;
    align-items: center;
  }
  .watch .smart {
    max-width: 50%; 
  }
  .avail {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 900px) {
  .nav {
    justify-content: space-around; 
    padding: 15px;
  }
  .nav .icons {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
  }

  .watch {
    flex-direction: column;
    align-items: center;
    gap: 3vh; 
    padding: 0 15px; 
  }
  .watch .smart {
    width: 90%; 
    max-width: 90%; 
  }

  .content {
    align-items: center;
    text-align: center;
  }

  .content h1 {
    font-size: 1rem;
    text-align: center; 
  }
  .category-card .outline-text {
    font-size: 4rem; 
  }
}


@media (max-width: 768px) {
  .images {
    padding: 2vh 0.5%; 
  }
  .avail {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 0.5%; 
    gap: 5px;
  }

  .product {
    width: 160px; 
    min-width: 160px; 
  }
  .product img {
    width: 130px; 
    height: 130px;
  }

  .grid-image > div {
    width: 48%; 
    height: 180px; 
    min-width: 180px; 
    gap: 5px;
  }
  .aura {
    height: 220px; 
  }

  .footer-container {
    gap: 15px; 
  }
  .content h1 {
    font-size: 0.95rem; 
  }
}



@media (max-width: 600px) {
  .nav {
    flex-direction: column; 
    gap: 10px; 
    padding: 10px;
  }
  .nav a {
    text-align: center;
    font-size: medium; 
  }
  .nav .icons {
    margin-top: 5px;
    gap: 10px; 
  }
  .top h1 {
    font-size: 1.2rem; 
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
  .signup input, .signup button {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
    width: 98%;
    padding: 0 5px;
  }

  .category-card {
    height: 30vh; 
    min-height: 200px; 
  }

  .category-card .outline-text {
    font-size: 2rem; 
    top: 5%; 
    left: 2%; 
  }
  
  .avail {
    grid-template-columns: repeat(2, 1fr); 
    padding: 0 0; 
    gap: 5px;
  }
  .avail img {
    max-width: 90px; 
  }

  .watch .smart {
    width: 95%; 
  }
  .content h1 {
    font-size: 0.8rem; 
    text-align: center;
  }
  .img {
    padding: 0 5px; 
    gap: 5px;
  }
  .grid-image > div {
    width: 100%; 
    min-width: auto; 
    height: 150px;
  }
  .aura {
    height: 180px; 
  }
}


@media (max-width: 400px) {
  .nav a {
    font-size: small;
  }
  .top h1 {
    font-size: 1rem;
  }
  .product {
    width: 140px;
    min-width: 140px;
    padding: 8px; 
  }
  .product img {
    width: 110px;
    height: 110px;
  }
  .name {
    min-height: 25px; 
  }
  .category-card .outline-text {
    font-size: 1.8rem;
  }
  .category-card p {
    font-size: 1.1rem;
  }
  .content h1 {
    font-size: 0.7rem;
  }
  .grid-image > div {
    height: 120px; 
  }
  .aura {
    height: 150px; 
  }
}