

.item-small, .item-large, .product-item .item-thumb {overflow: hidden;}
.item-small img, .item-large img, .product-item .item-thumb img { width: 100%;}

/* ==========================================================================
    Structure & Defaults
   ========================================================================== */

a {
  color: #26b864;
  text-decoration: none !important;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
a:hover {color: #f5a200;}
h1, h3 {font-family: "Open Sans", Arial, sans-serif; color: #444444;}
h1 {font-size: 2.0em;}
h3 {font-size: 0.9em;}

/* ==========================================================================
    Products Styling
   ========================================================================== */
.product-item {border: 1px solid #CCCCCC; margin-bottom: 10px;}
.product-item .item-thumb {-webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */  backface-visibility: hidden;  position: relative;  z-index: 95;}
.product-item .item-thumb .note {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: white;
  color: #444444;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  z-index: 96;
}
.product-item .item-thumb .overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #26b864;
    padding: 20px;
    z-index: 97;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    opacity: 0;
    filter: alpha(opacity=0);
}
.product-item .item-thumb .overlay .overlay-inner { width: 100%; height: 100%; text-align: center;}
.product-item .item-thumb .overlay .overlay-inner a.view-detail {
  position: relative;
  margin-top: 45%;
  display: block;
  background: url(../images/active-state.png) no-repeat;
  background-position: center 20px;
  padding-bottom: 30px;
  color: #26b864;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.product-item .item-thumb:hover .overlay {opacity: 1; filter: alpha(opacity=100);}
.product-item h3
{
    margin: 15px 0 12px 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    height: 50px;
    vertical-align: top;
    line-height: 18px;
}
.product-item span {font-size: 14px;}
.product-item span em {font-weight: 700; font-style: normal;}
.product-item span em.price { color: #26b864;}
.product-item span em.text-muted { color: #a3a7aa; text-decoration: line-through; font-weight: 600;}
