.hero-gif {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* ============================
    FAVICON
============================ */

.favicon {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  overflow: hidden;
}

/* ============================
    GLOBAL RESET & BASE
============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #fff;
  min-height: 100vh;
}

/* ============================
    HEADER
============================ */

header {
  background: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px;
  max-width: 1200px;
  margin: 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px #000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-weight: bold;
  font-size: 1.2em;
}
.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px; /* adjust spacing between logo and text */
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
}

/* ============================
    HERO SECTION
============================ */

.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  max-width: 800px;
  margin: 50px auto;
  color: #fff;
  overflow: hidden;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  transition: opacity 0.5s ease;
  z-index: 1;
  position: relative;
}

.hero p {
  font-size: 1.2em;
  color: #ccc;
  z-index: 1;
  position: relative;
}

#particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ============================
    HOME PAGE CARDS
============================ */

.home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
}

.home-card {
  background: rgba(255, 255, 255, 0.05);
  border:none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  width: 300px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  color: #ddd;
  box-shadow: none;
}

.home-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-card h2 {
  color: #00bfff;
  margin-bottom: 15px;
}

.home-card p {
  color: #ccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.home-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #00bfff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.home-card .btn:hover {
  background: #009acd;
}

/* ============================
    ABOUT PAGE
============================ */

.content.about {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background:none;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.content.about h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.content.about .tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
}

.vision-section,
.mission-section,
.values-section,
.team-section {
  margin-top: 40px;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.values-list li {
  background:white;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1em;
}

.values-list li strong {
  color: #000;
}

.values-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.team-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: none;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.team-card:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

/* --- Team Section --- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px); /* glass blur effect */
  border:none;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.1);
}

.team-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #00bfff;
}

.team-card p {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.4;
}

/* ============================
    CONTACT PAGE
============================ */

body.contact-page {
  background: #000;
  color: #fff;
}

.contact-section {
  background:black;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 20px;
  align-items: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
}

.contact-text {
  flex: 1 1 300px;
}

.contact-text h1 {
  color: #00bfff;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
}

.contact-text a {
  color: #00bfff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-image {
  flex: 1 1 300px;
  text-align: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* ============================
    KITS PAGE
============================ */

.kits-section {
  padding: 50px 20px;
  text-align: center;
}

.kits-section h1 {
  color: #00bfff;
  margin-bottom: 40px;
}

.kits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.kit-card {
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  color: #ddd;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.kit-card:hover {
  transform: scale(1.05);
}

.kit-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.kit-card h2 {
  color: #00bfff;
  margin-bottom: 10px;
}

.kit-card p {
  font-size: 0.95em;
  line-height: 1.5;
}

.kit-card .price {
  margin-top: 10px;
  font-weight: bold;
  color: #00ff99;
}

/* ============================
    WORKSHOP PAGE
============================ */

.workshop-info {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  color: #ddd;
}

.workshop-info h1 {
  color: #00bfff;
  margin-bottom: 20px;
}

.workshop-info p {
  line-height: 1.6;
  font-size: 1.1em;
}

.workshop-gallery {
  padding: 40px 20px;
  text-align: center;
}

.workshop-gallery h2 {
  color: #00bfff;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.gallery img {
  width: 300px;
}

.workshop-videos {
  padding: 40px 20px;
  text-align: center;
}

.workshop-videos h2 {
  color: #00bfff;
  margin-bottom: 20px;
}

.video-container video {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.workshop-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  color: #fff;
  border:none;
  border-radius: 12px;
  padding: 30px 20px;
  width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  cursor: pointer;
}

.stat-box h3 {
  font-size: 2.8em;
  color: #00bfff;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.2em;
  color: #ccc;
}

/* ============================
    SERVICES PAGE
============================ */

.services-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
}

.services-section h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #00bfff;
}

.services-section .tagline {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.service-card h2 {
  margin-bottom: 15px;
  color: #00bfff;
}

.service-card p {
  color: #333;
  font-size: 1em;
  line-height: 1.5;
}

.service-card:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 30px #00bfff;
  transform: scale(1.05);
}

.service-card:hover h2 {
  color: #fff;
}

.service-card:hover p {
  color: #ddd;
}

/* ============================
    FOOTER
============================ */

footer {
  text-align: center;
  color: #888;
  font-size: 0.9em;
  padding: 20px;
  background: #111;
  margin-top: 50px;
}

/* ============================
    RESPONSIVE
============================ */

@media (max-width: 768px) {
  header {
    position: relative;
  }

  nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ============================
    FORGEZONE PAGE
============================ */

body.forgezone-page {
  background: #fff;
}

.forgezone {
  padding: 2rem;
  text-align: center;
}

.forgezone h1 {
  font-size: 2.5rem;
  color: #333;
}

.forgezone .tagline {
  margin-bottom: 2rem;
  color: #666;
}

.forgezone .category-filters {
  margin-bottom: 2rem;
}

/* Make category buttons wrap into multiple rows on small screens */
@media (max-width: 768px) {
  .category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .category-btn {
    flex: 1 1 45%;
    min-width: 120px;
    text-align: center;
  }
}

.forgezone .category-btn {
  background: #eee;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.forgezone .category-btn.active,
.forgezone .category-btn:hover {
  background: black;
  color: #fff;
}

.forgezone-content {
  display: flex;
  gap: 2rem;
}

.subcategories {
  min-width: 220px;
}

.subcategories ul {
  list-style: none;
  padding: 0;
}

.subcategories li {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 5px;
  color: #666;
  transition: background 0.3s;
}

.subcategories li:hover,
.subcategories li.active {
  background: rgba(0, 191, 255, 0.3);
  color: #333;
}

.subcategory-group {
  margin-bottom: 20px;
}

.forgezone .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  flex-grow: 1;
}

.forgezone .product-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
  transition: 0.3s;
}

.forgezone .product-card:hover {
  transform: translateY(-5px);
}

.forgezone .product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.forgezone .product-card .discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 3px;
}

.forgezone .product-card .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #bbb;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
}

.forgezone .product-card .wishlist-btn.active {
  color: #e91e63;
}

.forgezone .product-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
}

.forgezone .product-card .stars {
  color: #fbc02d;
  margin: 5px 0;
}

.forgezone .product-card .price {
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.forgezone .product-card .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-left: 10px;
}

.forgezone .product-card p {
  color: #777;
  font-size: 0.9rem;
}

.forgezone .product-card .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

.forgezone .product-card .actions button,
.forgezone .product-card .actions .buy-now {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.forgezone .product-card .actions button {
  background: #ff5722;
  color: #fff;
}

.forgezone .product-card .actions button:hover {
  background: #e64a19;
}

.forgezone .product-card .actions .buy-now {
  background: #fff;
  color: #333;
  border: 1px solid #333;
}

.forgezone .product-card .actions .buy-now:hover {
  background: #333;
  color: #fff;
}
/* Forgezone toolbar inside page */
.forgezone-toolbar {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.forgezone-toolbar input {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.forgezone-toolbar .icon-link {
  position: relative;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
}

.forgezone-toolbar .icon-link span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e91e63;
  color: #fff;
  font-size: 0.7rem;
  border-radius: 50%;
  padding: 2px 5px;
}
.forgezone-toolbar {
  display: flex;
  gap: 15px;
  margin: 1rem auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.forgezone-toolbar input {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.forgezone-toolbar .icon-link {
  position: relative;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
}

.forgezone-toolbar .icon-link span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e91e63;
  color: #fff;
  font-size: 0.7rem;
  border-radius: 50%;
  padding: 2px 5px;
}
.wishlist-cart-container {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.wishlist-cart-container h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.wishlist-items,
.cart-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.wishlist-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wishlist-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.wishlist-card h3 {
  margin: 0;
}

.wishlist-card .price {
  color: #27ae60;
  font-weight: bold;
  display: block;
  margin: 0.5rem 0;
}

.wishlist-card button {
  background: #e74c3c;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.back-link {
  position: absolute;
  right: 20px;
  top: 35px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #555;
}
/* Hide sidebar on mobile */
@media (max-width: 768px) {
  .subcategories {
    display: none;
  }
}
/* Hide sidebar on mobile */
@media (max-width: 768px) {
  .subcategories {
    display: none;
  }

  .category-filters {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px 0;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .subcategory-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
  }

  .subcategory-btn {
    flex: 1 1 45%;
    min-width: 120px;
    background: #eee;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
  }

  .subcategory-btn.active,
  .subcategory-btn:hover {
    background: #ff5722;
    color: #fff;
  }
}
.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.quantity-control button {
  padding: 2px 8px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.quantity-control .qty {
  font-weight: bold;
  min-width: 24px;
  text-align: center;
}
.quantity-control .qty {
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
    .page-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
    }

    .back-btn {
      display: inline-block;
      margin: 20px auto;
      padding: 10px 20px;
      background-color: #ff5722;
      color: #fff;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      text-align: center;
    }

    .back-btn:hover {
      background-color: #e64a19;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    table th, table td {
      border: 1px solid #ddd;
      padding: 10px;
      text-align: center;
    }

    table th {
      background-color: #f2f2f2;
    }

    .empty-message {
      text-align: center;
      margin-top: 50px;
      font-size: 1.5em;
      color: #777;
    }

    .empty-message img {
      max-width: 300px;
      margin-top: 20px;
    }
    .page-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
    }

    .back-btn {
      display: inline-block;
      margin: 20px auto;
      padding: 10px 20px;
      background-color: #ff5722;
      color: #fff;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      text-align: center;
    }

    .back-btn:hover {
      background-color: #e64a19;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    table th, table td {
      border: 1px solid #ddd;
      padding: 10px;
      text-align: center;
    }

    table th {
      background-color: #f2f2f2;
    }

    .empty-message {
      text-align: center;
      margin-top: 50px;
      font-size: 1.5em;
      color: #777;
    }

    .empty-message img {
      max-width: 300px;
      margin-top: 20px;
    }
/* Style your search input with a pill shape and little extended ends */
.forgezone-toolbar input[type="text"] {
  padding: 0.75rem 2.5rem;   /* generous horizontal padding */
  border: none;
  border-radius: 9999px;     /* half-circle ends */
  background: #fefefe;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #333;
  outline: none;
  width: 300px;             /* adjust as needed */
  position: relative;
}

/* Optional: slight “tails” effect */
.forgezone-toolbar input[type="text"]::before,
.forgezone-toolbar input[type="text"]::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 30px;
  background: #fefefe;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -1;
}

.forgezone-toolbar input[type="text"]::before {
  left: -10px;
}

.forgezone-toolbar input[type="text"]::after {
  right: -10px;
}
.subcategory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
  justify-content: center;
}

.subcategory-btn {
  padding: 8px 16px;
  background-color: #f0f0f0;
  color: #222;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subcategory-btn:hover {
  background-color: #e64a19;
}

.subcategory-btn.active {
  background-color: #222;
  color: white;
}
/* Separate hover style for subcategory buttons */
.subcategory-btn {
  transition: all 0.2s ease-in-out;
}

.subcategory-btn:hover {
  background-color: #1e1e1e; /* dark background */
  color: #ffffff; /* white text */
  cursor: pointer;
}

body.cart {
  background: #fff;
  color: #fff;
}
.total-label {
  text-align: right;
}
/* Dark background for the cart table */
table {
  background-color: #000;      /* black table background */
  color: #fff;                 /* white text */
  border-collapse: collapse;
  width: 100%;
}

/* Style header cells */
table th {
  background-color: #fff;      /* dark gray header row */
  color: #000;              /* accent header text color */
}

/* Style body cells */
table td {
  background-color: #fff;      /* black rows */
  color: #fff;
  border: 1px solid #333;
  padding: 10px;
}

/* Optional: Highlight row on hover */
table tr:hover {
  background-color: #222;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:whitesmoke;
  color: #000;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
  margin-left: 10px;
}

.cart-item-details h4 {
  margin: 0 0 5px;
  font-size: 16px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-control button {
  background: #333;
  border: none;
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 3px;
}

.cart-item-price {
  font-weight: bold;
  font-size: 16px;
  margin-left: 10px;
}

.delete-btn {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 20px;
  cursor: pointer;
}

.cart-total {
  margin-top: 15px;
  background: #333;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
}
.wishlist-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wishlist-item {
  display: flex;
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  align-items: center;
}

.wishlist-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 4px;
}

.wishlist-details {
  flex: 1;
}

.wishlist-details h3 {
  margin: 0;
  font-size: 1.2rem;
}

.wishlist-details p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

.price {
  font-weight: bold;
  color: #0f0;
}

.actions {
  margin-top: 0.5rem;
}

.actions button {
  background: #fff;
  border: none;
  padding: 5px 10px;
  color: #000;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.actions button:hover {
  background: #0c0;
}

.wishlist-footer {
  text-align: right;
  margin-top: 1rem;
}

.wishlist-footer button {
  background: #ff0;
  border: none;
  padding: 10px 20px;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.wishlist-footer button:hover {
  background: #cc0;
}
.coupon-section {
  margin-top: 1rem;
}

.coupon-section input {
  padding: 5px;
  width: 200px;
  margin-right: 10px;
  border-radius: 5px;
}

.coupon-section button {
  background:orangered;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.coupon-section button:hover {
  background: #fff;
  color: #000;
}
.cart-footer {
  margin-top: 20px;
  text-align: center;
}

#checkoutBtn {
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#checkoutBtn:hover {
  background-color: #e65c00;
}
.proceed-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.proceed-btn:hover {
  background: linear-gradient(90deg, #ff3300, #cc0000);
  transform: scale(1.05);
}

.proceed-btn:active {
  transform: scale(0.95);
}
.proceed-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-footer {
  display: flex;
  justify-content:center;
  align-items: center;
  padding: 10px 0;
}
.cart-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 20px auto;
}
.cart-item {
  display: flex;
  gap: 20px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  align-items: center;
}
.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}
.item-details {
  flex-grow: 1;
}
.item-details h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.quantity-control {
  display: flex;
  gap: 8px;
  align-items: center;
}
.quantity-control button {
  padding: 5px 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.quantity-control button:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
.item-price {
  font-weight: bold;
  color: #e60000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.item-price button {
  margin-top: 10px;
  padding: 6px 10px;
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.item-price button:hover {
  background-color: #e60000;
  transform: scale(1.05);
}
.cart-total {
  text-align: right;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.total-label {
  font-size: 16px;
}
.coupon-section {
  display: flex;
  justify-content: flex-start; /* Align to left */
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.coupon-section input {
  padding: 8px;
  width: 200px;
}
.coupon-section button {
  padding: 8px 14px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}
.coupon-section button:hover {
  background-color: #cc5200;
}
.empty-message {
  text-align: center;
  font-size: 18px;
  color: #777;
  margin-top: 50px;
}
/* Kits Section Layout */
.kits-section {
  padding: 40px 20px;
  text-align: center;
}

.kits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* Flip Card Styling */
.kit-card {
  perspective: 1200px;
  flex: 1 1 300px;
  max-width: 300px;
}

.card-inner {
  position: relative;
  width: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  min-height: 100%;
}

.kit-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 20px;
  box-sizing: border-box;
}

.card-front img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.card-front h2,
.card-back h3 {
  margin: 10px 0;
  font-size: 1.4em;
  color: #fff;
}

.card-front p,
.card-back ul {
  color: #eee;
  font-size: 14px;
}

.price {
  font-weight: bold;
  color: #ff4d4d;
  margin-top: 10px;
}

.card-back {
  transform: rotateY(180deg);
}

.card-back ul {
  list-style-type: disc;
  margin: 10px 0 0;
  padding-left: 20px;
  text-align: left;
}

/* Make cards auto height based on content */
.card-inner,
.card-front,
.card-back {
  position: relative;
  height: 100%;
}

.kit-card {
  perspective: 1200px;
  width: 300px;
  height: 550px; /* FIXED HEIGHT */
}

.card-inner {
  width: 100%;
  height: 100%;   /* FILL HEIGHT */
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card-front,
.card-back {
  height: 100%;  /* SAME HEIGHT */
  position: absolute;
  top: 0;
  left: 0;
}
.kits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* ← KEY PART */
  gap: 30px;
}
.kits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* ensure equal heights */
  gap: 30px;
}

.kit-card {
  flex: 1 1 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-front,
.card-back {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
}
.srt{
  background-color:red;
}
.kits-note {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #00ff99;
  overflow: hidden;
}

.kits-note marquee {
  white-space: nowrap;
  font-weight: bold;
  font-size: 18px;
  color: red;
}
.sre {
  font-weight: bold;
  color: white;
  animation: glowFade 1s infinite alternate;
}

/* Animation keyframes */
@keyframes glowFade {
  0% {
    opacity: 100;
    color: red;
  }
  100% {
    opacity:100;
    color: transparent;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.value-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.reviews-section {
  margin-top: 4rem;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  height: 150px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  background:white;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  font-size: 1.1rem;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card p {
  margin-bottom: 10px;
}

.testimonial-card span {
  font-weight: bold;
  font-size: 1rem;
  color: #0056b3;
}
.announcement-section {
  margin-top: 3rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  color: #ffd700;
  font-weight: 600;
  font-size: 1.1rem;
}

/* =============== Footer Styles =============== */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  color: #aaa;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px;
}

.footer-section.left {
  text-align: left;
}

.footer-section.center,
.footer-section.right {
  text-align: left;
}

.footer-section .footer-content {
  text-align: left;
}

.footer-section p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #aaa;
}

.footer-section strong {
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #666;
  font-size: 14px;
}
/* ======= TEXT STYLES FOR POLICY & TERMS ======= */

.privacy-main {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.privacy-title {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-title .icon {
  width: 50px;
  height: 50px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.privacy-title h1 {
  font-size: 36px;
  color: white;
}

.privacy-title .tagline {
  color: whitesmoke;
  font-size: 16px;
}

.privacy-section {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.privacy-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.privacy-section h2 .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: white;
  background-color: black;
  border-radius: 100%;
}

.privacy-section p,
.privacy-section ul {
  font-size: 16px;
  color: gray;
}

.privacy-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.privacy-section ul li {
  margin-bottom: 8px;
}
.privacy-section h2 {
  color: #000;
}
