* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#product-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/productBg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* product-section */
.product-filter-btn.product-active {
    background-color: #007F73;
    color: #ffff;
}

.product-filter-btn {
    text-align: center;
    background-color: #E9ECEC;
    color: #999;
    transition: all 0.5s ease;
    cursor: pointer;
}

.product-filter-btn:hover {
    background-color: #007F73;
    color: #fff;
}

.pfilter-box .pfilter-option {
    display: none;
    transition: all 0.5s ease;
}

.box {
    height: 50px;
    background-color: #E9ECEC;
    padding: 20px;
}

.pfilter-box {
    background-color: #E9ECEC;
}

.pfilter-box .card {
    background-color: #E9ECEC;
}

.box>i {
    color: #777;
}

.box>input {
    flex: 1;
    height: 40px;
    border: none;
    outline: none;
    font-size: 18px;
    padding-left: 10px;
    background-color: #E9ECEC;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: all 0.5s ease;
}

.pfilter-color-active input[type="checkbox"]:checked {
    transition: all 0.5s ease;
}

.pfilter-active input[type="checkbox"]:checked {
    background: linear-gradient(#36DFF1, #007F73);
    border-color: #007F73;
    transition: all 0.5s ease;
}

.pfilter-active-remove input[type="checkbox"]:checked {
    background: linear-gradient(#36DFF1, #007F73);
    border-color: #007F73;
    transition: all 0.5s ease;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}


.pfilter-active-remove.pfilter-active {
    transition: all 0.5s ease;
    background-color: #007F733D;
}

.pfilter-active-remove {
    transition: all 0.5s ease;
    background-color: #007F730F;
}

.pfilter-color-active {
    background-color: #007F733D;
}

.pfilter-color-active-remove {
    background-color: #007F730F;
}



.slider {
    height: 100vh;
    margin-top: -50px;
    position: relative;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #000 40%, transparent);
}

.slider .list .item .content {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}

.slider .list .item .content p:nth-child(1) {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .list .item .content h2 {
    font-size: 100px;
    margin: 0;
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
    animation-duration: 1.3s;
}

.arrows {
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}

.arrows button {
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}

.arrows button:hover {
    background-color: #eee;
    color: black;
}

.thumbnail {
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail::-webkit-scrollbar {
    width: 0;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active {
    filter: brightness(1.5);
}

.thumbnail .item .content {
    position: absolute;
    inset: auto 10px 10px 10px;
}

@media screen and (max-width: 678px) {
    .thumbnail {
        justify-content: start;
    }

    .slider .list .item .content h2 {
        font-size: 60px;
    }

    .arrows {
        top: 10%;
    }
}

.product-tiles {
    height: 250px;
    transition: background-color 0.5s ease, width 0.5s ease;
}

.product-tiles .card {
    height: 120%;
    width: 100%;
    position: relative;
    transition: all 1s ease;
}

.product-tiles .product-details {
    height: 100%;
    width: 100%;
    transition: all 1s ease;
    background-color: #E9ECEC;
}

.product-tiles .card:hover .product-details {
    height: 80%;
    box-shadow: 0 0 10px #999;
}

.product-tiles .card img {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 1s ease;
}

.product-tiles .card:hover img {
    transform: scale(1.2);
    transition: all 1s ease;
}

.product-tiles .img-card .image-parent {
    height: 85%;
    overflow: hidden;
    transition: all 1s ease;
}

.product-tiles .img-card .image-content {
    height: 15%;
    transition: all 1s ease;
}

.product-tiles .img-card:hover .image-parent {
    transition: all 1s ease;
    box-shadow: 0 0 10px #999;
}

.product-tiles .card .img-card {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    transition: top 1s ease, transform 1s ease;
    background-color: #E9ECEC;
}

.product-tiles .card:hover .image-parent {
    height: 100%;
    transition: all 1s ease;
}

.product-tiles .card:hover .img-card {
    top: -30%;
    height: 100%;
    transform: scale(0.8);
    transition: all 1s ease;
}

.product-tiles .action-link {
    position: relative;
    overflow: hidden;
}

.product-tiles .card:hover .view-tile {
    bottom: 0;
    opacity: 1;
}

.product-tiles .action-link .view-tile {
    position: absolute;
    bottom: -3rem;
    left: 0;
    text-align: center;
    padding: 0.5rem 0;
    transition: all 1s ease;
    opacity: 0;
    text-decoration: none;
    width: 100%;
    background-color: #007F73;
}

.p-tile-show-parent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.p-tile-show-child1 {
    width: 35%;
    margin: 0;
    margin-left: -6%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-tile-show-child2 {
    width: 40%;
}

.p-tile-show-child3 {
    width: 35%;
    margin: 0;
    margin-right: -6%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-sub-parent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-image {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 100%;
}

.p-image:hover {
    box-shadow: 0 0 10px #000;
}

.p-image img {
    border-radius: 10px;
    transition: all 0.5s ease;
}

.p-image img:hover {
    transition: all 0.5s ease;
    transform: scale(1.5) rotate(10deg);
}

.p-tile-show-child2 {
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 10px;
}

.p-tile-show-child2 img {
    transition: all 0.5s ease;
}

.p-tile-show-child2:hover {
    box-shadow: 0 0 20px #000;
}

.p-tile-show-child2 img:hover {
    transition: all 0.5s ease;
    transform: scale(1.5) rotate(-10deg);
}

.p-tile-show-parent {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}