/* Basic spacing for thumbnails */
.thumb-card {
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  max-width: 100px;
  text-align: center;
}

.thumb-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
}
.thumb-card:hover img {
    opacity: 1;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.thumb-card.active {
    border: 2px solid red;
    opacity: 1;
}
  .thumb-card:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
  }
  
  @media (min-width: 768px) {
    .thumb-card {
        max-width: 120px;
    }
    .thumb-card img {
        height: 100px;
    }
}


  /* Main product image styling */
  .main-product-img {
    max-height: 350px;
    object-fit: contain;
  }
  
  /* Color dots for product colors */
  .color-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid #ccc;
    cursor: pointer;
  }
  .color-dot:hover {
    opacity: 0.8;
  }
  
  /* Active size button highlight */
  .active-size {
    background-color: #dc3545 !important; 
    border-color: #dc3545 !important; 
    color: #fff !important;
  }
  
  /* Minor style for quantity input */
  .input-group > input[type="text"] {
    max-width: 50px;
  }
  
  /* Delivery/Return icons spacing */
  .border p {
    margin-bottom: 4px;
  }
/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: gray;
}

.breadcrumb-item a {
    text-decoration: none;
    color: gray;
}

.breadcrumb-item.active {
    color: black;
    font-weight: bold;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

