/* ==========================================
   Kottal Premium Theme
   Product Grid
========================================== */

.kottal-products {
    padding: 90px 0;
    background: #fffdf8;
}

.kottal-products .section-header {
    text-align: center;
    margin-bottom: 55px;
}

.kottal-products .section-subtitle {
    display: inline-block;
    color: #2f6b3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kottal-products .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #23412f;
    margin-bottom: 15px;
}

.kottal-products .section-description {
    max-width: 620px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* =============================
   Product Card
============================= */

.product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* =============================
   Image
============================= */

.product-image {
    display: block;
    background: #f8f7f2;
    padding: 30px;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 220px;
    transition: .4s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* =============================
   Content
============================= */

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    margin: 0 0 15px;
    font-size: 19px;
    line-height: 1.4;
    min-height: 52px;
}

.product-content h3 a {
    color: #23412f;
    text-decoration: none;
}

.product-content h3 a:hover {
    color: #2f6b3c;
}

/* =============================
   Rating
============================= */

.rating {
    color: #f6b800;
    margin-bottom: 15px;
    font-size: 16px;
}

/* =============================
   Price
============================= */

.price {
    margin-bottom: 20px;
}

.price .normal,
.price .special {
    color: #23412f;
    font-size: 26px;
    font-weight: 700;
}

.price .old {
    margin-left: 8px;
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
}

/* =============================
   Button
============================= */

.product-card .btn-primary {
    display: inline-block;
    background: #23412f;
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.product-card .btn-primary:hover {
    background: #2f6b3c;
    color: #fff;
}

/* =============================
   Responsive
============================= */

@media (max-width:991px){

    .kottal-products {
        padding:70px 0;
    }

    .kottal-products .section-title{
        font-size:34px;
    }

}

@media (max-width:767px){

    .kottal-products .section-title{
        font-size:28px;
    }

    .product-content{
        padding:20px;
    }

}