* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

li {
    list-style: none;
}

button {
    outline: none;
    border: 1px solid #cacaca;
    cursor: pointer;
    padding: .6rem 1.4rem;
    border-radius: .3rem;
    background-color: #fff;
    transition: all .3s;
}

button:hover, li:hover {
    box-shadow: 3px 2px 8px #9b9797;
}

.buy-btn {
    margin-top: 1.2rem;
    padding: 1rem 2rem;
    border: none;
    text-transform: capitalize;
    background-color: #ffaf02;
}

.smart-watch{
    display: flex;
    justify-content: center;
}

.watch-wrapper .watch-wrapper img {
    position: relative;
    z-index: -999;
}


.time {
    position: absolute;
    top: 170px;
    left: 123px;
    text-align: center;
    color: #fff ;
    width: 130px;
    visibility: hidden;
}

.heart {
    position: absolute;
    top: 160px;
    left: 162px;
    height: 50px;
    animation: beat .3s infinite alternate;
    transform-origin: center;
    visibility: hidden;
}


