<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-bg-color: white;
    --main-font-color: black;
    --font-family: 'Poppins', sans-serif;
    --color-gold: #D8AF58;
    --nav-hover-color: #850713;
    --card-h5: #850713;
    --footer-bg: rgba(217, 217, 217, 0.5);
}

body{
    font-family: var(--font-family);
    font-size: 12px;
    background: var(--main-bg-color);
}


/* HEADER STYLING STARTS*/

.logo-img{
    width:146px;
    height: auto; 
}


.nav-link{
    color: var(--color-gold) !important;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.nav-link:hover {
    color: var(--nav-hover-color) !important;
}

.nav-search{
    width: 150px;
    /*margin-left: 50px; */
}

.header-login{
    font-size: 18px;
}

.hero{
    background: url(https://myyanga.com/storage/settings/cxukWLWJCMIcRL40wRDQTot2umMZodA1cc0iLD4Q.jpg);
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
}

.hero-btn{
    /* background: var(--color-gold); */
    color: #443007f7;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(110 80 20 / 40%), inset 0 -2px 5px 1px rgb(139 66 8), inset 0 -1px 1px 3px rgb(250 227 133);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: rgb(120,50,5);
    text-shadow: 0 2px 2px rgb(250 227 133);
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
    border-radius: 0.3em;
    height: 2.75em;
    /* line-height: 2.5em; */
    text-transform: uppercase;
}

.hero-btn:hover {
    background-size: 150% 150%;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgb(250 227 133);
    border: 1px solid rgba(165, 93, 7, .6);
    color: rgba(120, 50, 5, .8);
}

/* HEADER STYLING ENDS */


/* card section */

/* .card img{
    width: 33.33%;
} */

.img-card {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    /* width: 100%; */
    /* border: 1px solid green; */
}
.img-card img{
    width: 300px;
}
.img-text {
    text-align: center;
    /* padding: 10px 20px; */
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.img-card h5{
    color: var(--card-h5);
    font-size: 20px;
    font-weight: 00;
    font-style: normal;
    text-transform: capitalize;
}

.img-card h5:hover {
    color: var(--color-gold);
    
}

.img-card p{
    color: var(--card-h5);
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

.card-btn{
    border: 1px solid var(--color-gold);
    color: var(--card-h5);
    font-size: 12px;
    text-transform: capitalize;
}

.card-btn:hover {
    border: 1px solid var(--card-h5);
    color: var(--color-gold);
}

/* card section */

/* footer */
footer{
    background:var(--footer-bg)
}

.footer-item h4{
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    text-transform: capitalize;
}

ul{
    padding: 0;
}

.footer-item li{
    list-style-type: none;
}

.social a{
    text-decoration: none;
}

.social i{
    font-size: 20px;
}

.row-li li{
    padding: 10px;
    font-size: 15px;
    font-weight: 300;
    color: var(--card-h5);
}
.row-li-2 p{
    font-weight: 600;
    color: #000;

}
.row-li span{
    color: var(--card-h5);
    font-weight: 300;
}

.powered{
font-weight: 600;
color: #000;
font-size: 12px;
}

.powered span{
color: var(--card-h5);
font-weight: 500;
}
/* footer end */


/* shop styling */

.products-card{
    color: #000;
    cursor: pointer;
}

.product-title:hover {
    color: var(--color-gold);
}

.product-price {
    font-size: 20px;
    color: var(--card-h5);
    font-weight: 500;
}

.product-price:hover {
    color: var(--color-gold);
}


/* single product */

.product-review-img{
    border: 1px solid #000;
}

.product-details p{
    color: var(--card-h5);
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;

}

.product-details span {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    font-style: normal;

}

.product-details span:hover {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    cursor: pointer;

}

.like{
    font-size: 15px !important;
}

.like:hover {
    color: #000;
}
.cart-btn{
    text-transform: capitalize;
    font-size: 14px;
    
}

/* .cart-btn:hover {
    color: var(--color-gold);
    background: #850714bd;

} */

/* single product end */

/* blog start */
.blog-card{
    height: 550px;
    cursor: pointer;
}
.blog-img-wrapper{
    width: 250px;
    margin: auto;
}
.blog-title{
    font-size: 19px;
    text-transform: capitalize;
    color: var(--card-h5);
    text-align: center;
}

.blog{
    text-align: center;
}

.blog p{
    text-align: justify;
    line-height: 30px;
    font-size: 13px;
}

/* .blog h6{
    text-align: end;
} */


/* single blog post */

.blog-post-title{
    font-size: 40px;
    margin: 30px 0px !important ;
}
.post-img-banner{
    width: 300px;
}

#post-body{
    font-size: 20px;
    line-height: 50px;
    text-align: justify;
}
</pre></body></html>