* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #1a001f, #2d004d, #1a001f);
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #e91e63;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #c2185b;
}

/* Crystals Section */
.crystals-section {
  padding: 4rem 1rem;
  background: #12001a;
}

.crystals-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: #2e003e;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #4a005c;
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}

.card span {
  font-size: 0.8rem;
  color: #999;
}

/* Order Section */
.order-section {
  padding: 4rem 1rem;
  background: linear-gradient(to right, #310031, #1a0033);
}

.order-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.order-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.order-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.price-box {
  background-color: #2e003e;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

.discounted-price {
  font-size: 2.5rem;
  color: #ff4081;
  font-weight: bold;
}

.offer-text {
  color: #66bb6a;
  font-size: 1.2rem;
}

.features-box ul {
  list-style: none;
  background-color: #2e003e;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-box li {
  margin-bottom: 0.6rem;
}

.cart-btn {
  margin-top: 2rem;
  display: block;
  text-align: center;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #4caf50;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #388e3c;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Links for T&C and Privacy Policy */
.terms-link, .privacy-link {
  color: #e91e63;
  text-decoration: underline;
  margin: 1rem;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}