.custom-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.custom-product-table td,
.custom-product-table th {
    padding: 6px 8px !important;
    vertical-align: middle;
    border: 1px solid #000000;
}

.custom-product-table img {
    max-width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer; /* Add pointer cursor to indicate image is clickable */
}

.custom-product-table td:nth-child(3) {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Popup Image Styles */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-popup img {
    width: 40vw;  /* Set the image width to 40% of viewport width */
    height: auto;  /* Maintain aspect ratio */
    max-width: none; /* Remove any max-width restriction */
    max-height: 60vh; /* Limit the height to 60% of the viewport height */
    border: 2px solid #fff;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.zen-category-row td {
    padding: 8px;
    font-weight: bold;
    background-color: #dcedc8;
    color: #2e7d32;
}

#checkout-summary {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 10;
}
#checkout-summary {
    margin-top: 20px;
}

#checkout-summary table {
    border-collapse: collapse;
}

#checkout-summary td {
    padding: 10px;
    font-size: 14px;
}

#checkout-summary button#proceed-to-checkout {
    width: 100%;
    font-weight: bold;
}

.custom-product-table td:nth-child(1) {
    width: 12% !important;
}

.custom-product-table td:nth-child(2) {
    width: 20% !important;
}

.custom-product-table td:nth-child(3) {
    width: 10% !important;
}

.custom-product-table td:nth-child(4) {
    width: 10% !important;
    text-decoration: line-through;
    color: #888;
}

.custom-product-table td:nth-child(5) {
    width: 10% !important;
}

.custom-product-table td:nth-child(6) {
    width: 12% !important;
}

.custom-product-table td:nth-child(7) {
    width: 12% !important;
}

.custom-product-table td {
    padding: 8px 10px !important;
}
@media (max-width: 768px) {
  .custom-product-table {
    font-size: 10px;
  }

  .custom-product-table td,
  .custom-product-table th {
    padding: 2px 3px !important;
    white-space: normal;
    word-wrap: break-word;
  }

  .custom-product-table img {
    max-width: 25px;
  }
	  .custom-product-table td:nth-child(3) {  /* Description Column */
    width: 70px !important;
    max-width: 70px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Make columns 1–5 flexible */
  .custom-product-table td:nth-child(1),  /* Image */
  .custom-product-table td:nth-child(2),  /* Name */
  .custom-product-table td:nth-child(3),  /* Description */
  .custom-product-table td:nth-child(4),  /* MRP */
  .custom-product-table td:nth-child(5)   /* Price */
  {
    width: auto !important;
  }

  /* Balance Qty and Total columns */
  .custom-product-table td:nth-child(6) {  /* Qty */
    width: 55px !important;  /* Reduced from 70px → 55px */
  }

  .custom-product-table td:nth-child(7) {  /* Total */
    width: 55px !important;  /* Give Total more space */
  }

  /* Ensure input is still readable in Qty */
  .custom-product-table td:nth-child(6) input {
    font-size: 12px;
    padding: 2px 4px;
  }
}
#checkout-summary {
    position: sticky;
    top: 100px;
    background: #F0F5FA; /* Light blue background color */
    color: black; /* Dark text for readability */
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 10;
    border-radius: 8px; /* Rounded corners */
}

#checkout-summary table {
    border-collapse: collapse;
    width: 100%;
}

#checkout-summary td {
    padding: 10px;
    font-size: 14px;
}

#checkout-summary button#proceed-to-checkout {
    width: 100%;
    font-weight: bold;
    background: #5e0094; /* Button background */
    color: white;
    border: none;
    border-radius: 5px;
}
/* Popup Image Styles */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: auto; /* Allow scrolling if image is too large */
}

.image-popup img {
    max-width: 90%; /* Set the max width to 90% of the screen */
    max-height: 80vh; /* Set the max height to 80% of the viewport height */
    width: auto; /* Ensure image width maintains aspect ratio */
    height: auto; /* Ensure image height maintains aspect ratio */
    border: 2px solid #fff; /* Optional: add a white border */
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
#top-total-display {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    font-size: 25px !important;
    font-weight: bold !important;
    color: #5e0094 !important;
    text-align: right !important;
}

.trust-bar-wrapper {
  overflow: hidden;
  background-color: #f9f9f9;  /* Your requested background color */
  padding: 12px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.trust-bar-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
  font-weight: 500;
  font-size: 22px;
}

.trust-bar-marquee span {
  display: inline-block;
  margin-right: 80px;
  color: #e53935;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}



<!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net. Template: 699dbfe7c6af5aa656babe5f. Config Timestamp: 2026-02-24 15:12:28 UTC, Cached Timestamp: 2026-02-27 14:19:05 UTC -->