@charset "UTF-8";
/* This CSS Document is for personalising the product page. */


.thumbnail-images img {
						height: 80px;
						margin-right: 10px;
						cursor: pointer;
						}

.price {
		  font-size: 1.5rem;
		  color: #8D2224;
			   }
 
/* Thumbnail row below main product image */
.thumbnail-images {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;   /* Allows thumbnails to move onto a new line if more are added */
  gap: 1px;         /* Space between thumbnails */
}

/* Individual thumbnail image */
.thumbnail-images a img {
  width: 80px;
  height: auto;
  display: block;
}


/* This is to align the caption of the image in the lightbox. */
.lb-data .lb-caption {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* Lightbox caption line spacing adjustment */
.lb-caption .caption-subline {
  display: block;
  margin-top: 4px; /* Adjust spacing between main line and second line */
  font-size: 0.95em; /* Optional: make subline slightly smaller */
  line-height: 1.2;  /* Tighter spacing for just this line */
  text-align: center; /* Optional: center align if needed */
}

/* ---------- The following codes are for pesonalising the stock quantity and Just Restocked pills. ----------- */

/* Stock badge — shared look */
#stock-badge.badge {
  font-size: 0.95rem;
  padding: .35rem .6rem;
  border-radius: 999px;          /* fully rounded pill */
  letter-spacing: .2px;
}

/* Colors (override Bootstrap) */
#stock-badge.badge-success {      /* In stock */
  background: #15803d;            /* deep green */
  color: #fff;
}
#stock-badge.badge-warning {      /* Low stock */
  background: #f59e0b;            /* amber */
  color: #111;
}
#stock-badge.badge-danger {       /* Sold out */
  background: #dc2626;            /* red */
  color: #fff;
}

/* “Just restocked” pill */
#restock-pill.badge {
  font-size: 0.8rem;
  padding: .25rem .5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
#restock-pill.badge-info {
  background: #0ea5e9 !important;           /* cyan 0ea5e9*/
  color: #062436;
}

/* Optional: make the restock pill gently pulse */
@keyframes pillPulse {
  0% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(14,165,233,.35); }
  70%{ transform: scale(1.02);box-shadow: 0 0 0 10px rgba(14,165,233,0); }
  100%{transform: scale(1);   box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}
#restock-pill:not(.d-none) {
  animation: pillPulse 2.2s ease-out infinite;
}
/* ------------------------- This is where the codes for the pills end. ---------------------------------- */

/*-------------- This code is to show the image number on the images displayed in the lightbox -------------- */
 .lb-data .lb-details {
  width: 100% !important;
  text-align: center !important;
}

.lb-data .lb-caption {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.lb-data .lb-number {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  text-align: left !important;
  opacity: 1 !important;
  padding-top: 8px !important;
}

/* Lightbox size fix - use this block only */
.lightbox .lb-outerContainer,
.lightbox .lb-container,
.lightbox .lb-dataContainer {
  width: auto !important;
  height: auto !important;
  max-width: 90vw !important;
  margin: 0 auto !important;
}

.lightbox .lb-image {
  display: block !important;
  width: auto !important;
  height: calc(100vh - 200px) !important;
  max-width: 90vw !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}
/* --------------------------- End of image numbers in the lightbox ---------------------------------------*/


/* ------------ To remove the black rectangles in the corners of the main image in the lightbox -------------*/
.lb-outerContainer,
.lb-container {
  background: #fff !important;
}

.lb-outerContainer {
  overflow: hidden !important;
}
/*--------- End of removing the black rectangles in the corners of the main image in the lightbox -------------*/


/* ----------------------Optional refinement (very nice UX) --------------------------- */
.product-thumb-option.active img {
  border: 2px solid #333;
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
}
/* -----------------End of Optional refinement (very nice UX) ------------------------- */


/* ------------------------------------------------------------------------------------------------------- */
/* Make product description bullet lists align with normal text and use the same font size as the rest of the description */
.qs-product-description ul {
  padding-left:1.2rem;
  margin-left: 0;
  list-style-position: outside;
}

/* Make list items the same size as the normal description paragraphs */
.qs-product-description li {
  font-size: 1.1rem;
}

/* Keep the description wrapper full width inside the Bootstrap column */
.product-description {
  width: 100%;
}
/* ------------------------------------------------------------------------------------------------------- */

/* =======================================================================================================
   											Breadcrumb navigation
==========================================================================================================*/

.qs-breadcrumbs {
  margin: 15px 0 20px;
  font-size: 0.95rem;
}

.qs-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qs-breadcrumbs li {
  display: flex;
  align-items: center;
  color: #666;
}

/* Add the separator between breadcrumb items */
.qs-breadcrumbs li + li::before {
  content: ">";
  margin: 0 10px;
  color: #999;
}

/* Style links */
.qs-breadcrumbs a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.qs-breadcrumbs a:hover {
  color: #000;
  text-decoration: underline;
}

/* Current page */
.qs-breadcrumbs li[aria-current="page"] {
  color: #000;
  font-weight: 600;
}
/* =======================================================================================================
   											End of Breadcrumb navigation
==========================================================================================================*/




