/* PRIMARY COLORS */
.dads-blue{
 color:#274d7b;
}
.dads-green{
    color:#a6ce39;
}
.dads-blue-bg{
    background-color:#274d7b;
}
.dads-green-bg{
    background-color:#a6ce39;
}
/* BUTTONS */
.btn-primary{
    background-color: #274d7b;
    color:white;
    border:0px;
}
a.btn-primary{
    color:white;
}
.btn-primary:hover{
    background-color: #a6ce39;
}
.btn-secondary{
    background-color: #274d7b;
    color:white;
    border:0px;
}
a.btn-secondary{
    color:white;
}
.btn-secondary:hover{
    background-color: #a6ce39;
}
/* MINICART */
.hc-minicart .hc-iconbox a {
    display: block;
    height: 32px;
    text-align: right;
    padding: 4px 10px;
    font-weight: bold;
    color: #FFF;
}
.hc-minicart .hc-iconbox a:HOVER {
    display: block;
    height: 32px;
    text-align: right;
    padding: 4px 10px;
    font-weight: bold;
    color: #FFF;
}
.bottom-border-green{
    border-bottom:3px;
    border-style: solid;
    border-color: #a6ce39;
}

/* HOMEPAGE CATEGORIES */
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-container > div {
  margin: 5px;
  width:200px;
  text-align: center;
}

.home-cat-img{
    width:100px;
}

/* IMAGEBOX */
 .img-box08{
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    margin-bottom: 50px;
    text-align: center;
    padding-bottom: 30px;
    height: calc(100% - 50px);
}
.img-box08 .product{
    margin-bottom: 16px;
}
.img-box08 .price{
    margin: 0;
    font-weight: 600;
}
.img-box08 .title{
    margin: 4px 0 4px;
    font-size: 18px;
}

/* PRODUCTS GRID */
.flex-products-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}
.product-grid-container{
    padding:20px 10px;
    text-align:center;
    width:290px;
    margin:3px;
    outline: 1px solid #eee;
    border-radius: 5px;
}
.product-grid-image{
    min-height:230px;
    vertical-align: middle;
}


/* HOTCAKES */
/* HOME PAGE CATEGORIES */
/* Container scope */
.hc-category-grid .hc-category-card {
    border: 1px solid #e5e5e5;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hc-category-grid .hc-category-card:hover {
    text-decoration: none;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Normalized image area */
.hc-category-grid .hc-category-card-img {
    height: 160px;             /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.hc-category-grid .hc-category-card-img .home-cat-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Label styling */
.hc-category-grid .home-cat-link {
    font-weight: 600;
    font-size: 0.95rem;
}

.hc-category-grid .hc-category-card:hover .home-cat-link {
    text-decoration: underline;
}

