:root {
    /* --signature-gradient: linear-gradient(45deg, #EA8D8D, #A890FE); */
    --signature-gradient: linear-gradient(45deg, rgba(234, 141, 141, 1), rgba(168, 144, 254, 1));
    --primary-color: rgb(223, 106, 106);
    --secondary-color:rgb(136, 116, 207);

    --gray8: rgba(0, 0, 0, .8);
    --star--enable: rgb(255, 196, 0);

    --header-height: 12rem;
    --navbar-height: 3.4rem;
    --header-withSearch-height: calc(var(--header-height) - var(--navbar-height));
    --header-sortBar-height: 4rem;

    --box-shadow: 0 .4rem .6rem rgba(0, 0, 20, .2);
    --product-shadow: 0 .1rem .2rem rgba(0, 0, 20, .1);
}

* {
    box-sizing: inherit;
}
html {
    /* HACK: 1rem = 10px */
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

/* Color */
.white {
    color: white;
}
.gray1 {
    color: rgba(0, 0, 0, .1) !important;
}
.gray2 {
    color: rgba(0, 0, 0, .2) !important;
}
.gray3 {
    color: rgba(0, 0, 0, .3) !important;
}
.gray4 {
    color: rgba(0, 0, 0, .4) !important;
}
.gray5 {
    color: rgba(0, 0, 0, .5) !important;
}
.gray6 {
    color: rgba(0, 0, 0, .6) !important;
}
.gray7 {
    color: rgba(0, 0, 0, .7) !important;
}
.gray8 {
    color: rgba(0, 0, 0, .8) !important;
}
.gray9 {
    color: rgba(0, 0, 0, .9) !important;
}
.black {
    color: black;
}

/* Margin */
.mt-4 {
    margin-top: .4rem !important;
}
.mt-8 {
    margin-top: .8rem !important;
}
.mt-12 {
    margin-top: 1.2rem !important;
}
.mt-16 {
    margin-top: 1.6rem !important;
}
.mt-20 {
    margin-top: 2rem !important;
}
.mt-24 {
    margin-top: 2.4rem !important;
}
.mt-32 {
    margin-top: 3.2rem !important;
}
.mb-4 {
    margin-bottom: .4rem !important;
}
.mb-8 {
    margin-bottom: .8rem !important;
}
.mb-12 {
    margin-bottom: 1.2rem !important;
}
.mb-16 {
    margin-bottom: 1.6rem !important;
}
.mb-20 {
    margin-bottom: 2rem !important;
}
.mb-24 {
    margin-bottom: 2.4rem !important;
}
.mb-32 {
    margin-bottom: 3.2rem !important;
}
.ml-4 {
    margin-left: .4rem !important;
}
.ml-8 {
    margin-left: .8rem !important;
}
.ml-12 {
    margin-left: 1.2rem !important;
}
.ml-16 {
    margin-left: 1.6rem !important;
}
.ml-20 {
    margin-left: 2rem !important;
}
.ml-24 {
    margin-left: 2.4rem !important;
}
.ml-32 {
    margin-left: 3.2rem !important;
}
.mr-4 {
    margin-right: .4rem !important;
}
.mr-8 {
    margin-right: .8rem !important;
}
.mr-12 {
    margin-right: 1.2rem !important;
}
.mr-16 {
    margin-right: 1.6rem !important;
}
.mr-20 {
    margin-right: 2rem !important;
}
.mr-24 {
    margin-right: 2.4rem !important;
}
.mr-32 {
    margin-right: 3.2rem !important;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomGrowth {
    from {
        transform: scale(0);
    }
    to {
        transform: 1;
    }
}

/* Modal Layout */
.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* display: flex; */
    display: none;
    animation: fadeIn ease .2s ;
}
.modal__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
}
.modal__body {
    background-color: white;
    margin: auto;
    position: relative;
    z-index: 1;
    border-radius: .4rem;
    overflow: hidden;
    animation: zoomGrowth ease .2s;
}

/* Button */
.btn {
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    border-radius: .3rem;
    outline: none;
    color: #222;
    background-color: white;
    text-decoration: none;
    transition: all ease .2s;
}
.btn:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn.btn--primary {
    background-color: var(--primary-color);
    color: white;
}
.btn.btn--primary:hover {
    opacity: .8;
}
.btn.btn--disable {
    cursor: default;
    background-color: #f4f4f4;
    color: #999;
}

/* !No Use */
.no-hover {
    cursor: default;
}
.no-select {
    user-select: none;
    -webkit-user-select: none;
}


/* Select Option */
.selectOption {
    font-size: 1.4rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-radius: .4rem;
    margin: .4rem;
    cursor: pointer;
    position: relative;
}
.selectOption__text {
    margin: 0;
}
.selectOption i {
    color: #666;
}
.selectOption:hover .selectOption--showOption {
    display: block;
}
.selectOption--showOption {
    position: absolute;
    z-index: 1;
    top: calc(100% + .4rem);
    left: 0;
    right: 0;
    background-color: white;
    border-radius: .4rem;
    box-shadow: var(--box-shadow);
    display: none;
}
.selectOption--showOption::after {
    content: "";
    position: absolute;
    top: -1rem;
    width: 100%;
    height: 1rem;
    /* background-color: red; */
}
.selectOption--showOption ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.selectOption--showOption li{
    line-height: 4rem;
    padding: 0 1.6rem;
}
.selectOption--showOption li:hover{
    border-radius: .4rem;
    background-color: #fafafa;
    display: block;
}
/* End: Select Option */

/* Pagination */
.pagination {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.pagination__control,
.pagination__item {
    font-size: 1.8rem;
    margin: 0 1.6rem;
}
.pagination-item__link {
    --height: 3rem;
    display: block;
    text-align: center;
    color: #999;
    text-decoration: none;
    min-width: 4rem;
    height: var(--height);
    line-height: var(--height);
    border-radius: .4rem;
    cursor: pointer;
}
.pagination-item__link:hover,
.pagination__item--active .pagination-item__link {
    background-color: var(--primary-color);
    color: white;

}
.pagination__item--active:hover .pagination-item__link {
    opacity: .9;
}
/* End: Pagination */