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


html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}


.homepage,
.product-page,
.cart-page {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}


/* =========================
   HOMEPAGE
   ========================= */


.homepage {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.35) 0%, transparent 28%),
    radial-gradient(circle at top right, rgba(190, 220, 255, 0.22) 0%, transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,182,193,0.25) 0%, transparent 30%),
    linear-gradient(135deg, #ffd6eb, #f8d9f0, #eef4ff);
  color: #333;
  display: flex;
  flex-direction: column;
}


.title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 5vw, 5rem);
  color: #d63384;
  text-align: center;
  margin: 30px 20px 20px;
  text-shadow:
    0 0 8px rgba(255,255,255,0.5),
    0 0 18px rgba(214,51,132,0.18);
}


.title::after {
  content: " ✦";
  font-size: 2rem;
  color: rgba(241, 111, 241, 0.8);
}


.hero {
  position: relative;
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.12);
}


.hero-wrap {
  position: relative;
  width: 100%;
}


.top-cart {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}


.main-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 1900px;
  margin: 30px auto;
  padding: 0 60px;
  width: 100%;
  flex: 1;
}


.welcome-box {
  width: clamp(260px, 22vw, 340px);
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 22px;
  position: relative;
  background: linear-gradient(135deg, #ffd1e8, #f2d8ff, #f3fff4);
  border: 3px solid rgba(214, 51, 132, 0.25);
  box-shadow:
    0 8px 24px rgba(214, 51, 132, 0.12),
    0 0 18px rgba(247, 121, 182, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.55);
  color: #444;
  line-height: 1.7;
  text-align: left;
  flex-shrink: 0;
}

.welcome-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(218, 213, 247, 0.842), rgba(247,121,182,0.25), rgba(255,255,255,0.35));
  z-index: -1;
  filter: blur(6px);
}

.welcome-box h2 {
  color: #d63384;
  margin-bottom: 16px;
  font-size: 2rem;
}


.section {
  flex: 1;
  width: 100%;
}


.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  column-gap: 60px;
  row-gap: 35px;
  width: 100%;
  margin: 0 auto;
}


.category-card {
  text-align: center;
  transition: transform 0.3s ease;
}


.btn {
  background: linear-gradient(135deg, #c86dd7, #f779b6);
  border: none;
  border-radius: 999px;
  width: 180px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(200, 109, 215, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}


.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(200, 109, 215, 0.45);
}


.category-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 2px solid rgba(214, 51, 132, 0.25);
  box-shadow:
    0 8px 24px rgba(214, 51, 132, 0.12),
    0 0 18px rgba(247, 121, 182, 0.18),
    inset 0 1px 1px rgba(255,255,255,0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================
   PRODUCT PAGES
   ========================= */


.product-page {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left,
      rgba(255,255,255,0.35) 0%,
      transparent 28%
    ),
    radial-gradient(circle at top right,
      rgba(190, 220, 255, 0.22) 0%,
      transparent 30%
    ),
    radial-gradient(circle at bottom right,
      rgba(255,182,193,0.25) 0%,
      transparent 30%
    ),
    linear-gradient(135deg, #ffd6eb, #f8d9f0, #eef4ff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
}


#product-container {
  flex: 1 0 auto;
  width: 100%;
  padding: 20px 20px 0;
}


.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  align-self: flex-start;
}


.header-links {
  display: flex;
  gap: 12px;
}


h1 {
  color: #d63384;
}


a {
  text-decoration: none;
  color: #d63384;
  font-weight: bold;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 30px;
  align-content: start;
  width: 100%;
}


.product-card {
  position: relative;
  background: white;
  border-radius: 18px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 120px;
}


.product-card h3 {
  min-height: 4.2em;
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}


.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}


.product-card img:hover {
  transform: scale(1.06);
}


.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}


.image-modal.open {
  display: flex;
}


.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.image-modal-content img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  cursor: default;
}


.image-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #d63384;
  color: white;
  font-size: 20px;
  cursor: pointer;
}


.price {
  color: #d63384;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 0;
  min-height: 1.5em;
}


.buy-btn-wrapper {
  position: relative;
  display: block;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: auto;
}


.buy-btn {
  margin-top: 12px;
  width: 100%;
  display: block;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c86dd7, #f779b6);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(200, 109, 215, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.buy-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(200, 109, 215, 0.45);
}


/* =========================
   CART PAGE
   ========================= */


.cart-page {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left,
      rgba(255,255,255,0.35) 0%,
      transparent 28%
    ),
    radial-gradient(circle at top right,
      rgba(190, 220, 255, 0.22) 0%,
      transparent 30%
    ),
    radial-gradient(circle at bottom right,
      rgba(255,182,193,0.25) 0%,
      transparent 30%
    ),
    linear-gradient(135deg, #ffd6eb, #f8d9f0, #eef4ff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.cart-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  flex: 1;
}


.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.7);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}


.cart-details {
  flex: 1;
  padding: 0 20px;
}


.remove-btn {
  background: #ff4d6d;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}


.remove-btn:hover {
  background: #e63956;
}


.cart-summary {
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
  padding: 20px;
}


.cart-page .buy-btn {
  width: 400px;
  max-width: 400px;
  min-width: 400px;
  display: block;
  margin: 20px auto 0;
}


.product-page .buy-btn {
  width: 75%;
  max-width: 75%;
  margin: 12px auto 0;
}


.top-cart {
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight: 600;
  color: #d63384;
  text-decoration: none;
}


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


.quantity-controls button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #d63384;
  color: white;
  font-size: 18px;
  cursor: pointer;
}


.quantity-controls button:hover {
  background: #c2186a;
}


.empty-cart {
  text-align: center;
  padding: 80px 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 40px auto;
}


.empty-cart h2 {
  color: #d63384;
  margin-bottom: 12px;
  font-size: 2rem;
}


.empty-cart p {
  color: #555;
  font-size: 1.1rem;
}


.back-link,
.cart-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  justify-content: center;
  text-align: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
  background: linear-gradient(135deg, #c86dd7, #f779b6);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(200, 109, 215, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.back-link:hover, .cart-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(200, 109, 215, 0.45);
}


.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 40px;
}


.continue-shopping-btn {
  width: 220px;
  max-width: 90%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c86dd7, #f779b6);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(200, 109, 215, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}


.continue-shopping-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(200, 109, 215, 0.45);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================
   FOOTER STYLES
   ========================= */


.site-footer {
  width: 100%;
  flex: 0 0 auto;
  margin-top: auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255,182,193,0.25), transparent 25%),
    linear-gradient(135deg, #ffd6eb, #f7c1e3, #efb0db);
  border-top: 2px solid rgba(152, 6, 197, 0.35);
  text-align: center;
}


.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}


.footer-links a {
  text-decoration: none;
  color: #5a4a52;
  font-weight: 500;
  transition: 0.2s ease;
}


.footer-links a:hover {
  color: #d63384;
  transform: translateY(-2px);
}


.footer-bottom {
  font-size: 13px;
  color: rgba(90, 74, 82, 0.7);
}


/* =========================
   TOAST NOTIFICATIONS
   ========================= */


.inline-toast {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%);
  margin-bottom: 0;
  background: #5133d6;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  z-index: 2000;
}


.inline-toast.show {
  opacity: 1;
  transform: translate(-50%, -10px);
}


/* =========================
   MOBILE SCREENS
   ========================= */


@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
  }


  .welcome-box {
    width: 100%;
    max-width: 700px;
  }


  .button-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  body {
    overflow: auto;
  }
}


@media (max-width: 768px) {
  .title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    margin: 18px 12px 14px;
    line-height: 1.05;
  }


  .hero {
    height: 240px;
  }


  .main-content {
    gap: 28px;
    padding: 0 16px;
    margin: 22px auto;
  }


  .welcome-box {
    padding: 20px;
  }


  .button-grid {
    grid-template-columns: 1fr;
    column-gap: 18px;
    row-gap: 18px;
  }


  .category-img {
    height: 180px;
  }


  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }


  .site-header h1 {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
    white-space: normal;
    line-height: 1.1;
    margin-right: 10px;
  }


  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }


  .back-link,
  .cart-link {
    padding: 10px 14px;
    font-size: 0.95rem;
  }


  .product-page .buy-btn {
    width: 140px;
    max-width: 140px;
    min-width: 140px;
    margin: 12px auto 0;
  }


  .buy-btn-wrapper {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }


  .cart-page .buy-btn {
    width: 320px;
    max-width: 320px;
    min-width: 320px;
  }


  .homepage .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 10px 12px;
    gap: 8px;
    position: relative;
    z-index: 3;
  }


  .homepage .title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin: 14px 12px 12px;
    line-height: 1.03;
  }


  .homepage .header-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding-top: 2px;
  }


  .homepage .back-link,
  .homepage .cart-link {
    width: 84px;
    min-width: 84px;
    max-width: 84px;
    padding: 7px 8px;
    font-size: 0.75rem;
  }


  .homepage .hero {
    display: block;
    width: 100%;
    margin-top: 12px;
    position: relative;
    z-index: 1;
  }


  body {
    overflow: auto;
  }


  .top-cart {
    top: 12px;
    right: 12px;
    width: 88px;
    min-width: 88px;
    max-width: 88px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .about-page #product-container {
      grid-template-columns: 1fr !important;
      max-width: 700px;
      padding: 16px;
  }

  .about-page .title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin: 14px 12px 12px;
    line-height: 1.03;
  }

  .about-page .hero {
    height: 240px;
  }

  .about-page .hero-links {
    top: 12px;
    right: 12px;
    gap: 8px;
  }

  .about-page .back-link,
  .about-page .cart-link {
    width: 84px;
    min-width: 84px;
    max-width: 84px;
    padding: 7px 8px;
    font-size: 0.75rem;
  }

  .about-page #product-container {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .about-page .welcome-box {
    width: 100%;
    max-width: 700px;
  }

  .about-page .site-header {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }


  .site-header h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }


  .header-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }


  .cart-page .buy-btn {
    width: 90%;
    max-width: 90%;
    min-width: 0;
  }
}


/* =========================
   TABLET SCREENS
   ========================= */

@media (min-width: 769px) and (max-width: 1023px) {
  .main-content {
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    gap: 22px;
  }

  .welcome-box {
    width: 100%;
    max-width: 700px;
  }

  .button-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-page #product-container {
    grid-template-columns: 1fr;
    max-width: 700px;
    padding: 20px;
  }

  .about-page .hero {
    height: 280px;
  }
}

/* =========================
   LAPTOP SCREENS
   ========================= */

@media (min-width: 1024px) and (max-width: 1440px) {

  .main-content {
    gap: 30px;
    padding: 0 30px;
  }

  .welcome-box {
    width: 280px;
  }

  .button-grid {
    column-gap: 24px;
  }

  .title {
    font-size: 4rem;
  }

}

/* ========================= 
   ABOUT PAGE OVERRIDES
   ========================= */

  .about-page {
    font-family: 'Poppins', sans-serif;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.35) 0%, transparent 28%),
      radial-gradient(circle at top right, rgba(190, 220, 255, 0.22) 0%, transparent 30%),
      radial-gradient(circle at bottom right, rgba(255,182,193,0.25) 0%, transparent 30%),
      linear-gradient(135deg, #ffd6eb, #f8d9f0, #eef4ff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .about-page .site-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  .about-page .header-links {
    display: flex;
    gap: 12px;
  }

  .about-page .header-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
  }

  .about-page main {
    flex: 1;
  }

  .about-page #product-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    background: transparent;
  }

  .about-page #product-container .welcome-box {
    width: 100%;
    margin: 0;
  }

  .about-page #product-container .content-card {
    height: 100%;
  }

  .about-page .site-footer,
  .about-page .site-footer a,
  .about-page .site-footer p {
    font-family: 'Poppins', sans-serif;
  }

  .about-page .site-footer {
    width: 100%;
    flex: 0 0 auto;
    margin-top: auto;
  }
  
  .about-page .cart-link {
  position: relative;
  }

  .about-page .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d63384;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .about-page .hero-wrap {
    position: relative;
    width: 100%;
  }

  .about-page .hero-links {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .about-page .hero-links a {
    position: static;
  }

  /* =========================
   SUCCESS PAGE
   ========================= */

   .success-page {
      font-family: 'Poppins', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.35) 0%, transparent 28%),
        radial-gradient(circle at top right, rgba(190,220,255,0.22) 0%, transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,182,193,0.25) 0%, transparent 30%),
        linear-gradient(135deg, #ffd6eb, #f8d9f0, #eef4ff);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
   
   .success-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
    }

    .success-card {
      width: min(700px, 100%);

      background: linear-gradient(
        135deg,
        #ffd1e8,
        #f2d8ff,
        #f3fff4
      );

      padding: 40px;

      border-radius: 22px;
      position: relative;

      border: 3px solid rgba(214, 51, 132, 0.25);

      box-shadow:
        0 8px 24px rgba(214, 51, 132, 0.12),
        0 0 18px rgba(247, 121, 182, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.55);

      text-align: center;
      color: #444;
      line-height: 1.8;
    }

    .success-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 24px;

      background: linear-gradient(
        135deg,
        rgba(218, 213, 247, 0.842),
        rgba(247,121,182,0.25),
        rgba(255,255,255,0.35)
      );

      z-index: -1;
      filter: blur(6px);
    }

    .success-card h2 {
      color: #d63384;
      font-size: 2.5rem;
      margin-bottom: 24px;
    }

    .success-card p {
      margin-bottom: 16px;
      font-size: 1.05rem;
    }

    .success-card p:last-child {
      margin-bottom: 0;
    }

    .success-page .hero-wrap {
      position: relative;
    }

    .success-page .hero-links {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 10;
    }