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

header nav #companyLogo {
    width: 7.5rem;
    height: fit-content;
}

header nav ul li a {
    color: grey;
    position: relative;
}

header nav ul li a:hover {
    color: black;
}

header nav ul li a::after {
    content: " ";
    position: absolute;
    background-color: #E1763E;
    transition: width 0.3s;
    bottom: -33px;
    left: 0px;
    height: 3px;
}

header nav ul li a:hover::after {
    width: 100%;
}

header nav #avatarIcon {
    width: 2.5rem;
}

header nav #avatarIcon:hover {
    border: 2px solid #ec6d28;
    border-radius: 50%;
    cursor: pointer;
}


header nav ul li {
    list-style-type: none;
}

main section.productDisplay #imageFullscreen {
    width: 25rem;
}

main section.productDisplay .imagePreviews img {
    width: 5rem;
}

main section.productDisplay .imagePreviews img:hover {
    opacity: 0.7;
    border: 2px solid #ec6d28;
    cursor: pointer;
}

main section.productDisplay .imagePreviews {
    width: 100%;
}

main section.productDisplay .productInfo p.company {
    color: grey;
}

main section.productDisplay .productInfo {
    width: 35%;
}

main section.productDisplay .productInfo .desc {
    color: grey;
}

main section.productDisplay .productInfo .cartFunctionality {
    max-height: 2rem;
    font-weight: bold;
    font-size: 11pt;
}

main section.productDisplay .productInfo .cartFunctionality .amount {
    background-color: whitesmoke;
    max-width: fit-content;
    padding: 1rem;
    height: auto;
}

main section.productDisplay .productInfo .cartFunctionality .amount i {
    color: #E1763E;
    font-size: 10pt;
}

main section.productDisplay .productInfo .cartFunctionality .addToCart {
    background-color: #E1763E;
    border: none;
}

a {
    text-decoration: none;
    color: gray;
}

.fa-minus:hover,
.fa-plus:hover,
.navPersonal .fa-cart-shopping:hover,
.fa-trash-can:hover {
    cursor: pointer;
}

.addToCart:hover,
.checkoutBtn:hover {
    opacity: 0.8;
}

.cartDropdown {
    position: absolute;
    top: 5rem;
    right: 6rem;
    background: white;
    width: 275px;
    z-index: 100;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    text-align: center;
}

.lightbox-main {
    position: relative;
}

.lightbox-main img {
    width: 400px;
    border-radius: 1rem;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: #E1763E;
    color: white;
}

.lightbox-thumbnails {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lightbox-thumbnails img {
    width: 70px;
    border-radius: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
}

.lightbox-thumbnails img.active,
.lightbox-thumbnails img:hover {
    opacity: 1;
    border-color: #E1763E;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}