/* ===== ALIGN BREADCRUMB WITH PRODUCT CONTAINER ===== */

.velli-breadcrumb-wrapper{
  width:100%;
  background:#f8f8f8;
  border-bottom:1px solid #e6e6e6;
}

/* THIS IS THE IMPORTANT PART */
.velli-breadcrumb-inner{
  max-width:1200px;   /* same as product container */
  margin:0 auto;      /* center align */
  padding:18px 40px 12px 40px;  /* left-right spacing */
  font-size:14px;
  color:#666;
  line-height:1.4;
}

.velli-breadcrumb-inner a{
  color:#666;
  text-decoration:none;
}

.velli-breadcrumb-inner a:hover{
  color:#c89a5b;
}

.velli-breadcrumb-inner span{
  margin:0 6px;
  color:#9a9a9a;
}

/* long title fix */
.velli-breadcrumb-inner span:last-child{
  display:inline-block;
  max-width:500px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* MOBILE */
@media(max-width:768px){
  .velli-breadcrumb-inner{
    padding:12px 16px;
    font-size:12px;
  }
}