/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(120deg, #000000, #1a1a1a);
  color: #fff;
  overflow-x: hidden;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

a {
  color: #fff;
  text-decoration: none;
}
.top-banner {
  width: 100%;
  background: linear-gradient(90deg, #0ff 0%, #2c5364 100%);
  color: #111;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 0;
  letter-spacing: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Header */
header {
  position: fixed;
  top: 42px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}
/* Add this to your style.css */
.nav-links .cart-link {
  font-size: 1.3rem;
  margin-left: 0.5rem;
  color: rgb(4, 243, 252);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links .cart-link:hover {
  color: #fff;
}
.nav-links .login-link {
  font-size: 1rem;
  margin-left: 0.5rem;
  color: rgb(0, 247, 255);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links .login-link:hover {
  color: #fff;
}
.nav-links .search-link {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  color: rgb(1, 248, 248);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links .search-link:hover {
  color: #fff;
}
.nav-links .wishlist-link {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  color: rgb(0, 250, 250); /* Yeh color bright hai, dikh jayega */
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links .wishlist-link:hover {
  color: #fff;
}
.newsletter {
  margin: 2rem auto 0 auto;
  text-align: center;
}
.newsletter input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 20px;
  border: none;
  margin-right: 0.5rem;
  outline: none;
}
.newsletter button {
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  border: none;
  background: #0ff;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter button:hover {
  background: #203a43;
  color: #fff;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0ff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8%;
  min-height: 80vh;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}
.wave {
  position: relative;
  width: 100%;
  margin-top: -5px;
}
.wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.buy-btn {
  padding: 12px 24px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.buy-btn:hover {
  background-color: #444;
  transform: scale(1.05);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 50px 20px;
  background: #111;
  color: white;
}

.feature-card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.products {
  padding: 60px 10%;
  background: #0c0c0c;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.product-card {
  position: relative;
  width: 250px;  /* pehle agar 180 ya 200 tha to */
  height: 370px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-details {
  background: #fff;
  color: #222;
  padding: 12px 10px 10px 10px;
  text-align: left;
  border-top: 1px solid #eee;
}
.product-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-price {
  font-weight: bold;
  color: #000000;
  font-size: 1.1rem;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 20px;
  transition: bottom 0.4s ease;
}

.product-card:hover .product-info {
  bottom: 0;
}

.product-info h3 {
  margin: 0 0 1px;
  font-size: 1.2rem;
}

.product-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-info ul li {
  font-size: 0.9rem;
  line-height: 1.4;
}
/* Testimonials Section */
.testimonials {
  background: linear-gradient(120deg, #1a1a1a 60%, #203a43 100%);
  padding: 60px 0 40px 0;
  text-align: center;
}

.testimonials h2 {
  color: #0ff;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-box {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,255,255,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 340px;
  min-width: 260px;
  color: #fff;
  margin: 0 auto;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,255,255,0.08);
  position: relative;
}

.testimonial-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,255,255,0.18);
  border-color: #0ff;
}

.testimonial-box p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #e0f7fa;
}

.testimonial-box strong {
  color: #0ff;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
