header {
    display: inline-flex;
    flex-direction: column;
    background-color: rgb(40, 40, 40);
    color: #fff;
    width: 100%;
    height: 25vh;
    text-align: center;
    justify-content: center;
}

header h1 {
    font-size: 3rem;
    margin-top: 1vh;
}

header h5 {
    margin-top: -1vh;
}

header h5 a {
    text-decoration: none;
}

header h5 a span {
    color: gold;
    font-size: 1.1rem;
    text-align: center;
}

header h5 a {
    color: rgb(75, 75, 75);
    font-size: 1.1rem;
    text-align: center;
    margin-top: -3vh;
}

.title {
    font-weight: 900;
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-decoration-line: underline;
    letter-spacing: 0.1rem;
}

.btn {
    background-color: rgb(255, 187, 0);
    height: 2.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    border: none;
    font-size: 1.2rem;
    transition: letter-spacing 0.4s ease-in-out, width 0.4s ease-in-out;
    margin: 2rem;
}

.btn:hover {
    letter-spacing: 0.1rem;
    width: fit-content;
    padding: 0.5rem 1rem;
}

.products {
    margin-bottom: 2rem;
    text-align: center;
}

.products .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
    justify-content: center;
    margin: 2rem;
}

.products .box-container .box {
    display: flex;
    width: fit-content;
    padding: 1rem 3rem;
    border: 0.1rem solid #000;
    position: relative;
    gap: 2rem;
    text-align: center;
}

.products .box-container .box .image {
    height: 20rem;
    width: 100%;
    object-fit: contain;
}

.products .box-container .box .fa-times {
    position: absolute;
    margin-top: -30.5rem;
    margin-right: -20rem;
    padding: 0.5rem;
    text-decoration: none;
    background-color: red;
    color: #fff;
    border: 0.1rem solid black;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.3rem;
}

.products .box-container .box .fa-eye {
    position: absolute;
    visibility: hidden;
    margin-top: -30.5rem;
    margin-left: -20rem;
    padding: 0.5rem;
    text-decoration: none;
    background: none;
    color: black;
    border: 0.1rem solid black;
    font-size: 1.3rem;
    transition: 0.2s;
}

.products .box-container .box:hover .fa-eye {
    visibility: visible;
}

.products .box-container .box .fa-times:hover {
    background-color: rgb(80, 80, 80);
}

.products .box-container .box .cat {
    color: rgb(80, 80, 80);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
}

.products .box-container .box .cat:hover {
    text-decoration: underline;
}

.products .box-container .box .name {
    color: black;
    font-size: 1.4rem;
    font-weight: 540;
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.products .box-container .box .flex {
    display: flex;
    gap: 5rem;
}

.products .box-container .box .flex .price {
    font-size: 1.8rem;
}

.products .box-container .box .flex .price span {
    font-size: 2rem;
    color: rgb(85, 85, 85);
}

.products .box-container .box .flex .qty {
    font-size: 1rem;
    text-align: center;
}

.products .box-container .box .flex .fa-edit {
    font-size: 1.5rem;
    cursor: pointer;
    border: 0.1rem solid black;
    width: 3.5rem;
    background-color: gold;
    color: black;
    height: 2.5rem;
}

.products .box-container .box .sub-total {
    font-size: 1.2rem;
    margin-left: -11.5rem;
    color: rgb(85, 85, 85);
}

.products .box-container .box .sub-total span {
    font-size: 1.3rem;
    color: red;
}

.products .cart-total p {
    font-size: 1.2rem;
    color: rgb(85, 85, 85);
}

.products .cart-total span {
    font-size: 1.3rem;
    color: red;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    user-select: none;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}