@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

/* Universal box-sizing and margin/padding reset */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Highlights the active navigation link for the 'blogs' page */
.container .nav .nav-items ul .product-details a {
    color: #eca049;
    text-shadow: 0px 3px 8px #eca049;
    text-shadow: 1px 1px 2px #232126;
    text-decoration: none;
}

/* Body text styling with a custom font */
body {
    font-family: 'Roboto', sans-serif;
}

/* Removes text decoration from all links */
a {
    text-decoration: none;
}

/* Product card styling */
.product-card {
    width: 380px;
    position: relative;
    box-shadow: 0 1px 5px #eca049;
    margin: 145px auto 50px;
    background: #232126;
}

/* Badge on the product card, typically for special offers */
.badge {
    position: absolute;
    left: 0;
    top: 15px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: red;
    color: #fff;
    padding: 3px 10px;
}

/* Container for product image */
.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 50px;
    background: #232126;
}

/* Styling for the product image */
.product-tumb img {
    max-width: 150%;
    max-height: 150%;
    margin-top: 50px;
}

/* Product details container */
.product-details {
    padding: 30px;
}

/* Category styling for the product */
.product-catagory {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 18px;
}

/* Product title link styling */
.product-details h4 a {
    font-weight: 500;
    display: block;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #fbb72c;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover effect for the product title */
.product-details h4 a:hover {
    color: #fbb72c;
}

/* Product description styling */
.product-details p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #ccc;
}

/* Styling for the bottom section of the product card */
.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Div elements inside product bottom section, each taking 50% width */
.product-bottom-details div {
    float: left;
    width: 50%;
}

/* Price styling */
.product-price {
    font-size: 18px;
    color: #fbb72c;
    font-weight: 600;
}

/* Styling for discounted price in the product card */
.product-price small {
    font-size: 80%;
    font-weight: 400;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}

/* Container for product links such as add to cart */
.product-links {
    text-align: right;
}

/* Links in the product card (e.g., add to cart) */
.product-links a {
    display: inline-block;
    margin-left: 5px;
    color: #e1e1e1;
    transition: 0.3s;
    font-size: 17px;
}

/* Hover effect for the product links */
.product-links a:hover {
    color: #fbb72c;
}