* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4f46e5;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #4f46e5;
}
.search-box {
  position: relative;
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.search-box input {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  outline: none;
}
.fa-magnifying-glass {
  position: absolute;
  right: 10px;
  color: #777;
  cursor: pointer;
}
.icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.icons i {
  font-size: 1.2rem;
  color: #444;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -10px;
  right: 95px;
  background-color: #FD6027;
  color: white;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.btn-primary {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background-color: #4338ca;
}

/* Profile Popup */
.profile-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  margin-top: 70px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: flex-end;
}
.profile-popup.active {
  display: flex;
}
.profile-content {
  background-color: white;
  width: 100%;
  max-width: 250px;
  padding: 1.5rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.profile-header h2 {
  font-size: 1.5rem;
  color: #111827;
}
.close-profile {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #444;
}
.profile-info {
  text-align: center;
}
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.profile-info h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 0.5rem;
}
.profile-info p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.profile-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.profile-socials a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 1.8rem;
}
.profile-socials a:hover {
  color: #4338ca;
}
.logout-btn {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.logout-btn:hover {
  background-color: #b91c1c;
}

/* Cart Popup */
.cart-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-top: 70px;
  z-index: 2000;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: flex-start;
  transition: opacity 0.3s ease, transform 0.3s ease; /* Added transition for smoothness */
}

.cart-popup.active {
  display: flex !important;
  opacity: 1;
  transform: translateX(0); /* Ensure it slides in smoothly */
}

.cart-content {
  background-color: white !important;
  width: 100%;
  max-width: 250px;

  /* ✨ Scrollable height limit */
  max-height: 80vh;

  padding: 1.5rem;
  overflow-y: auto;

  /* Hide scrollbar visually but keep scroll functionality */
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* IE/Edge */

  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(0);
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
  position: relative;
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.cart-content::-webkit-scrollbar {
  display: none;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cart-header h2 {
  font-size: 1.5rem;
  color: #111827;
}
.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #444;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.5rem;
}
.cart-item-info p {
  font-size: 0.9rem;
  color: #4f46e5;
  font-weight: 600;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item-controls input {
  width: 50px;
  padding: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  text-align: center;
}
.cart-item-controls button {
  background: none;
  border: none;
  color: #ea580c;
  font-size: 1rem;
  cursor: pointer;
}
.cart-footer {
  margin-top: 1.5rem;
  text-align: right;
}
.cart-footer h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 1rem;
}
.clear-cart-btn, .checkout-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.5rem;
}
.clear-cart-btn {
  background-color: #dc2626;
  color: white;
}
.clear-cart-btn:hover {
  background-color: #b91c1c;
}
.checkout-btn {
  background-color: #4f46e5;
  color: white;
}
.checkout-btn:hover {
  background-color: #4338ca;
}

.cart-content{
  height: 50%;
}

/* Auth Popup */
.auth-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  margin-top: 70px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: flex-end;
}
.auth-popup.active {
  display: flex;
}
.auth-content {
  background-color: white;
  width: 100%;
  max-width: 250px;
  padding: 1.5rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}
.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.auth-tabs {
  display: flex;
  gap: 1rem;
}
.tab-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.tab-btn.active {
  color: #4f46e5;
  border-bottom: 2px solid #4f46e5;
}
.tab-btn:hover {
  color: #4338ca;
}
.close-auth {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #444;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-form-content {
  display: none;
}
.auth-form-content.active {
  display: block;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 0.3rem;
}
.form-group input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  outline: none;
}
.forgot-password {
  text-align: right;
  margin-top: -1px;
  margin-bottom: 15px;
}
.forgot-password a {
  color: #007bff;
  text-decoration: none;
}
.forgot-password a:hover {
  text-decoration: underline;
}
.form-group input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
}
.auth-btn {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 5px;
  margin-left: 60px;
}
.auth-btn:hover {
  background-color: #4338ca;
}

/* Hero Section */
.hero-section {
  padding: 4rem 2rem;
  background-color: #f4f4f5;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1 1 500px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111827;
}
.hero-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}
.hero-btn {
  background-color: #4f46e5;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.hero-btn:hover {
  background-color: #4338ca;
}
.hero-btn i {
  margin-right: 0.5rem;
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 50%;
}

/* Categories Section */
.categories-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}
.section-header {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: #6b7280;
  margin-bottom: 2rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.category-card {
  background-color: #f9fafb;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card i {
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}
.category-card h3 {
  margin-bottom: 0.5rem;
  color: #111827;
  font-size: 1.2rem;
}
.category-card a {
  text-decoration: none;
  color: #4f46e5;
  font-weight: 500;
  transition: color 0.3s ease;
}
.category-card a:hover {
  color: #3730a3;
}

/* Category Sections */
.category-section {
  padding: 1rem;
  background-color: #f9fafb;
  text-align: center;
  display: none;
  margin: 0;
  box-sizing: border-box;
}
.category-section.active {
  display: block;
}
.category-section .section-header {
  margin: 0;
  padding: 0.5rem 0;
}
@media only screen and (max-width: 768px) {
  .category-section {
    padding: 0.5rem;
    margin: 0;
    padding-top: 0;
  }
  .category-section .section-header {
    padding: 0.25rem 0;
    margin: 0;
  }
  body, main {
    margin: 0;
    padding: 0;
  }
}

/* Shop Section */
.shop-section {
  padding: 4rem 2rem;
  background-color: #f9fafb;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
}
.product-card {
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
}
.product-card img {
  max-width: 100%;
  border-radius: 0.5rem;
}
.product-card h3 {
  font-size: 1.1rem;
  color: #111827;
}
.product-card .price {
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}
.rating {
  color: #fbbf24;
  margin-bottom: 1rem;
}
.add-btn {
  background-color: #4f46e5;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}
.add-btn:hover {
  background-color: #4338ca;
}
.add-btn.go-to-cart {
  background-color: #fbbf24; /* Yellow for Go to Cart */
  color: #111827; /* Dark text for contrast */
}
.add-btn.go-to-cart:hover {
  background-color: #e5a923; /* Slightly darker yellow on hover */
}

/* Deals Section */
.deals-section {
  padding: 4rem 2rem;
  background-color: #fff7ed;
  text-align: center;
}
.deals-section .section-header h2 {
  font-size: 2.25rem;
  color: #b45309;
  margin-bottom: 0.5rem;
}
.deals-section .section-header p {
  color: #92400e;
  margin-bottom: 2rem;
}
.deals-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}
.deals-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(244,162,66,0.2);
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}
.deals-card:hover {
  transform: translateY(-8px);
}
.deals-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.deals-card h3 {
  font-size: 1.2rem;
  color: #b45309;
  margin-bottom: 0.5rem;
}
.deals-card .price {
  margin-bottom: 1rem;
  font-weight: 700;
}
.deals-card .discounted {
  color: #ea580c;
  font-size: 1.3rem;
  margin-right: 0.8rem;
}
.deals-card .original {
  text-decoration: line-through;
  color: #a16207;
  font-weight: 400;
  font-size: 1rem;
}
.deal-btn {
  background-color: #ea580c;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.deal-btn i {
  margin-right: 0.5rem;
}
.deal-btn:hover {
  background-color: #b45309;
}
.deal-btn.go-to-cart {
  background-color: #fbbf24; /* Yellow for Go to Cart */
  color: #111827; /* Dark text for contrast */
}
.deal-btn.go-to-cart:hover {
  background-color: #e5a923; /* Slightly darker yellow on hover */
}
/* Footer */
/* Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 4rem 2rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}
.footer-content {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-logo span {
  color: #fff;
}
.footer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-profile-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.footer-designed {
  font-size: 0.9rem;
  color: #9ca3af;
}
.footer-qr-code {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  background-color: #fff; /* Ensures QR code visibility */
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-socials a {
  font-size: 1.2rem;
  color: #fddf24;
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: #fff;
}
.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #fbbf24;
}
.footer-links i {
  text-align: center;
  font-size: 1rem;
}
.footer-copy {
  text-align: center;
  margin-top: 1.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}
.footer-copy a {
  color: #fbbf24;
  text-decoration: none;
}
@media (max-width: 850px) {
  .footer-profile {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-qr-code {
    margin-top: 0.5rem;
  }
}

/* Mobile Menu */
@media (max-width: 850px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 0.1px 10px rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    z-index: 1001;
    margin-top: 65px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0.5rem 0;
  }
   .search-box {
    display: flex;
    width: 100%;
    margin: 0.5rem 0 1rem;
    padding: 0 1rem;
    justify-content: center;
    position: relative;
    order: 2;
  }

  .search-box input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
  }
  .profile-popup {
    margin-top: 137px;
  }
  .cart-popup {
    margin-top: 137px;
    height: 510px;
  }
  .cart-content{
    height: 460px;
  }
  .auth-popup {
    margin-top: 137px;
  }
  .fa-magnifying-glass {
    position: absolute;
    right: 30px;
    color: #777;
    pointer-events: none;
    font-size: 1rem;
  }
  .nav-toggle {
    display: block;
    z-index: 1002;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  margin-top: 90px;
  right: 200px;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3000;
  font-size: 1rem;
}
.toast.active {
  opacity: 1;
}
.toast.toast-add {
  background-color: #4f46e5;
}
.toast.toast-remove {
  background-color: #ea580c;
}


/* Checkout Popup */
.checkout-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin-top: 70px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.checkout-popup.active {
    display: flex;
}
.checkout-content {
    background-color: white;
    width: 100%;
    max-width: 350px;
    max-height: 80vh;
    padding: 1.5rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}
.checkout-content::-webkit-scrollbar {
    display: none;
}
.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.checkout-header h2 {
    font-size: 1.5rem;
    color: #111827;
}
#close-checkout {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #444;
}
.checkout-step {
    display: none;
}
.checkout-step.active {
    display: block;
}
.checkout-step h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 1rem;
}
.checkout-items {
    max-height: 300px;
    overflow-y: auto;
}
.checkout-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.checkout-item-info {
    flex: 1;
}
.checkout-item-info h4 {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.checkout-item-info p {
    font-size: 0.9rem;
    color: #4f46e5;
    font-weight: 600;
}
.checkout-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checkout-item-controls input {
    width: 50px;
    padding: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    text-align: center;
}
.checkout-item-controls button {
    background: none;
    border: none;
    color: #ea580c;
    font-size: 1rem;
    cursor: pointer;
}
.checkout-footer {
    margin-top: 1.5rem;
    text-align: right;
}
.checkout-footer h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 1rem;
}
.coupon-section {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.coupon-section input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
}
.coupon-section button {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
}
.coupon-section button:hover {
    background-color: #4338ca;
}
.checkout-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}
.checkout-navigation button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
}
#prev-step {
    background-color: #6b7280;
    color: white;
}
#prev-step:hover {
    background-color: #4b5563;
}
#next-step {
    background-color: #4f46e5;
    color: white;
}
#next-step:hover {
    background-color: #4338ca;
}
.delivery-options, .payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.delivery-options label, .payment-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #111827;
}
.order-summary p {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.order-summary span {
    font-weight: 600;
}
@media (max-width: 850px) {
    .checkout-popup {
        margin-top: 137px;
    }
}