@import url('https://fonts.googleapis.com/css2?family=Lustria&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --primary-color: #F7F2EF;
  --secondary-color: #9d704e;
}

body{
    width: 100%;
    background-color: var(--primary-color);
    overflow-x: hidden;
    
}
header{
    
}
.top-header{
    width: 100%;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
}
.brand-logo{
    height: 100%;
}
.bottom-header{
    width: 100%;
    height: 3rem;
}
.nav-link{
    font-family: "Lustria", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--secondary-color);
}
.nav-link.active{
    font-weight: 600;
    color: var(--secondary-color);
}

/*INDEX PAGE STARTS*/
.hero-section img{
    width: 100%;
}
.category-row{
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}
.category-card{
    background: transparent;
    border: none;
    text-align: center;
}
.category-card .card-title{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}

.bestseller-row{
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}
.product-card{
    background: transparent;
    border: none;
    text-align: center;
}
.product-card .card-title{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}
.btn-border{
    width: fit-content;
    border: 2px solid var(--secondary-color);
    padding: 2px;
    justify-self: center;
}
.btn-custom{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
    padding-inline: 40px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.key-points-card{
    background: transparent;
    border: none;
    text-align: center;
}
.key-points-card img{
    width: 100px;
    align-self: center;
}
.key-points-card .card-title{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}
/*INDEX PAGE ENDS*/




.topic{
    width: fit-content;
    /*border: 1px solid black;*/
    border-radius: 0 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.topic h2{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
}
.section-header{
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-header:before {
    background-color: var(--secondary-color);
    content: "";
    display: inline-block;
    height: 0.5px;
    position: relative;
    vertical-align: middle;
    width: 30%;
    /* left: 0.5em; */
    margin-left: -10%;
}
.section-header:after {
    background-color: var(--secondary-color);
    content: "";
    display: inline-block;
    height: 0.5px;
    position: relative;
    vertical-align: middle;
    width: 30%;
    /* left: 0.5em; */
    margin-right: -10%;
}


.message-box {
    max-width: 360px;
    background-color: #ffffff;
    padding: 15px;
    position: relative;
    border-radius: 10px;
    margin: 20px auto; /* Centers the box for demonstration */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.message-box::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 80%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff #ffffff transparent transparent;
}
.message-box h4{
    font-family: "Lustria", serif;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}


