@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');
:root {
    --orange: hsl(26, 100%, 55%);
    --pale-orange:hsl(25, 100%, 94%);
  }
*{
    font-family: 'Kumbh Sans', sans-serif;
    margin: 0;
}
body{
    font-size: 12px;
    overflow-x: hidden;
    padding: 0 6%;
}
.d-flex{
    display: flex;
}
.header,.header-wrapper ,.profile{
    justify-content: space-between;
    align-items: center;
}
header{
    padding: 0 0.5%;
    border-bottom: 1px solid #f4f4f4;
}
.nav-list{
    display: flex;
    list-style: none;
}
.nav-item{
    padding: 12px 24px;
}
.nav-item:hover{
    border-bottom: 3px solid var(--orange);
}
.nav-link {
    text-decoration: none;
    color: gray;
    opacity: 0.8;
    font-size: 16px;
}
.profile img.cart {
    margin: 32px;
}

/*  Landing Section  */

.landing {
    justify-content:space-between;
    padding: 4%;
}
.product-img {
    width: 500px;
    height: 500px;
    border-radius: 16px;
}
.product-info {
    padding: 4% 8%;
}
.company-label {
    color: var(--orange);
    font-size: 18px;
    text-transform: uppercase;
}
.product-name{
    font-size: 42px;
    margin: 16px 0;
}
.product-description {
    color: gray;
    opacity: 0.8;
    font-size: 14px;
    word-spacing: 4px;
    line-height: 1.4rem;
    margin-top: 32px;
}
.pricing {
    padding-top: 32px ;
    padding-bottom: 8px;
}
.price{
    margin-right:8px;
    font-size: 21px;
}
.discount {
    background-color: var(--pale-orange);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--orange);
}
.pre-price{
    margin-right:8px;
    font-size: 16px;
    color: gray;
    opacity: 0.4;
    text-decoration: line-through;
}
.action-btns {
    padding: 24px 0;
}

.quatity-btn {
    background-color: #f4f4f4;
    padding: 12px 4px; 
    align-items: center;
    justify-content: space-around;
    border-radius: 8px;
}
.minus-btn {
    padding:0 21px;
    cursor: pointer;
}
.plus-btn{
    padding: 0 21px;
    cursor: pointer;
}
.quatity-btn label {
    font-size: 16px;
    font-weight: 600;
}

.cart-btn {
    background-color: var(--orange);
    padding: 12px  6rem; 
    margin-left: 21px;
    border-radius: 8px;
    color: white;
}
.cart-btn  img {
    width: 20px;
    height: 20px;
    margin: 0 4px;
}
.cart-btn label {
    font-weight: 400;
    margin-left: 8px;
}

/* Thumbnail section */

.product-thumbnails{
    margin: 21px 0;
}
.thumbnail img{
   width: 100px;
    height: 100px;   
    border-radius: 8px;
}

.thumbnail{
    width: 100px;   
    height: 100px;
    margin: 0 8px;
    border-radius: 10px;
}
.product-thumbnails .active {
    border: 2px solid hsl(26, 100%, 55%);
}
.product-thumbnails .active img {
    opacity: 0.5;
}
.cart-btn:hover,.thumbnail:hover, .cart-btn label:hover{
    cursor: pointer;
    opacity: 0.7;
}
