header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgb(var(--primary-rgb), 0.8);
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.header-logo {
    width: 75px;
}

.header-navigation ul > li > a {
    padding: 25px 20px;
    color: var(--bs-gray-100);
    font-weight: 500;
    font-size: 1.1em;
    display: block;
    letter-spacing: .3px;
}

.header-navigation ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    z-index: 2;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.05);
    padding: 5px;
    transition: var(--transition-default);
    border-radius: 3px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation ul > li:hover > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

.header-navigation ul > li > ul > li > a {
    color: var(--bs-gray-800);
    padding: 8px 10px;
    font-weight: 400;
    transition: var(--transition-default);
    border-radius: 3px;
}

.header-navigation ul > li > ul > li + li {
    border-top: 1px solid rgba(128, 128, 128, 0.11);
}

.header-navigation ul > li > ul > li:hover > a {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.product-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 70%;
    left: 50%;
    transition: 0.4s ease;
    transform: translateX(-50%);
    z-index: -1;
    clip-path: polygon(74% 0, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom, #5a646e 50%, rgb(41 46 50) 70%);
    opacity: 0;
    pointer-events: none;

}

.product-card:hover .card-title {
    color: var(--bs-white)
}

.product-card:hover .card-price {
    color: var(--bs-gray-100);
}

.product-card:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
}

.detail-product__top .nav-pills .nav-link {
    color: var(--bs-gray-800);
    font-size: 1.1em;
    border-bottom: 2px solid transparent;
}

.detail-product__top .nav-pills .nav-link.active {
    background-color: transparent;
    border-bottom: 2px solid var(--secondary-color);
}

.detail-product__top::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: -1;
    background-color: #f6f6f6;
}

.section-heading .heading-title.detail-product__title {
    font-size: 2.6em;
}

.detail-product__bottom .box-product .box-product__top {
    height: 70vh;
}

.detail-product__bottom .box-product .box-product__top .layer {
    max-width: 350px;
    width: 100%;
    height: max-content;
}


footer {
    background-color: var(--primary-color);
}
