.fa-search::before {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    vertical-align: middle;
    content: "";
    font-family: technocy-icon;
    font-variant: normal;
}

.right-menu,
.left-menu {
    flex-shrink: 0;
    max-width: 245px;
}

.middle-area {
    flex-grow: 1;
    text-align: center;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 10px;
    background-color: var(--bs-white);
    box-shadow: 0 0 6px 2px rgb(33 33 33 / 20%);
    width: 55px;
    height: 45px;
    border-radius: 10px;
}

.menu-btn i {
    font-size: 20px
}

.title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 0;
}

.left-total-side {
    border: 2px solid #000;
    padding: 5px 10px;
    font-weight: 700;
}

.heading {
    background-color: #6F6F6F;
    color: #fff;
    font-weight: 700;
    border-radius: 0;
    padding: 5px 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.components-category {}

.btn-component {
    display: block;
    width: 100%;
    background-color: var(--bs-white);
    border-top: 1px solid #ccc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.pc-build-select-btn {
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 13px;
}

.build-card {
    background-color: var(--bs-white);
    border: 1px solid #ccc;
}

.category-wrapper {
    margin-bottom: 5px;
}

.products-in-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.product-card .product-image {
    flex: 0 0 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card .product-details {
    flex: 1;
}

.product-card .product-details .category {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-card .product-details .product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-card .product-details .power-consumption {
    font-size: 12px;
    color: #666;
}

.product-card .product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-card .qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.product-card .qty-control .qty-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s;
}

.product-card .qty-control .qty-btn:hover {
    background-color: #e0e0e0;
}

.product-card .qty-control .qty-input {
    border: none;
    width: 40px;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}

.product-card .qty-control input[type="number"]::-webkit-outer-spin-button,
.product-card .qty-control input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card .qty-control input[type="number"] {
    -moz-appearance: textfield;
}

.product-card .product-price {
    min-width: 100px;
    text-align: right;
}

.product-card .product-price .price-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}

.product-card .product-price .price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.product-card .remove-btn {
    flex: 0 0 auto;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    font-size: 18px;
    color: #666;
}

.product-card .remove-btn:hover {
    background-color: #ffe6e6;
    border-color: #ff4444;
    color: #ff4444;
}

.products-container {
    margin-top: 15px;
}

.category-section {
    margin-bottom: 20px;
}

.category-header {
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-left: 4px solid #333;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.object-fit-contain {
    object-fit: contain;
}

.category-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.found-text {
    font-size: 14px;
    margin-bottom: 0;
    color: rgb(134, 133, 133);
    font-weight: normal;
}


@media screen and (max-width: 767px) {
    .menu-btn {
        box-shadow: 0 0 6px 2px rgb(33 33 33 / 0%);
        width: 35px;
        height: 35px;
    }
}