/* ========== BASE STYLES ========== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #ffffff;
  text-align: center;
}
html {
  scroll-behavior: smooth;
}

/* Titles */
.title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #444;
}

/* ========== NAVBAR ========== */
.logo {
  position: fixed;
  top: 15px;
  left: 15px;
  height: 100px;
  width: auto;
  z-index: 2000;
}

.cart-button {
  position: fixed;
  top: 20px;       /* distance from top */
  right: 20px;     /* distance from right */
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 3000;   /* keep it above navbar/content */
  transition: background 0.3s;
}

.cart-button:hover {
  background: #d4a743;
}

.navbar {
  position: absolute;
  top: 20px;
  right: 40px;
  background: transparent;
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 500;
  z-index: 1500;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("Gemini_Generated_Image_qusrrtqusrrtqusr.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-image 1s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero .overlay {
  position: relative;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Buttons inside hero */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn.filled {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
}

.btn.filled:hover {
  background: #d4a743;
}

.btn.outline {
  background: white;
  color: black;
}

.btn.outline:hover {
  background: #eee;
  color: #810808;
}

/* ========== PRODUCT CARDS & GRID (Unified) ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

 .product-card {
    width: 220px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  }

  .product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .product-card-link:hover .product-card {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.product-card img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 16px;
  margin: 5px 0;
  color: #222;
}

.product-price {
  margin: 10px 0;
  font-size: 15px;
}

.product-price .new,
.price .new {
  color: green;
  font-weight: bold;
}

.product-old-price {
  display: none; /* element is still in DOM, JS can access it */
}
.product-price .old,
.price .old {
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}

.product-card button {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #d4a743;
}

/* ========== SPECIAL STATES (Coming Soon / Sold Out) ========== */
.product-card.coming-soon {
  filter: blur(2px) grayscale(80%);
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.product-card.coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
}

.product-card.sold-out {
  filter: grayscale(100%) brightness(70%);
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.product-card.sold-out::after {
  content: "SOLD OUT";
  position: absolute;
  top: 20px;
  right: -40px;
  transform: rotate(45deg);
  background: red;
  color: white;
  font-size: 1em;
  font-weight: bold;
  padding: 5px 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ========== VALUES SECTION ========== */
.values {
  text-align: center;
  padding: 60px 20px;
  background: #f9fbfd;
}

.values-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #0a2540;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
  font-size: 18px;
  margin: 15px 0;
  color: #003366;
}

.value-card p {
  font-size: 14px;
  color: #555;
}

.value-card .icon {
  font-size: 30px;
  color: #007bff;
}

/* ========== FOOTER ========== */
.footer {
  background: #f9fbfd;
  padding: 40px 20px;
  margin-top: 50px;
  color: #333;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #003366;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.socials img {
  width: 24px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .navbar {
    top: 10px;
    right: 15px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .logo {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .logo {
    height: 55px;
  }
}















body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ccc;
}

.cart-list {
  border-bottom: 1px solid #eee;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.cart-item img {
  width: 80px;
  height: auto;
  margin-right: 15px;
  border-radius: 6px;
}

.item-details {
  flex-grow: 1;
}

.price {
  color: #000;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.quantity button {
  padding: 4px 10px;
  font-size: 16px;
  cursor: pointer;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: red;
}

.summary {
  margin-top: 20px;
  padding-top: 10px;
}

.summary p, .summary h4 {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.checkout-btn {
  margin-top: 10px;
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}
