#page-loader {
    position: fixed;
    z-index: 9999;
    background: #fff;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-color:#f38534 !important;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}
.header, .footer {
    background-color:rgb(0 0 0 / 0%);;
    padding: 15px;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header { top: 0; }
.footer { bottom: 0; }
.content {
    padding-top: 100px;
    padding-bottom: 70px;
    overflow-y: auto;
    height: calc(100vh - 100px);
}
.card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}
.card-img-top {
    width:100%;
    height: 350px;
    object-fit: cover; /* Or 'cover' if you want to fill */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.card-title, .card-text { color: #000; }
.added {
    background-color: #28a745;
    color: white;
}
button.btn.btn-primary.add-to-cart-button {
    background-color: #ed323d !important;
    border-color: #eb3240 !important;
}
.cart-icon img { width: 50px; }
.cart-quantity {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}
.mobile-cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 10px;
    z-index: 1050;
}
.mobile-cart-footer a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.cart-quantity-mobile {
    top: -5px;
    right: 20px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}
/* @media (max-width: 768px) {
    .header, .footer { padding: 10px; }
    .logo img { width: 100px; }
    .card-title { font-size: 1.1rem; }
    .card-text { font-size: 0.95rem; }
    .card-img-top { height: 150px; }
}
@media (max-width: 576px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
} */

button.increase-quantity,
button.decrease-quantity {
font-size: 24px;
padding: 12px;
line-height: 1;
min-width: 60px;
min-height: 60px;
}


.footer-nav {
background-color: #000;
color: #fff;
z-index: 9999;
font-size: 14px;
box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}
.footer-nav a {
color: #f8f9fa;
padding: 10px 12px;
text-align: center;
text-decoration: none;
flex: 1;
transition: background 0.3s;
}
.footer-nav a:hover {
background-color: #333;
color: #ffc107;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px; /* Row gap: 10px, column gap: 20px */
    font-size: 13px;
    margin-top: 8px;
}
.footer-links a {
    color: #f8f9fa;
    text-decoration: none;
    padding: 2px 8px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ffc107;
}

 .table-container {
      display: none;
    }

    .card-item {
      background-color: rgba(255, 255, 255, 0.9);
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 10px;
      color: #000;
    }

    .card-item .d-flex {
      justify-content: space-between;
      align-items: center;
    }

    @media (min-width: 768px) {
      .table-container {
        display: block;
      }
      h1{
        font-size:15px;
      }
      .mobile-cart {
        display: none;
      }
      .content {
      padding-top: 800px !important;
     }
  }

  @media (min-width: 320px) {
      
      .content {
      padding-top: 200px !important;
     }
  }