body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.App {
  text-align: center;
}
.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

body {
  width: 100%;
  margin: 0;
  font-family: Poppins;
}
svg {
  width: 30px;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  /*  color: #222;*/
}

h4 {
  font-size: 20px;
  /* line-height: 64px; */
  color: #222;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p {
  font-size: 16px;
  margin: 15px 0 20px 0;
}

.section-pl {
  padding: 40px 80px;
}

.section-ml {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: rgba(96, 96, 100, 100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  width: 100%;
}
body {
  padding-top: 90px;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.cart-render {
  position: fixed;
  margin: 10px;
  right: 0;
}
#header .logo {
  width: 40px;
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.3 ease;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.3 ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: rgb(13, 1, 1);
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  bottom: -4px;
  left: 20px;
}
.search-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-container input[type="text"] {
  display: flex;
  padding: 10px;
  font-size: 17px;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
  background-color: #ccc;
  align-content: center;
}

.search-container i {
  padding: 10px;
  background: white;
  color: rgb(4, 4, 4);
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  background-color: #ccc;
}

.search-container button:hover {
  background-color: rgb(202, 202, 202);
}

.search-container i {
  font-size: 17px;
}

.container1 {
  width: 100%;
  padding: 30px;
}

.tab_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgb(229, 229, 229);
  font-size: 18px;
  overflow-x: auto;
  -ms-overflow-style: none;
}

.tab_box .tab_btn {
  font-size: 18px;
  font-weight: 600;
  color: #919191;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px;
}

.tab_box .tab_btn.active {
  color: rgb(106, 104, 150);
}
.content_box {
  padding: 20px;
}

.content_box .content.active {
  display: block;
  animation: moving 0.5s ease;
}
@keyframes moving {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

#hero {
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  color: white;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#hero h4,
#hero h2,
#hero h1,
#hero p,
#hero .shopNow {
  position: relative;
  z-index: 2;
}

#hero h4 {
  padding-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

#hero h2 {
  font-size: 4rem;
  color: white;
}

#hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

#hero p {
  font-size: 1.2rem;
  margin: 15px 0 20px 0;
}
#hero .shopNow {
  background-image: url(data:image/png;base64,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);
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: lowercase;
}

.shopNow:hover {
  background: #ff473d;
}

@media screen and (max-width: 1024px) {
  #hero {
    padding: 0 40px;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #hero h2 {
    font-size: 1.8rem;
  }

  #hero p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  #hero {
    height: 80vh;
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero h2 {
    font-size: 1.5rem;
  }

  #hero p {
    font-size: 0.9rem;
  }

  .shopNow {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #hero {
    height: 70vh;
    padding: 0 10px;
  }

  #hero h1 {
    font-size: 1.8rem;
  }

  #hero h2 {
    font-size: 1.3rem;
  }

  #hero p {
    font-size: 0.85rem;
  }

  .shopNow {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

h2 .and {
  padding-left: 50px;
}

#product1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  top: 0;
  left: 0;
}
#nav {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

#nav li {
  list-style: none;
  padding: 0 50px;
  position: relative;
}

#nav li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: rgba(62, 61, 88);
  transition: 0.3 ease;
}

#nav li a:hover,
#nav li a.active {
  color: rgb(106, 104, 150);
}

#nav li a.active::after,
#nav li a:hover::after {
  content: "";
  width: 30px;
  height: 2px;
  background: rgba(62, 61, 88);
  position: absolute;
  bottom: -4px;
  left: 50px;
}

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid rgb(106, 104, 150);
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des .star {
  padding-bottom: 0px;
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: rgb(62, 61, 88);
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: rgb(62, 61, 88);
  font-weight: 500;
  color: white;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 25px;
  right: 10px;
}

.view-more {
  padding: 7px;
  border-radius: 5px;
  border: none;
  font-size: 12px;
  background-color: rgb(62, 61, 88);
  color: white;
  cursor: pointer;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* background-color: #e7dddd; */
  background: rgba(96, 96, 100, 100);
  text-align: left;
}

footer .col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
  color: white;
}

footer p {
  font-size: 13px;
  margin: 0 0 6px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .install .row img {
  border: 1px solid #088178;
  border-radius: 6px;
}

footer .install .row img:hover {
  cursor: pointer;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .copyright {
  width: 100%;
  text-align: center;
}
.col img {
  width: 40px;
}

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-position: 20px 30px;
  background-repeat: no-repeat;
  background-color: #041e42;
}

#newsletter h4 {
  font-size: 25px;
  font-weight: 700;
  line-height: 20px;
  padding-top: 20px;
  color: #fff;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter p span {
  color: #ffbd27;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.5em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.image-container {
  position: relative;
  padding-top: 75%;
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s;
}

.image-container img:hover {
  transform: scale(1.05);
}

.content-box .item img:hover {
  transform: scale(1.05);
  transition: 0.3s;
  box-shadow: rgba(96, 96, 100, 100);
}

.content-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
.content-box .item {
  border: 1px solid rgb(106, 104, 150);
  padding: 20px;
  border-radius: 20px;
}

.content-box .item h2 {
  font-weight: 500;
  font-size: large;
}

.content-box .item .price {
  letter-spacing: 7px;
  font-size: small;
}

.content-box .item button {
  background-color: #353432;
  color: #eee;
  border: none;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .content-box {
    width: 100%;
  }

  .content-box .item {
    width: 160px;
    height: auto;
    padding: 10px;
  }
}

*/ #product1 .pro .cart:hover {
  background-color: rgb(243, 181, 25);
  transform: scale(1.1);
  transition: 0.3s;
}
#navbar li a.active {
  color: #fff;
  background-color: rgb(106, 104, 150);
  border-radius: 5px;
}

.product-detail {
  text-align: center;
  padding: 20px;
}

.product-detail img {
  max-width: 400px;
  height: auto;
}

.similar-products {
  margin-top: 40px;
}

.similar-products-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.product-card {
  border: 1px solid #ccc;
  padding: 10px;
  width: 200px;
  margin: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card button {
  margin-top: 10px;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.product-card button:hover {
  background-color: #0056b3;
}

.checkout-form-container {
  width: 400px;
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0;
  display: none;
  transition: all 0.3s ease-in-out;
}

.checkout-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  margin-top: 40px;
}

.checkout-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.checkout-form textarea {
  height: 120px;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.checkout-button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.checkout-button:hover {
  background-color: #0056b3;
}

.checkout-form-container {
  display: none;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cartTab,
.checkout-form-container {
  transition: all 0.3s ease;
}

.checkout-form {
  display: flex;
  flex-direction: column;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form button {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.checkout-button {
  background-color: #555;
  color: white;
  cursor: pointer;
}

.checkout-button:hover {
  background-color: #727272;
}

.empty-cart-message {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  font-weight: 600;
}

.total-quantity {
  margin-top: 20px;
}
.total-price {
  margin-top: 5px;
}

.publicity-container {
  background-color: #f7f8fa;
  padding: 40px 0;
  margin: 20px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.publicity-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.publicity-image {
  flex: 1 1;
  padding-right: 20px;
}

.publicity-image img {
  max-width: 70%;
  border-radius: 8px;
}

.publicity-text {
  flex: 1 1;
  text-align: left;
}

.publicity-text h2 {
  font-size: 2rem;
  color: black;
  font-weight: bold;
  margin-bottom: 15px;
}

.publicity-text p {
  font-size: 1rem;
  color: black;
  margin-bottom: 20px;
}

.publicity-button {
  padding: 12px 25px;
  background-color: #ff5722;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.publicity-button:hover {
  background-color: #e64a19;
}

#advertisement {
  background-image: url(/static/media/b1.2f6d177f83c33b694c55.jpg);
  color: white;
  padding: 40px;
  text-align: center;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#advertisement h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#advertisement p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

#advertisement .cta-button {
  font-size: 16px;
  font-weight: bold;
  background-color: #2980b9;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#advertisement .cta-button:hover {
  background-color: #1c6ea4;
}

#product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  padding: 20px;
}

.product {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.product h3 {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #333;
}

.product p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 10px 10px;
  padding: 0 10px;
}

.product .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d3e50;
  margin: 10px 0;
}

.product button {
  background-color: rgb(188, 178, 178);
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  font-family: Poppins;
  font-size: large;
}

.product .price span {
  color: #e91e63;
}

@media (max-width: 768px) {
  #product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-container img {
    height: 150px;
  }
  #temporaryContent {
    width: 500px;
    margin: auto;
    max-width: 90vw;
  }
}

#productList.empty {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
  padding: 50px;
}

@media (max-width: 768px) {
  #advertisement {
    padding: 20px;
  }

  #advertisement h2 {
    font-size: 24px;
  }

  #advertisement p {
    font-size: 16px;
  }

  #advertisement .cta-button {
    font-size: 14px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .checkout-form-container {
    padding: 15px;
  }

  .checkout-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  #header,
  #navbar,
  #product1,
  footer {
    padding: 15px;
  }
  .content-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.user-profile {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: none;
  }
  .mobile-search {
    width: 30px;
    display: none;
  }

  .tab_box {
    font-size: 15px;
  }

  .product img {
    height: 180px;
  }
}
.no_product .no_content {
  justify-content: center;
  display: flex;
  width: 100%;
}
.no_product {
  margin-top: 50px;
}
.tab_box::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .tab_box {
    justify-content: flex-start;
    gap: 15px;
    padding: 0 20px 10px;
    white-space: nowrap;
  }

  .tab_btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 16px;
  }
  .item {
    display: none;
  }
}

.mobile-product-card {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    gap: 10px;
    padding: 10px;
  }
  /* .mobile-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 10px;
  } */
  .mobile-product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures the cart button stays at the bottom */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    height: 100%;
    width: 100%; /* Ensures consistent height for all cards */
  }

  .product-image-container img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
  }

  /* .product-info {
    padding: 10px;
  } */

  .product-info {
    flex-grow: 1; /* Ensures the info section takes up available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 8px;
  }

  /* .product-names {
    font-size: 18px;
    font-weight: bold;
  } */
  .product-names {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
  }

  /* .product-price-container {
    color: #008000;
    font-size: 16px;
  } */
  .product-price-container {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 8px;
  }

  .product-condition span {
    font-size: 14px;
    font-weight: bold;
    color: #666;
  }

  .addCart {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    align-items: center;
    margin-top: auto;
  }
  /* .addCart {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    align-self: center; 
    margin-top: auto; 
  } */

  .addCart svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}

.addCart.disable {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.skeleton {
  animation: shimmer 1.5s infinite linear;
  background: #f0f0f0;
}

.skeleton-box {
  background: #e0e0e0;
  border-radius: 4px;
}

.skeleton-text {
  height: 16px;
  margin: 8px 0;
}

.skeleton-button {
  height: 32px;
  width: 100px;
  margin: 8px 0;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: fit-content;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: 320px;
  width: var(--toastify-toast-width);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 14px;
  padding: var(--toastify-toast-padding);
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: var(--toastify-toast-shadow);
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: auto;
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: 320px;
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: auto;
  right: initial;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: 0.2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#temporaryContent {
  width: 1200px;
  margin: 0 auto;
  max-width: 90vw;
}
.loading {
  width: 1200px;
  margin: 0 auto;
  max-width: 90vw;
}
body {
  margin: 0;
  font-family: Poppins;
}
svg {
  width: 30px;
}

a {
  text-decoration: none;
  color: #2f2f2f;
}
button {
  cursor: pointer;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.icon-cart {
  position: relative;
}
.icon-cart span {
  position: absolute;
  background-color: red;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  top: 50%;
  right: -20px;
}
.title {
  font-size: xx-large;
}

.cartTab {
  width: 400px;
  max-width: 100%;
  background-color: #353432;
  color: #eee;
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0;
  display: grid;
  grid-template-rows: 70px 1fr 70px;
}
.cartTab h1 {
  padding: 20px;
  margin: 0;
  font-weight: 300;
}
.cartTab .btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cartTab button {
  background-color: #e8bc0e;
  border: none;
  font-family: Poppins;
  font-weight: 500;
  cursor: pointer;
}
.cartTab .close {
  background-color: #eee;
}
.listCart {
  overflow: auto;
}
.listCart::-webkit-scrollbar {
  width: 0;
}

.cartTab {
  right: -400px;
  transition: 0.5s;
}
body.activeTabCart .cartTab {
  right: 0;
}
body.activeTabCart .container {
  transform: translateX(-250px);
}

.listProduct .item img {
  width: 90%;
  filter: drop-shadow(0 50px 20px #0009);
}
.listProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
.listProduct .item {
  background-color: #eeeee6;
  padding: 20px;
  border-radius: 20px;
}
.listProduct .item h2 {
  font-weight: 500;
  font-size: large;
}
.listProduct .item .price {
  letter-spacing: 7px;
  font-size: small;
}
.listProduct .item button {
  background-color: #353432;
  color: #eee;
  border: none;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 20px;
}

.listCart .item img {
  width: 100%;
}
.listCart .item {
  display: grid;
  grid-template-columns: 70px 150px 50px 1fr;
  grid-gap: 10px;
  gap: 10px;
  text-align: center;
  align-items: center;
}
.listCart .quantity span {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #eee;
  border-radius: 50%;
  color: #555;
  cursor: pointer;
}
.listCart .quantity span:nth-child(2) {
  background-color: transparent;
  color: #eee;
  cursor: auto;
}
.listCart .quantity {
  display: flex;
}
.listCart .item:nth-child(even) {
  background-color: #eee1;
}

#similarProducts {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#similarProducts h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  width: 100%;
}

#similarProducts .item {
  width: 23%;
  margin-bottom: 20px;
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#similarProducts .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#similarProducts .item img {
  width: 100%;
  height: auto;
  max-width: 180px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#similarProducts .item img:hover {
  transform: scale(1.05);
}

#similarProducts .item h2 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}

#similarProducts .item .price {
  font-size: 14px;
  color: #e74c3c;
  font-weight: bold;
}

#similarProducts .item .addCart {
  margin-top: 10px;
  padding: 8px 15px;
  font-size: 14px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.addCart span svg {
  width: 20px;
}
.addCart span svg:hover {
  transform: scale(1.1);
  transition: 0.3s;
  box-shadow: rgba(96, 96, 100, 100);
}

#similarProducts .item .addCart:hover {
  background-color: #2980b9;
}

.cartTab,
.checkout-form-container {
  transition: opacity 0.5s ease-in-out;
}

.cartTab {
  opacity: 1;
}

.checkout-form-container {
  opacity: 0;
  display: block;
}

.checkout-form-container.show {
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .listProduct {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail {
    grid-template-columns: 40% 1fr;
  }
}

.listCart .emptyCartMessage {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #888;
  padding: 20px 0;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 20px;
}

.listCart .emptyCartMessage span {
  color: #f44336;
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail {
    text-align: center;
    grid-template-columns: 1fr;
  }
  .detail .image img {
    width: auto;
    width: initial;
    height: 40vh;
  }
  .detail .name {
    font-size: x-large;
    margin: 0;
  }
  .detail .buttons button {
    font-size: small;
  }
  .detail .buttons {
    justify-content: center;
  }
}
.condition {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOMAAAAxCAYAAAAoeB5oAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAACV9JREFUeNrsndlWIs0ShZNBUBBbFCcckVYUFBQHtEGBfrx837w/F/3lIk79DKICRRkXe4FYFFWVsTOGjIg0zhqjmCniIOmsSQeQddasC+w4a4rOmn1QctZUnDUXI1Bx1lSdNWVnTd1Z03DW3Iw49pLXQ7DprNnidzedNRviOjJcb8xZk3DWpHQcZw99CJ9DEgFNO2tyIO+s2QVnEOk3JKk7ax6dNX8EXp01f0OMJsS+51qr3M8R97jprNnjvtMQeA0Cq4xEmIwxhD/+xfP4GX5DwGuhHWfNNu/3AjhFGG/Ao7Om5ax5cdb0nDXdTwp8h3O8OmveeW05a55An+O6HOd/8wWS3HItr86aZz5rgWfQEuiCJvDn7ASuadr7eOW8fc5XY0IqMFHFlWzRIWMWskw76247a86dNVe8XjhrrhH8N14XqX3uMS07CHNHaM0XQcZeQKu2IesDx7X5zlNA874GvucnDk9O//kDpH5A+13xnO6YhM4h2BHmbp1ja+CBY0vgmO+cMJElMYmLwuzNokkXOcGvLfgalpKMCQZ03INNYC4dIEAthE8Kfz9kpmB3yDUuAj0xQbUFkTtC60otLgn/LMj7W2jCuDDnY5DxF9ZIkzE6w/LYF0T1fnOe7xwzCZyAImN8yXeN+K2CmDDu+Z1bXr210WTieOKeOkxEZ2LyuOR+CvPU6suu2nMEMWoISjfkflhU0QcdSN2FpI+QrgI57vnba/U6GrQCypDhWJi4BYJKOXzVPNgnEFUUvqt3J0pYQXVk40po6isI+T5icpQydMoEMSpuEPuJZPT+3SEzVpnB6ygRIo0/QhN3vjBRvELMK2EJDDvW++N/sRA2nDUrI2Ry7aeRcZuH2AuJOaf4GXjEXPbLUZPkdB2tHY8SGROYHD4o0FfBUCxII5emkNtV/OHYspMxgb1/w0NQYVCEwQe+GBIkjGwAJ44T3hqiATUQo1gEGsQltojCFkSwJjMmmLP0ZEwSYva+4DOm6ZtqSMWCcI7JmRHJFxV8yK1Za8d5acBdblJ+nhb5ka/c8J0KhGLBeBuy/vuMlsygOfMokyTJC6tTLMVVCQ4thIwxnNvVAEEbaMA7HoAKgiKskdU0LtU2RMyKxIbUmOWPYWSs4Y9mkP0m51yYiVoJaUaMQhHEu8hIkqlzK2Lhf2MKQvqgZQZS9li+W11UTmBbyahYIrTRjFmRW7uD+5WDlGsfXJMcFjs5c9aU57V0kRCZNDc6uIoljLLu4W55rRgLEOqE7LBPL/zPSxP+xlbWLBrFMufeXuM3XonChYzInd0OOxk3lYSKJYcvb6sTcGmJqpAjzNMvr0F+J+m2mCVWsKkTvF/nwnVQFVHEsSgR28CPLFLMUJxmbfI7S5n6os7tnZCwL55VzaiICnz5l09MaYm6zaKo7bzm/cq8yLiCnVwbceF1ljGUjIqooIQW3CVjp/BdmTnfRUbfK+YGrdgXtWht7O17MhluNfdUEYGqjvwypMPlReW9XDhtchPPqikVS2yiNt2/thwxtyS5qavqKyoiGFG9J0iTJjCZDTMZY4GcvQslpCIiaOEj7rpB06xQk7FAVvseF+59SB1MRRRQdzNs7TiL/qZZgjpFljd0EBVRQnNWhJxV+0Tfyl67tymWtVKjSuT/Wlh3fWIhDyibVBjJGBO1XkfUaSkRFcuci9qhztY3cm64wRYJshC57MY32J4JGeNESdOiujkhKjN83l4RB7ekg6qIUCT1YkwR/N68yZhC4/mu0BVqvNYhZksHTRFRlMlB9dvz3fD+lrXHtXmTMYYZ6nuBZFlz8TVel0NuoqcFxIolhNxZ7HzCAn8qTD6jj6D6bPVTzNUDN2jBf8Znf4UdroOuCLPP6GU16ebUBeOrFfznaMZEoJ7Ld7+qkP72JCJSPptdNaZiGVo3GhRNYh5k3PwCGa/RgH6vO7+L7wp+ZA5T9iWQyaDd4BRhX9ooujn3hzLuX++OCzTcyifUcgrS/XKD3X8T4jPthaqYd+TzNlDQ3g/4gz4AMyo77M4toGuif9MU2QU59/GmrJ6Ma2MSABruXw+cFxUUxYxJ2EIhxIl+PkFMf8wzRMwjs23I+SbS3f6wSrAwMqZYrN/nRspk0XzUhI27/9+lNsfai9/IcneMaaq+o+KjDaH+EvxrukG7T0nGUqCUz6dmvvL9ewqDD4VyeISwm8jrrvvvdm+bboEb32RZwkhMoR0zbtAZK8vfSQguKzc6zGA1/M26CptiAhFvRJ5zTcjYY8D8PAhUD/k9Pmsogx5EjEPMY75z5AYtF8e1Gl3qXajSkPqMh9AK2OM7wkRWKIZpQtk1wi83bCNbSVGmVwjU015BtBRRUV+hvy40XszZhXXVnzsZfYc4//cvTIIKvqQKnmLYgnsPC+oJ8lWxsMqsY58SeMwhY4UhbtOhMFvX8BcrYSKfW0Df1CAuVODmHqYPs1/eFVpPxhC6+HVXY1yjbEAbTurXlIgyGf2235kPptMlRHDop5peHm2eQ0togXc0wSvC2OSYthvsF1ifQwaTvM7uELyDrvv6EsQapGqMmDS8WTpJDqfdfCZyZIzzMOOBBzOMiKvMZvXAwE4yWaIUen8RdZ5+U9g3IfT9gED2hwho/xPE6ok0xDbX0XKDbn01TLoTTMACLoVce06BNGOehAAVJo+PJnI8sNRVDpAnTqTzBLO0xXkvP7D2HXf/3f/ix5FxGOnG7cSzG5jxOiNmwgcRba0QTWvy+YMY/Baaw2uPZwJEDQFfYXJJxpDXRnKNqefC3R7Ea8yuINgL9/IEGhDrBkE/R7B3IVfODXZK+mqVQdASShIQOWDcHhmjTqAe8IQlh7r74iYxUcS8fsjXQp6NiZoF+1LWQVWEtp8ISd/yvwMEy5spxwjhHuHqU4QwTwAgw//KYl31nOP2mbHv+K0iwnPE+xI4x++tcG2+e3QN+M+q/N1gIvFEqfL9Kr93yfWUBPz67B7X9UukFm6BVWGVTCvU6TloEdlBzf+e3/7s2s2wl4yScbLG9A73jhvsS5Dj/TnC2kAYD3Hcq7z+5hgvvJuijlI67gUEeAMC+t/ZhrgbCMGG0OCbXJdPVDiDhBnOPUnQ85wvLgIJmYBpFfvmSU3+PWnvv2xIzDdPxpgSLzzR1HGCFv/kIH+HoCSEX5QQye6TggJ+G2m/pnqEhpZ7+RWZGL4jYJaa4p4j4Uv9FPxvAAG2ZwKU8wLdAAAAAElFTkSuQmCC);
  background-color: transparent;
  color: rgba(96, 96, 100, 100);
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}
.detail .buttons {
  justify-content: center;
}

.condition {
  background-image: url(data:image/png;base64,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);
  background-color: transparent;
  color: rgba(96, 96, 100, 100);
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .condition {
    padding: 10px 40px 10px 30px;
    font-size: 13px;
    background-size: 80%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .condition {
    padding: 10px 40px 10px 30px;
    font-size: 13px;
    background-size: 80%;
    text-align: center;
  }
  .item {
    display: none;
  }
}
.search-button {
  border: none;
}
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

/* Ads Component Styling */
.publicity-container {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.publicity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

.publicity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.publicity-image:hover img {
  transform: scale(1.05);
}

.publicity-text {
  padding: 3rem;
}

.publicity-text h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.publicity-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #333;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.publicity-button:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .publicity-content {
    grid-template-columns: 1fr;
  }

  .publicity-image {
    height: 300px;
  }
}
#search-button {
  background: none;
  border: none;
  outline: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 0;
}

.pagination-controls button {
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-controls button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.pagination-controls button:hover:not(:disabled) {
  background-color: #0056b3;
}

.pagination-controls span {
  font-size: 14px;
  color: #666;
}
.addCart.disabled {
  background-color: red;
  color: red;
  cursor: not-allowed;
  opacity: 0.6;
}

.tab-container {
  display: flex;
  align-items: center;
  position: relative;
}

.scroll-arrow {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: #333;
}

.scroll-arrow:hover {
  color: #007bff;
}

.left-arrow {
  position: absolute;
  left: 0;
  z-index: 10;
}

.right-arrow {
  position: absolute;
  right: 0;
  z-index: 10;
}

.tab_box {
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 40px;
}
/* Skeleton styles */
.skeleton {
  animation: shimmer 1.5s infinite linear;
  background: #f0f0f0;
}

.skeleton-box {
  background: #e0e0e0;
  border-radius: 4px;
}

.skeleton-text {
  height: 16px;
  margin: 8px 0;
}

.skeleton-button {
  height: 32px;
  width: 100px;
  margin: 8px 0;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
/* Ads Styling */
.advertisement {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advertisement-content {
  max-width: 800px;
  margin: 0 auto;
}

.advertisement-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.advertisement-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #ff4d4d;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

/* Container for product list */
#product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin: 16px 0;
}

.close-button-back {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ff4444;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-button-back:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.button-icon {
  font-size: 20px;
  display: none;
}

@media (max-width: 768px) {
  .close-button-back {
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .button-icon {
    display: block;
  }

  .button-text {
    display: none;
  }
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.logo-loader {
  width: 70px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out, pulse 2s infinite ease-in-out;
}

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

.cart {
  position: fixed;
  top: 10%;
  right: 0;
  height: 90vh;
  width: 400px;
  background-color: rgba(96, 96, 100, 100);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cart-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.close-button:hover {
  background-color: #f5f5f5;
}
.cart-items {
  flex: 1 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: white;
  margin-bottom: 10px;
}

.item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  flex: 1 1;
}

.item-details h3 {
  margin: 0 0 4px 0;
  font-weight: 500;
}

.price {
  color: #666;
  margin: 0;
  letter-spacing: 5px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.quantity-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.quantity-button:hover {
  background-color: #f5f5f5;
}

.quantity {
  width: 32px;
  text-align: center;
}

.remove-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  color: #dc2626;
  transition: background-color 0.2s;
  font-size: 30px;
}

.remove-button:hover {
  background-color: #fef2f2;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding: 20px;
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.total-amount {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 7px;
}

.checkout-button {
  width: 100%;
  padding: 12px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.checkout-button:hover {
  background-color: green;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart-items::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 768px) {
  .cart {
    width: 80%;
    max-width: 350px;
    top: 0;
    height: 100vh;
  }

  .cart-header {
    padding: 15px;
  }

  .cart-header h2 {
    font-size: 1.3rem;
  }

  .cart-items {
    padding: 10px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .item-image {
    width: 100%;
    height: auto;
  }

  .item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .quantity-controls {
    gap: 8px;
  }

  .quantity-button {
    padding: 6px;
  }

  .cart-footer {
    padding: 15px;
  }

  .checkout-button {
    padding: 14px;
  }
}

@media screen and (max-width: 480px) {
  .cart {
    width: 100%;
  }

  .cart-header h2 {
    font-size: 1.2rem;
  }

  .cart-items {
    padding: 8px;
  }

  .cart-item {
    padding: 10px;
  }

  .checkout-button {
    font-size: 0.9rem;
  }
}

/* ProductCards.css */

.product-highlight-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.product-card-high {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

/* Featured Card (Large) */
.featured-card {
  flex: 2 1;
  min-width: 600px;
  min-height: 350px;
}

.featured-card.light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-card.dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.featured-card .product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  height: 100%;
}

.featured-card .product-info {
  flex: 1 1;
  max-width: 300px;
}

.featured-card .product-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.featured-card.light .product-title {
  color: #1a1a1a;
}

.featured-card.dark .product-title {
  color: white;
}

.featured-card .product-subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.featured-card.light .product-subtitle {
  color: #666;
}

.featured-card.dark .product-subtitle {
  color: #ccc;
}

.shop-button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.shop-button:hover {
  background: #0052a3;
}

.featured-card .product-image-container {
  flex: 1 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.secondary-image-container {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.9;
}

.secondary-image {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Compact Card (Small) */
.compact-card {
  flex: 1 1;
  min-width: 300px;
  min-height: 350px;
}

.compact-card.dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.compact-card.light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #1a1a1a;
}

.compact-card .product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 100%;
  text-align: center;
}

.compact-image-container {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.compact-image {
  max-width: 180px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 100, 255, 0.3));
}

.compact-info {
  text-align: center;
}

.compact-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.compact-card.dark .compact-title {
  color: white;
}

.compact-card.light .compact-title {
  color: #1a1a1a;
}

.compact-subtitle {
  font-size: 1rem;
  margin-bottom: 16px;
}

.compact-card.dark .compact-subtitle {
  color: #ccc;
}

.compact-card.light .compact-subtitle {
  color: #666;
}

.product-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.compact-button {
  background: transparent;
  border: 2px solid #0066cc;
  color: #0066cc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.compact-button:hover {
  background: #0066cc;
  color: white;
}

.feature-tag {
  background: rgba(0, 100, 255, 0.2);
  border: 1px solid rgba(0, 100, 255, 0.4);
  color: #64b5ff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-highlight-container {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .featured-card {
    min-width: 0;
    min-width: initial;
    min-height: 300px;
  }

  .featured-card .product-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .featured-card .product-info {
    max-width: none;
    max-width: initial;
    margin-bottom: 20px;
  }

  .featured-card .product-title {
    font-size: 2rem;
  }

  .secondary-image-container {
    display: none;
  }

  .compact-card {
    min-width: 0;
    min-width: initial;
    min-height: 280px;
  }

  .compact-card .product-content {
    padding: 25px 20px;
  }

  .compact-image {
    max-width: 140px;
    max-height: 180px;
  }
}

@media (max-width: 480px) {
  .featured-card .product-title {
    font-size: 1.6rem;
  }

  .compact-title {
    font-size: 1.4rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  -webkit-user-select: none;
          user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    );
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

.avatar {
  position: relative;
  z-index: 10;
}

.Avatar-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 200px;
}

.Avatar-dropdown-menu span {
  padding: 0;
  margin: 0;
}

.Avatar-dropdown-menu .logout {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-align: left;
  color: #777575;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  list-style-type: none;
}

.Avatar-dropdown-menu span:hover {
  background-color: rgba(244, 67, 54, 0.1);
}
.profile-avatar {
  width: 30px;

  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #fff;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-icons {
  display: none;
}

@media (max-width: 768px) {
  .mobile-icons {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }

  .mobile-icons-center {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .icon-cart-nav {
    position: relative;
  }

  .icon-cart-nav span {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
  }

  .menu-icon {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  #navbar {
    display: none !important;
  }

  #mobile {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .icon-cart-nav svg {
    width: 20px;
  }
  .icon-cart-nav span {
    width: 20px;
    height: 20px;
  }

  #navbar.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(96, 96, 100, 100);
    padding: 20px;
  }

  .mobile-search {
    display: none !important;
  }

  .mobile-nav {
    padding: 10px 0;
  }
  #header {
    justify-content: flex-start;
    padding: 15px 20px;
  }

  .logo {
    margin-right: auto;
  }

  .mobile-icons {
    order: 2;
  }
}

@media (min-width: 769px) {
  #mobile {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background: white;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.close-icon {
  cursor: pointer;
  color: #333;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-items a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.mobile-nav-items a:hover {
  background: #f5f5f5;
}

.mobile-search-container {
  position: relative;
  margin-bottom: 30px;
}

.mobile-search-input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 63%;
  transform: translateY(-50%);
  color: #666;
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

.infor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 500;
}
.infor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 500;
}
.info-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: auto;
  text-align: left;
  font-family: "Arial", sans-serif;
}

.info-icon {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

.info-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 10px 0;
}

.info-content strong {
  color: #007bff;
}

.info-content button {
  display: block;
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: background 0.3s ease-in-out;
}

.info-content button:hover {
  background: #0056b3;
}

.infor_icon {
  font-size: 70px;
}

.checkout-container {
  padding-top: 30px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  gap: 20px;
}

@media (min-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.card-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flex-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title-deli {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-content {
  font-size: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: #28a745;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

.input-group,
.input-row {
  margin-bottom: 16px;
}

.input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.input-row {
  display: flex;
  gap: 16px;
}

.cart-items {
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.item-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.item-quantity {
  font-size: 0.875rem;
  color: #555;
}

.item-price {
  font-weight: 600;
}

.summary {
  margin-top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding-top: 8px;
}

.proceed-button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.proceed-button:hover {
  background-color: #218838;
}

.icon {
  color: #555;
}

.icon-small {
  color: #555;
  font-size: 1rem;
}
.item-image {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.delivery-zone-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: Arial, sans-serif;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
}

.zone-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

h2 {
  color: #444;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1 1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #555;
}

input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-add {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background-color 0.2s;
}

.btn-add:hover {
  background-color: #3e8e41;
}

.btn-add:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.zone-dropdown-container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}

.zone-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.zone-dropdown-header:hover {
  border-color: #aaa;
}

.selected-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1;
}

.zone-name {
  font-weight: normal;
  color: #333;
}

.zone-fee {
  font-weight: bold;
  color: #444;
  margin-left: auto;
  padding-left: 1rem;
}

.placeholder {
  color: #999;
}

.dropdown-icon {
  color: #666;
  margin-left: 0.5rem;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 2px;
}

.search-container-zone {
  position: relative;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
}

.search-zone {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.search-container-zone input {
  width: 100%;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.search-container-zone input:focus {
  outline: none;
  border-color: #4caf50;
}

.zones-list {
  max-height: 240px;
  overflow-y: auto;
}

.zone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.zone-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.zone-item:hover {
  background-color: #f9f9f9;
}

.zone-item.selected {
  background-color: #e8f5e9;
}

.no-results {
  padding: 1rem;
  text-align: center;
  color: #999;
  font-style: italic;
}

.zones-list::-webkit-scrollbar {
  width: 6px;
}

.zones-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.zones-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.zones-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.support {
  cursor: pointer;
}
.support:hover {
  background-color: red;
  border-radius: 50%;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 1.2rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
  .order-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    font-size: 1rem;
  }

  .order-header h1 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .order-header .actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .order-header .actions button {
    flex: 1 1;
    font-size: 0.9rem;
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .order-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    font-size: 1rem;
  }

  .order-header h1 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .order-header .actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .order-header .actions button {
    flex: 1 1;
    font-size: 0.9rem;
    padding: 8px;
  }
}
/* Delivery Method Switcher Styles */
.delivery-method-switcher {
  display: flex;
  justify-content: space-between;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.method-option {
  flex: 1 1;
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.method-option:not(.active):hover {
  background-color: #e9e9e9;
}

.method-option.active {
  background-color: #4a90e2;
  color: white;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

.method-icon {
  font-size: 18px;
  margin-right: 2px;
}

/* Animation for smooth transitions */
.method-option {
  position: relative;
  overflow: hidden;
}

.method-option::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.method-option:active::after {
  transform: translateX(0);
  transition: transform 0s;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .method-option {
    padding: 10px;
    font-size: 14px;
  }

  .method-icon {
    font-size: 16px;
  }
}

#page-header {
  background-image: url(/static/media/b25.01a75bb18cd8fa8c0b2f.jpg);
  width: 100%;
  height: 30vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 14px;
} /* Closing brace for #page-header */

/* Media query should be separate */
@media screen and (max-width: 768px) {
  #about-head {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #about-head img {
    width: 90%;
  }

  #about-head div {
    padding-left: 0;
    width: 100%;
  }

  marquee {
    font-size: 14px;
  }
}
#page-header h2,
#page-header p {
  color: white;
}

#page-header .contact-header {
  background-image: url(/static/media/b25.01a75bb18cd8fa8c0b2f.jpg);
}
#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span,
#form-details form span {
  font-size: 12px;
}

#contact-details .details h2,
#form-details form h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

#form-details {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  padding: 80px;
  border: 1px solid #e1e1e1;
}

#form-details form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 65%;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
}

#form-details form button {
  background-color: #088178;
  color: #fff;
}

#form-details .people div {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

#form-details .people div img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}

#form-details .people div p {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
#about-head {
  display: flex;
  align-items: center;
}

#about-head img {
  width: 50%;
  height: auto;
}

#about-head div {
  padding-left: 40px;
}

#about-app h1 {
  text-align: center;
}

#about-app .video {
  width: 70%;
  height: 100%;
  margin: 30px auto 0 auto;
}

#about-app .video video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  #contact-details {
    flex-direction: column;
    text-align: center;
  }

  #contact-details .details {
    width: 100%;
    padding: 20px;
  }

  #contact-details .map {
    width: 100%;
    height: 300px;
  }

  #form-details {
    flex-direction: column;
    padding: 40px;
    margin: 20px;
  }

  #form-details form {
    width: 100%;
  }

  #form-details .people {
    width: 100%;
    text-align: center;
  }

  #form-details .people div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #newsletter {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #newsletter .form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #page-header {
    height: 20vh;
    font-size: 14px;
  }

  #contact-details .map {
    height: 250px;
  }

  #form-details {
    padding: 20px;
  }

  #form-details form {
    width: 100%;
  }

  #newsletter {
    padding: 10px;
  }

  #newsletter .form input {
    width: 80%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #about-head {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #about-head img {
    width: 90%;
  }

  #about-head div {
    padding-left: 0;
    width: 100%;
  }
}

.carousel .control-arrow,.carousel.carousel-slider .control-arrow{transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:focus,.carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:''}.carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.carousel .control-prev.control-arrow{left:0}.carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.carousel .control-next.control-arrow{right:0}.carousel .control-next.control-arrow:before{border-left:8px solid #fff}.carousel-root{outline:none}.carousel{position:relative;width:100%}.carousel *{box-sizing:border-box}.carousel img{width:100%;display:inline-block;pointer-events:none}.carousel .carousel{position:relative}.carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.carousel .thumbs-wrapper{margin:20px;overflow:hidden}.carousel .thumbs{transition:all .15s ease-in;transform:translate3d(0, 0, 0);position:relative;list-style:none;white-space:nowrap}.carousel .thumb{transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:none}.carousel .thumb.selected,.carousel .thumb:hover{border:3px solid #333}.carousel .thumb img{vertical-align:top}.carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.carousel.carousel-slider .control-arrow:hover{background:rgba(0,0,0,0.2)}.carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;transition:height .15s ease-in}.carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.carousel .slider-wrapper.axis-vertical .slider{flex-direction:column}.carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.carousel .slider.animated{transition:all .35s ease-in-out}.carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.carousel .slide img{width:100%;vertical-align:top;border:0}.carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.carousel .slide .legend{transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:0.25;transition:opacity .35s ease-in-out}.carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media (min-width: 960px){.carousel .control-dots{bottom:0}}.carousel .control-dots .dot{transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px rgba(0,0,0,0.9);background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.carousel .control-dots .dot.selected,.carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,0.9);color:#fff}.carousel:hover .slide .legend{opacity:1}

/* #temporaryContent {
  width: 1200px;
  margin: 0 auto;
  max-width: 90vw;
} */
.product-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  margin-bottom: 60px;
}

.product-images {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-name {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.condition-tag {
  background-color: #f0f9ff;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
  font-size: 18px;
}

.discount-price {
  color: #d00;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-selector label {
  font-size: 14px;
  color: #555;
}

.quantity-selector select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  min-width: 60px;
}

.add-to-cart-btn {
  padding: 12px 24px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-grow: 1;
}

.add-to-cart-btn:hover {
  background-color: #1d4ed8;
}

.add-to-cart-btn:disabled {
  background-color: #cbd5e1;
  cursor: not-allowed;
}

.product-description,
.technical-info {
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.product-description h2,
.technical-info h2,
.similar-products h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.product-description p {
  line-height: 1.6;
  color: #444;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-label {
  width: 40%;
  font-weight: 500;
  color: #555;
}

.spec-value {
  width: 60%;
  color: #111;
}

.similar-products {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin-top: 20px;
}

.similar-product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.similar-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.similar-product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

.similar-product-card h3 {
  font-size: 16px;
  margin: 0 0 8px 0;
  color: #333;
}

.similar-product-price {
  font-weight: 600;
  color: #111;
}

@media (max-width: 768px) {
  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .product-images img {
    max-height: 400px;
  }
}

#similarProducts {
  margin: 40px 0;
  padding: 0 20px;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}

.similar-product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.similar-product-image {
  height: 180px;
  overflow: hidden;
}

.similar-product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .detail .name {
    font-size: 2rem;
  }

  .detail .price {
    font-size: 1.5rem;
  }

  .detail .buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  #temporaryContent {
    width: 100%;
    padding: 10px;
  }

  .detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail .name {
    font-size: 1.8rem;
  }

  .detail .price {
    font-size: 1.3rem;
  }

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

@media screen and (max-width: 480px) {
  .detail {
    text-align: center;
  }

  .detail .name {
    font-size: 1.5rem;
  }

  .detail .price {
    font-size: 1.2rem;
  }

  .detail .buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* .back-btn {
  position: absulute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: "#e53935";
  color: black;
  margin-bottom: "0";
  padding: "0.5rem 1.5rem";
  border-radius: "4px";
  border: none;
  font-size: 1rem;
  box-shadow: "0 2px 4px rgba(0, 0, 0, 0.8)";
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
} */

.signin-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.signin-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 35%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.signin-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .signin-box {
    width: 45%;
    max-width: 350px;
    padding: 20px;
  }

  .signin-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .signin-box {
    width: 60%;
    max-width: 320px;
    padding: 18px;
  }

  .signin-title {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  .signin-box {
    width: 80%;
    max-width: 280px;
    padding: 15px;
  }

  .signin-title {
    font-size: 1.2rem;
  }
}

.close-button {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 1002;
}

.close-button:hover {
  background-color: #ddd;
}

@media screen and (max-width: 480px) {
  .close-button {
    top: 10px;
    right: 10px;
    padding: 8px;
  }
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.orders-container {
  font-family: "Arial", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  height: 80vh;
}

.orders-container h2 {
  color: #333;
  margin-bottom: 20px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.orders-table th,
.orders-table td {
  padding: 12px 15px;
  text-align: left;
}

.orders-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
  position: relative;
}

.orders-table tr {
  border-bottom: 1px solid #e9ecef;
}

.orders-table tr:last-child {
  border-bottom: none;
}

.orders-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.orders-table tr:hover {
  background-color: #f1f3f5;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
}

.status-badge.delivered {
  background-color: #d4edda;
  color: #155724;
}

.status-badge.shipped {
  background-color: #cce5ff;
  color: #004085;
}

.status-badge.processing {
  background-color: #fff3cd;
  color: #856404;
}

.status-badge.cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

.view-details-btn {
  background-color: transparent;
  border: 1px solid #6c757d;
  color: #6c757d;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
  transition: all 0.2s ease;
}

.view-details-btn:hover {
  background-color: #6c757d;
  color: white;
}

.sortable {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.sort-indicator {
  font-size: 0.8em;
  margin-left: 5px;
}

.no-orders {
  text-align: center;
  padding: 30px;
  color: #6c757d;
  background: #f8f9fa;
  border-radius: 4px;
  margin-top: 20px;
}
.no-orders .no-img img {
  width: 30%;
}

@media (max-width: 768px) {
  .orders-table th:nth-child(3),
  .orders-table td:nth-child(3) {
    display: none;
  }

  .view-details-btn {
    padding: 4px 8px;
    font-size: 0.8em;
  }
}

@media (max-width: 576px) {
  .orders-table th,
  .orders-table td {
    padding: 8px 10px;
    font-size: 0.9em;
  }

  .orders-table th:nth-child(1),
  .orders-table td:nth-child(1) {
    display: none;
  }
}

.orders-table-wrapper {
  max-height: 430px; /* Adjust as needed */
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.orders-table {
  width: 100%;
  border-collapse: collapse;
}
.orders-table th,
.orders-table td {
  background: #fff;
  position: relative;
  z-index: 1;
}

.search-results {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.search-results.active {
  transform: translateX(0);
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.search-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.search-header button {
  padding: 0.5rem 1rem;
  background-color: #4a4a4a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.search-header button:hover {
  background-color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  padding: 2rem;
}

.product-cards {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-cards h4 {
  margin: 0.5rem 0;
  padding: 0 1rem;
  font-size: 1rem;
  color: #333;
}

.product-cards p {
  padding: 0 1rem 1rem;
  margin: 0;
  font-weight: bold;
  color: #4a4a4a;
}

/* Empty results message styling */
.search-results > p {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
  font-size: 1.1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  .search-header {
    padding: 0.75rem 1rem;
  }

  .search-header h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
  }

  .product-cards img {
    height: 120px;
  }

  .product-cards h4 {
    font-size: 0.9rem;
  }
}

/* Animation for search results entrance */
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.search-results-enter {
  animation: slideIn 0.3s forwards;
}

.search-results-exit {
  animation: slideOut 0.3s forwards;
}


/*# sourceMappingURL=main.bf98686d.css.map*/