.login-area {
    background: #f7f7f7;
    padding: 16px;
    margin-top: 24px;
}
.bg-light {
    background: #f7f7f7;
}
.sub-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 12px 0;
}
.sub-categories li.active a {
    color: #111;
    font-weight: 600;
}
.accordion-content {
    margin-bottom: 12px;
}
.accordion-content summary {
    position: relative;
    display: block;
    background: #f7f7f7;
    padding: 12px;
    cursor: pointer;
}
summary h3 {
    margin: 0;
}
.accordion-content summary:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    width: 10px;
    height: 10px;
    transform: rotate(135deg);
    transition: .3s all ease-in;
}
.accordion-content[open] summary:after {
    transform: rotate(-45deg);
}

.single.product h1 {
    text-align: center;
}
.bc-link a {
    color: #f7f7f7;
    text-decoration: underline;
}

.product-header {
    background: #333;
    color: #fff;
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.mb-0 {
    margin-bottom: 0;
}
.p-4 {
    padding: 16px;
}
@media (min-width: 1024px) {
    .col-md-6 {
        width: 50%;
    }
}