/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Boldonse&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}
* {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
.container {
  width: 90%;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: black;
}

/* Header */
header {
  background: blueviolet;
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: -2vh;
}

header a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

header .ml-10 {
  margin-left: 2.5rem;
}

header input[type="text"] {
  padding: 12px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

header button {
  background-color: #febd69;
  color: black;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
header #navbar-toggle {
  display: none;
}

header nav ul {
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 8px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Featured Products */
main {
  background-color: #fff;
  padding: 50px 0;
}

.bg-white {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 28px;
  color: #111;
  margin-bottom: 20px;
}

#products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  color: #111;
  margin: 10px 0;
}

.product-card .price {
  font-weight: bold;
  color: #ff9900;
  font-size: 16px;
}

.product-card .btn-add-to-cart {
  background-color: #febd69;
  color: black;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.product-card .btn-add-to-cart:hover {
  background-color: #ff9900;
}

/* Footer */
footer {
  background-color: #232f3e;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

footer h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

#Search2:hover {
  background: white;
}

footer ul li {
  margin: 5px 0;
}

footer ul li a {
  text-decoration: none;
  color: white;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer .mt-8 {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

footer .mt-8 p {
  font-size: 14px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  header input[type="text"] {
    width: 80%;
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  #products-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  footer .grid {
    grid-template-columns: 1fr;
  }
}
/* Cart Page */
#cart-items .text-center {
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cart-items p {
  font-size: 16px;
  color: #666;
}

#cart-items a {
  color: #0066c0;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

#cart-summary {
  margin-top: 30px;
}

#cart-summary .flex {
  justify-content: space-between;
  margin-bottom: 10px;
}

#cart-summary .font-medium {
  font-size: 18px;
}

#cart-summary .font-bold {
  font-size: 20px;
  color: #111;
}

#checkout-btn {
  background-color: #febd69;
  color: black;
  font-weight: bold;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

#checkout-btn:hover {
  background-color: #ff9900;
}

/* Checkout Page */
#checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

#checkout-form input,
#checkout-form textarea {
  width: 93%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

#checkout-form input[type="text"]:focus,
#checkout-form input[type="email"]:focus,
#checkout-form input[type="tel"]:focus,
#checkout-form textarea:focus {
  outline: none;
  border-color: #febd69;
}

#checkout-form button {
  background-color: #febd69;
  color: black;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

#checkout-form button:hover {
  background-color: #ff9900;
}

/* UPI Payment Section */
#upi-section {
  padding: 20px;
  background-color: #f3f4f6;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#upi-section h4 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

#upi-section p {
  font-size: 14px;
  color: #666;
}

.upi-qr {
  max-width: 150px;
  margin: 10px auto;
}

#upi-id-display {
  font-weight: bold;
  color: #0066c0;
}

/* Footer Styles */
footer {
  background-color: #232f3e;
  color: white;
  padding: 40px 0;
}

footer .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

footer .grid div h3 {
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

footer .grid div ul {
  list-style: none;
  padding-left: 0;
}

footer .grid div ul li a {
  color: white;
  text-decoration: none;
}

footer .grid div ul li a:hover {
  text-decoration: underline;
}

footer .mt-8 {
  border-top: 1px solid #444;
  padding-top: 10px;
}

footer .mt-8 p {
  color: #888;
  font-size: 14px;
}

/* Product Card Hover Effect */
.product-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.product-card img {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

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

/* Modal Styles (If used for checkout or confirmation) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.modal-content {
  background-color: white;
  padding: 20px;
  width: 80%;
  margin: 50px auto;
  border-radius: 8px;
}

.modal-header {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.modal-footer {
  text-align: right;
}

.modal-footer button {
  background-color: #febd69;
  padding: 10px 20px;
  font-weight: bold;
}

.modal-footer button:hover {
  background-color: #ff9900;
}
/* Navbar Hover Effects */
header nav a:hover {
  color: #febd69;
  text-decoration: underline;
}

/* Search Box Hover and Focus Effects */
header input[type="text"]:focus {
  outline: none;
  border-color: #febd69;
  background: white;
  box-shadow: 0 0 5px rgba(254, 189, 105, 0.7);
}

/* Featured Product Section */
#products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.product-card {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
}

.product-card p {
  font-size: 16px;
  color: #555;
  margin-top: 5px;
}

.product-card .price {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-top: 10px;
}

.product-card .btn-buy {
  background-color: #febd69;
  padding: 8px 15px;
  color: black;
  font-weight: bold;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.product-card .btn-buy:hover {
  background-color: #ff9900;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Categories and Filters Sidebar */
.sidebar {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
}

.sidebar ul li a:hover {
  color: #febd69;
  text-decoration: underline;
}

/* User Dashboard */
.dashboard-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  margin-top: 30px;
}

.dashboard-sidebar {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dashboard-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.dashboard-sidebar ul li {
  margin-bottom: 15px;
}

.dashboard-sidebar ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.dashboard-sidebar ul li a:hover {
  color: #febd69;
  text-decoration: underline;
}

.dashboard-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dashboard-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.dashboard-content button {
  background-color: #febd69;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dashboard-content button:hover {
  background-color: #ff9900;
}

/* Login/Signup Form */
.form-container {
  max-width: 500px;
  margin: 30px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.form-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px;
}

.form-container input[type="submit"] {
  background-color: #febd69;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.form-container input[type="submit"]:hover {
  background-color: #ff9900;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination a {
  background-color: #febd69;
  padding: 10px 15px;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.pagination a:hover {
  background-color: #ff9900;
}

/* Loading Spinner */
.spinner {
  display: block;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #febd69;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: black;
}

/* Header Styling */
header {
  background-color: #131921;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

/* Container */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Zamaz Brand */
header .container .flex a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 3vw;
}

header .container .flex a:hover {
  color: #febd69;
}

/* Search Bar */
header .container .ml-10 .flex {
  display: flex;
  align-items: center;
  width: 100%;
}

header input[type="text"] {
  padding: 12px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 300px;
  background-color: white;
  color: black;
  transition: background-color 0.3s ease;
}

header input[type="text"]:focus {
  outline: none;
}

header #bars {
  background-color: #ff1493;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Navigation Links */
header nav ul {
  display: flex;
  gap: 20px;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 10px;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #febd69;
}

header nav ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #febd69;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

header nav ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  /* Tablet and smaller screens */
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
  }

  header .container .ml-10 {
    margin-top: 15px;
    width: 100%;
  }

  header .container .ml-10 .flex {
    flex-direction: column;
    align-items: stretch;
  }

  header input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  header nav ul li a {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile View */
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  header input[type="text"] {
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  header nav ul li a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Extra Small Screens */
  header .container {
    padding: 10px 5px;
  }

  header input[type="text"] {
    padding: 8px 12px;
    font-size: 12px;
  }

  header nav ul li a {
    font-size: 16px;
    padding: 8px 0;
  }

  header .container .ml-10 .flex input[type="text"] {
    padding: 8px 12px;
    width: 100%;
  }
}

/* Subtle Animation for Header */
header {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Night Mode (Inspired by Cyberpunk Themes) */
body {
  background-color: white;
}

header {
  background-color: blueviolet;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

header nav ul li a {
  color: #ddd;
}

header nav ul li a:hover {
  color: #febd69;
}

/* Smooth Transition for the Header */
header .container .flex a,
header button {
  transition: all 0.3s ease;
}

header .container .ml-10 .flex input[type="text"]:hover,
header nav ul li a::before {
  background-color: #ff9900;
  transition: transform 0.3s ease-out;
}
/* Additional Responsiveness for Header */

/* For smaller tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 7.5px;
  }

  header .container .ml-10 {
    margin-top: 7.5px;
    width: 80%;
  }

  header input[type="text"] {
    width: 80%;
    margin-bottom: 5px;
    padding: 5px;
  }

  header nav ul {
    flex-direction: column;
    gap: 7.5px;
    margin-top: 10px;
    width: 80%;
    text-align: center;
  }

  header nav ul li a {
    font-size: 9px;
    padding: 6px 0;
    width: 80%;
  }
}

/* For Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  header .container {
    height: max-content;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  header input[type="text"] {
    padding: 6px 8px;
    font-size: 10px;
    width: 85%;
    margin-bottom: 5px;
  }

  /* Navbar Toggle Button */
  header #navbar-toggle {
    display: block;
    width: fit-content;
    margin-left: 78vw;
    cursor: pointer;
    background: none;
    border: none;
    padding: 1vh 1vw;
    margin-bottom: -8vh;
    outline: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline: none !important; /* Removes focus outline */
    -webkit-tap-highlight-color: transparent; /* Removes blue highlight on mobile */
  }

  header #navbar-toggle:focus {
    outline: none;
    box-shadow: none; /* Removes any focus shadow */
  }

  header #navbar-toggle:active {
    transform: scale(1.1); /* Slightly enlarges the button */
    animation: bounce 0.3s ease;
  }

  @keyframes bounce {
    0% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  header #bars {
    font-size: 3vh;
    margin: 10px;
    font-size: 3vh;
    padding: 1vh 1vw;
    margin: 1vh 1vw;
  }

  /* Navbar */
  header nav ul {
    gap: 10px;
    margin-top: 5px;
    width: 85%;
    text-align: left;
    padding-top: -4vh;
    display: none; /* Hides navbar by default */
  }

  header nav ul li a {
    font-size: 3px;
    padding: 4px 0;
    width: 100%;
  }

  #Search2 {
    margin-top: -4vh;
    width: 80%;
    font-size: 2vh;
  }

  /* Ensure Navbar is Hidden by Default */
  #navbar {
    display: none; /* Hide navbar initially */
    margin-left: 10vw;
    padding-left: 10vw;
    flex-direction: column;
    width: 80%;
    background: #ff1493;
    padding: 10px 0;
    position: absolute;
    top: 60px;
    left: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2vh;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-100%);
      opacity: 0;
    }
  }

  /* Show Navbar When Active */
  #navbar.active {
    display: flex;
    animation: slideDown 0.2s ease-out forwards;
  }

  #navbar.hidden {
    animation: slideUp 0.2s ease-out forwards;
  }
}

/* For Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  header .container {
    padding: 2px;
  }

  header input[type="text"] {
    padding: 4px 6px;
    font-size: 12px;
    width: 100%;
  }

  header nav ul li a {
    font-size: 8px;
    padding: 4px 0;
    width: 100%;
  }

  header .container .ml-10 .flex input[type="text"] {
    padding: 4px 6px;
    width: 100%;
  }
}

/* For Mobile-First Button Hover Effects */
:focus {
  transform: scale(1.05);
}

/* Adjust Font Size for Header Links */
@media (max-width: 768px) {
  header nav ul li a {
    font-size: 8px;
  }
}

/* Final touch for better visibility on mobile */
header .container .ml-10 {
  margin-top: 15px;
  width: 80%;
}
#navbar {
  transition: all 0.3s ease-in-out;
}

#navbarToggle {
  display: none; /* Hide by default on larger screens */
  background: none;
  border: none;
  cursor: pointer;
}
/* Base Button Style */
.btn-primary {
  background-color: #ff9900; /* Zamaz-like orange */
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: auto;
  margin: 8px 0;
}

/* Add to Cart Specific Styles */
.add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* Hover Effect */
.btn-primary:hover {
  background-color: #ff7f00; /* Darker orange for hover */
  transform: scale(1.05);
}

/* Focus Effect */
.btn-primary:focus {
  outline: 3px solid #ffcc00; /* Yellow focus border */
  outline-offset: 2px;
}

/* Active (pressed) Effect */
.btn-primary:active {
  background-color: #e68a00; /* Even darker orange for pressed state */
  transform: scale(0.98);
}

/* Disabled State */
.btn-primary:disabled {
  background-color: #d3d3d3; /* Light gray */
  color: #a0a0a0;
  cursor: not-allowed;
}

/* Tooltip on Hover (optional) */
.btn-primary:hover::after {
  content: "Click to add to cart!";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0.8;
  white-space: nowrap;
}
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  background-color: #28a745; /* Green success color */
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInOut 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(50px);
  }
}
#upi-payment {
  text-align: left;
  margin-left: -10vw;
}
