 
    :root {
      --indigo: #4B0082;
      --lavender: #B57EDC;
      --teal: #5F9EA0;
      --sage: #8A9A5B;
      --sand: #E6D3A7;
      --sunset: #FF6F61;
      --sky: #87CEFA;
      --mint: #98FF98;
      --coral: #FF7F50;
      --bg-gradient: linear-gradient(135deg, var(--indigo), var(--lavender), var(--sky), var(--mint));
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #f4f4f8;
      color: #333;
      animation: fadeIn 2s ease-in-out;
    }

    header {
      background: #fff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .logo {
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--indigo), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

  nav a {
  position: relative;
  text-decoration: none;
  color: var(--indigo);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.4s ease;
  overflow: hidden;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
 width: 100%;
max-width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--lavender), var(--teal), var(--sage), var(--sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  border-radius: 2px;
}

nav a:hover::after {
  transform: scaleX(1);
}


    .hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(-45deg, #4B0082, #B57EDC, #5F9EA0, #8A9A5B, #E6D3A7);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animated-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.animated-blobs span {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.animated-blobs span:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.animated-blobs span:nth-child(2) {
  top: 40%;
  left: 70%;
  animation-delay: 3s;
}
.animated-blobs span:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.2); }
  100% { transform: translateY(0) scale(1); }
}


    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      animation: slideInTop 1.5s ease;
    }

    .hero p {
      font-size: 1.5rem;
      max-width: 700px;
      animation: fadeIn 2s ease-in-out 0.5s both;
    }

    .btn {
      margin-top: 30px;
      padding: 15px 35px;
      font-size: 1.1rem;
      background: var(--sunset);
      color: white;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s, transform 0.3s;
    }

    .btn:hover {
      background: var(--coral);
      transform: scale(1.1);
    }

    .content-section {
      padding: 80px 60px;
      background: white;
      text-align: center;
      animation: fadeInUp 1.5s ease;
    }

    .mission-points {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .point {
      background: var(--mint);
      padding: 20px;
      border-radius: 12px;
      flex: 1 1 250px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .point:hover {
      background: var(--teal);
      color: white;
      transform: translateY(-10px);
    }

    .team-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .member {
      background: var(--sky);
      padding: 20px;
      border-radius: 12px;
      max-width: 220px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .member:hover {
      transform: scale(1.05);
      background: var(--lavender);
      color: white;
    }

    .member img {
      width: 100%;
      height: auto;
      border-radius: 100px;
      margin-bottom: 15px;
    }

    .mega-footer {
  background: #1a1a1a;
  color: #eee;
  padding: 80px 40px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 2rem;
  background: linear-gradient(90deg, #4B0082, #B57EDC, #5F9EA0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
  opacity: 0.85;
}

.footer-links h3,
.footer-contact h3,
.footer-legal h3,
.footer-newsletter h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-legal ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: #B57EDC;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 6px;
  opacity: 0.85;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter input {
  padding: 10px;
  border-radius: 25px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  background: linear-gradient(to right, #5F9EA0, #8A9A5B);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: linear-gradient(to right, #8A9A5B, #5F9EA0);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
  background: linear-gradient(120deg, #f7f7f7, #eaeaea);
}

.product-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(75, 0, 130, 0.15);
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  transform: rotate(30deg);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(75, 0, 130, 0.3);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.rating {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #ffc107;
}

.price {
  font-size: 1rem;
  color: #4B0082;
  font-weight: bold;
  margin-bottom: 12px;
}

.card-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.add-to-cart,
.buy-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.add-to-cart {
  background: linear-gradient(45deg, #8A9A5B, #5F9EA0);
  color: white;
}

.add-to-cart:hover {
  background: linear-gradient(45deg, #5F9EA0, #B57EDC);
  transform: scale(1.05);
}

.buy-btn {
  background: linear-gradient(45deg, #4B0082, #B57EDC);
  color: white;
}

.buy-btn:hover {
  background: linear-gradient(45deg, #B57EDC, #4B0082);
  transform: scale(1.05);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.6) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75,0,130,0.4), rgba(150,100,200,0.4));
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

/* Gentle pulsating overlay */
@keyframes overlayPulse {
  from { opacity: 0.5; }
  to { opacity: 0.3; }
}

.store-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.interactive-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #4B0082, #B57EDC, #5F9EA0);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.floating-icons span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}

.floating-icons span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.floating-icons span:nth-child(2) { top: 40%; left: 75%; animation-delay: 2s; }
.floating-icons span:nth-child(3) { top: 60%; left: 30%; animation-delay: 4s; }
.floating-icons span:nth-child(4) { top: 80%; left: 60%; animation-delay: 6s; }

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
  100% { transform: translateY(0px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

#typewriter-text {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  border-right: 2px solid white;
  animation: typing 4s steps(30, end) forwards, blink 0.7s infinite;

  background: linear-gradient(to right, #ffffff, #ffeb3b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}

.hero-search {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 10px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  outline: none;
  width: 220px;
}

.hero-search input::placeholder {
  color: #ddd;
}

.hero-search button {
  background: linear-gradient(90deg, #4B0082, #B57EDC, #5F9EA0);
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-search button:hover {
  transform: scale(1.05);
}

#no-results {
  font-size: 1rem;
  font-weight: 600;
  animation: fadein 0.5s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  transition: opacity 0.3s ease;
}


   .checkout-container {
      max-width: 800px;
      margin: 80px auto;
      background: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .checkout-container h2 {
      text-align: center;
      margin-bottom: 30px;
      background: linear-gradient(90deg, var(--indigo), var(--lavender));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    .cart-items {
      margin-bottom: 30px;
    }
    .cart-item {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }
    .total {
      text-align: right;
      font-weight: bold;
      font-size: 1.2rem;
      margin-top: 20px;
    }
    .checkout-btn {
      display: block;
      width: 100%;
      margin-top: 30px;
      padding: 14px;
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .checkout-btn:hover {
      background: var(--indigo);
    }
    .popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px 40px;
  max-width: 500px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease;
}

.popup-box h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.popup-box p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.popup-box a {
  color: var(--misty-teal);
  text-decoration: underline;
  font-weight: bold;
}

.popup-box input[type=checkbox] {
  margin-right: 8px;
}

#continue-btn {
  padding: 10px 24px;
  background: var(--gradient);
  color: indigo;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

#continue-btn:disabled {
  background: var(--lavender);
  cursor: not-allowed;
}

.rate-us {
  max-width: 700px;
  margin: 80px auto;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.rate-us h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.rate-us p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  margin-bottom: 20px;
}

.star.selected,
.star:hover,
.star:hover ~ .star {
  color: gold;
  transition: color 0.3s;
}

.rate-message {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: vertical;
  margin-bottom: 20px;
}

.rate-submit {
  padding: 12px 28px;
  background: var(--gradient);
  color: indigo;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}

.rate-submit:hover {
  transform: scale(1.05);
}
.wcg-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.chat-toggle {
  background: var(--gradient);
  color: white;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-window {
  background: url("https://static.vecteezy.com/system/resources/previews/009/344/313/large_2x/science-background-doodle-style-illustration-vector.jpg") center/cover no-repeat;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow: hidden;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  height: 460px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,0.1);
}

/* Overlay layer to darken background slightly */

.chat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.chat-header {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  z-index: 1;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 0 5px #fff;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 0.92rem;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-messages div {
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 85%;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 0 3px rgba(255,255,255,0.8);
  word-wrap: break-word;
}

.chat-messages div:nth-child(odd) {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  align-self: flex-start;
}

.chat-messages div:nth-child(even) {
  background: rgba(90, 200, 250, 0.2);
  color: #ffffff;
  align-self: flex-end;
}

#user-input {
  padding: 12px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.85);
  color: #1f1f1f;
  z-index: 1;
  position: relative;
  width: 100%;
  border-top: 1px solid #ccc;
}

#send-btn {
  padding: 12px;
  border: none;
  background: var(--gradient, linear-gradient(90deg, #4B0082, #B57EDC));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 1;
  position: relative;
  transition: background 0.3s ease;
}

#send-btn:hover {
  background: var(--misty-teal, #5F9EA0);
}




    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInTop {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes zoomIn {
      from { transform: scale(0.95); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media(max-width: 768px) {
      .hero h1 { font-size: 2.5rem; }
      .hero p { font-size: 1.1rem; padding: 0 10px; }
      nav ul { flex-direction: column; gap: 10px; }
    }
  @media (max-width: 600px) {
  .container,
  .product-card,
  .chat-window,
  .footer,
  .rate-us,
  .hero,
  .store-hero {
    width: 100%;
    padding: 0 16px;
  }

  .hero h1,
  .store-hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
