* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

:root {
    --primary-color: #ffac68;
}

.wrapper {
    width: 100%;
    max-width: 1280px;
    clear: both;
    margin: 0 auto;
    padding: 0 10px;
}

.container {
    margin: 25px auto;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.gap-10 {
    gap: 10px;
}

@media only screen and (max-width:576px) {
    h1, h2, h3, h4, h5, p, a {
        text-align: center;
    }
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {

    color: rgb(0, 119, 255)
}

ul {
    list-style: none;
    margin-top: 10px;
}

li {
    text-decoration: none;
    padding: 0 20px;
}

/* START HEADER COMPONENT STYLES */
header {
    padding: 30px 0;
    border-bottom: 1px solid #cecece;
    margin-bottom: 100px;
}

.cart {
    cursor: pointer;
}

.logo {
    cursor: pointer;
}

@media only screen and (max-width:576px) {
    #menu {
        display: none;
    }
}


/* END HEADER COMPONENT STYLES */

/* GALLERY STYLES */
.gallery {
    width: 100%;
    cursor: pointer;
}

.gallery img {
    border-radius: 15px;
}

.gallery__main {
    width: 70%;

}

.gallery__sub {
    width: 20%;
    margin-top: 10px;
}

.gallery__sub--active {
    border: 2px solid yellow;
}
@media only screen and (max-width:576px) {
    .gallery__sub {
        margin: 50px 0;
    }
}
/* END GALLERY STYLES */


/* Counter */
.counter {
    width: 100%;
    display: flex;
    justify-content: space-around;
    transform: translate(-60px, 0px);
}

.counter .counter__amount {
    width: 50px;
    text-align: center;
    border: none;
}

.counter .counter__numbers {
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    font-size: 20px;

}

.counter .counter__numbers button {
    color: #fff;
    font-size: 30px;
    padding: 0px 20px;
    color: var(--primary-color);
    font-weight: 800;


}

.counter .counter__numbers p {
    margin-bottom: 0px !important;
    color: #000;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
}

@media only screen and (max-width:576px) {
    .counter {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transform: none;
    }

    .counter .counter__numbers {
        width: 100%;
    }

    .counter .btn-cart {
        width: 100% !important;
    }
}

/* end counter */


/* style cart */
.cart {
    position: relative;
}

.box-cart {
    position: absolute;
    top: 81px;
    left: 400px;
    padding: 25px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 350px;
    height: 250px;
}

.box-cart__alert {
    gap: 20px;
}
@media only screen and (max-width:576px) {
.box-cart {
        top: 81px;
        left: -139px;
        background: #fff;
}

/* end style cart */