.cart-section {
    background: #ffffff;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 6vw;
    padding-top: 124px;
}

.cart-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1.4vw;
}

.cart-section .cart-header h2 {
    font-size: calc(3vw + 16px);
    word-spacing: 0.4vw;
    color: #483225;
    width: max-content;
}

.cart-section .cart-header .title-separator {
    flex: 1;
    height: 2px;
    background-color: #483225;
    position: relative;
    top: -1vw;
    opacity: 0.6;
}

.cart-section .content-container {
    margin: 24px 0;
    display: flex;
    gap: 12px;
}

.cart-list-container {
    flex: 7;
}

.cart-list {
    display: flex;
    flex-direction: column;
}

.table-header {
    color: #A1A1A1;
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 8px;
    margin-bottom: 24px;
}

.table-header .img-column {
    width: 80px;
}

.table-header .title-column {
    flex: 1;
}

.table-header .price-column {
    width: 100px;
}

.table-header .amount-column {
    width: 100px;
}

.table-header .actions-column {
    width: 80px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.product-item .img-container {
    width: 80px;
    height: 80px;
}

.product-item .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item .info-container {
    display: flex;
    flex: 1;
    gap: 8px;
    align-items: center;
}

.product-item .product-title-container {
    flex: 1;
}
.product-item .product-size-container {
    flex: 1;
}
.product-item .product-size-container .form-select {
    width: fit-content;
    border-radius: 0;
    color: #483225;
}
.product-item .product-size-container .form-select:focus {
    border-color: #483225;
    outline: 0;
    box-shadow: 0 0 0 .25rem #48322555;
}

.product-item .product-title-container a {
    text-transform: capitalize;
    text-decoration: none;
    color: #483225;
}

.product-item .product-price-container {
    width: 100px;
    color: #A1A1A1;
}

.product-item .product-amount-container {
    width: 100px;
}

.product-item .product-amount-container .product-amount {
    display: flex;
    align-items: center;
}

.product-item .product-amount-container .product-amount button {
    color: #483225;
    background-color: #0000;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; */
}

.product-item .product-amount-container .product-amount button svg {
    width: 20px;
}

.product-item .product-amount-container .product-amount span {
    color: #483225;
    width: 30px;
    text-align: center;
}

.product-item .product-actions-container {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item .product-actions-container {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item .product-actions-container button {
    color: #dc3545;
    background-color: #0000;
    cursor: pointer;
}

.product-item .product-actions-container button img {
    width: 14px;
}

.product-item .product-actions-container button .dark-icon {
    display: none;
}

.cart-summary {
    background-color: #EEEEEE;
    padding: 16px;
    /* border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; */
    margin-top: 24px;
    min-width: 320px;
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.cart-summary h3 {
    color: #483225;
    font-size: calc(0.7vw + 18px);
    margin-bottom: 36px;
}

.cart-summary .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 24px 0;
}

.cart-summary .price-row span {
    color: #483225;
    font-size: calc(0.5vw + 10px);
    font-weight: bold;
}

.cart-summary .price-row span:first-child {
    color: #838383;
}

.cart-summary .btn {
    padding: 12px 24px;
    background-color: #483225;
    color: #ffffff;
    text-decoration: none;
    /* border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; */
    border-radius: 0;
    font-size: calc(0.5vw + 10px);
    transition-duration: 0.1s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.cart-summary .btn img {
    width: 24px;
}

.cart-summary .btn .dark-icon {
    display: none;
}

.cart-summary .btn:hover {
    opacity: 0.9;
}

.list-separator {
    height: 2px;
    background-color: #dbdbdb;
}

.empty-cart-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 124px 24px;
    background-color: #ffffff;
}

.empty-cart-section img {
    width: 100%;
    max-width: 500px;
}

.empty-cart-section h2 {
    color: #483225;
    opacity: 0.5;
    font-family: 'Galvji';
    font-size: 28px;
    margin: 48px 0 24px 0;
}

.empty-cart-section p {
    color: #483225;
    opacity: 0.5;
    font-size: 18px;
}

@media screen and (max-width: 1024px) {
    .cart-section .content-container {
        flex-direction: column;
    }

    .cart-section .content-container>* {
        width: 100%;
    }

    .cart-summary {
        min-width: auto;
    }
}

@media screen and (max-width: 640px) {
    .table-header {
        display: none;
    }

    .product-item {
        align-items: stretch;
        margin: 0;
    }

    .product-item .info-container {
        flex-wrap: wrap;
        gap: 0;
    }

    .product-item .info-container>* {
        width: 50%;
    }

    .product-item .product-title-container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        order: 1;
    }

    .product-item .product-size-container {
        order: 3;
        width: 100%;
        margin: 5px 0;
        flex: none;
    }

    .product-item .product-size-container .form-select {
        padding: .1rem 2rem .1rem .45rem;
    }

    .product-item .product-actions-container {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        order: 2;
    }

    .product-item .product-amount-container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        order: 4;
    }

    .product-item .product-price-container {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        order: 5;
    }

    .list-separator {
        margin: 16px 0;
    }
}
