/* ========================================
   MDT Shop Cart System CSS
   ======================================== */

/* ========================================
   Cart Page Styles (mdt-cart.php)
   ======================================== */
.cart-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cart-message {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-weight: bold;
}

.cart-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart_iconttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    gap: 5px;
}

.cart-empty h2 {
    margin-bottom: 1rem;
    color: #333;
}

.cart-empty p {
    margin-bottom: 2rem;
    color: #666;
}

.cart-items h2 {
    margin-bottom: 3rem;
    color: #333;
}

.cart-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

tr.cart-item {
    border-bottom: 1px solid #eee;
}

.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    /* border-bottom: 1px solid #eee; */
    height: 100%;
    vertical-align: middle;
}

.cart-table th {
    background: #f8f9fa;
    color: #333;
    padding: 0.5rem 1rem;
    text-align: left;
}

.item-info__content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-image {
    width: 100px;
    position: relative;
    overflow: hidden;
    height: fit-content;
    border: solid 1px #f1f1f1;
}
.item-image:before {
	content: "";
    display: block;
    padding-top: 100%;
}
.item-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
a:hover .item-image img {
    transform: translate(-50%, -50%) scale(1.1);
}

.item-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.item-options {
    font-size: 0.9rem;
    color: #666;
}

.option {
    display: block;
    margin-bottom: 0.25rem;
}

.item-price,
.item-subtotal {
    font-weight: bold;
    color: #333;
}

form.quantity-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    border: none;
    width: 50px;
    text-align: center;
    height: 30px;
}

.quantity-input:focus {
    outline: none;
}


.cart-summary {
    padding: 0 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: end;
    gap: 13px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    margin-top: 0.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   Checkout Page Styles (mdt-checkout.php)
   ======================================== */
.checkout-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.checkout-content h2 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.checkout-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 40px;
}

.form-section {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #333;
    margin: 2rem 0 0.7rem;
    font-size: 19px;
}
.form-section h3:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
    display: none;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.9rem;
}

/* プレースホルダーのスタイル */
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #999;
    opacity: 0.7;
}

/* ブラウザ別対応 */
.form-group input::-webkit-input-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group input::-moz-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group input:-ms-input-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group textarea::-webkit-input-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group textarea::-moz-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group textarea:-ms-input-placeholder {
    color: #999;
    opacity: 0.7;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.order-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 0.5rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-weight: 500;
    color: #333;
}

.item-quantity {
    font-size: 0.9rem;
    color: #666;
}

.item-price {
    font-weight: bold;
    color: #333;
}

.summary-totals {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

/* ========================================
   Payment Page Styles (mdt-payment.php)
   ======================================== */
.payment-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.payment-content h2 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.payment-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.payment-form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .payment-form-container {
        padding: 1rem;
    }
}

.payment-method-section,
.order-confirmation {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.payment-method-section h3, .order-confirmation h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    font-size: 18px;
}

.selected-payment-method {
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.credit-card-form {
    margin-top: 1rem;
}

.credit-card-form h4 {
    margin-bottom: 1rem;
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.bank-details,
.cod-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.bank-details p,
.cod-details p {
    margin-bottom: 0.5rem;
}

.bank-notice,
.cod-notice {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.bank-notice ul,
.cod-notice ul {
    margin: 0.5rem 0 0 1rem;
}

.customer-info,
.shipping-info,
.order-items {
    margin-bottom: 1.5rem;
}

.customer-info h4,
.shipping-info h4,
.order-items h4 {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 1.1rem;
}

.customer-info p,
.shipping-info p {
    margin-bottom: 0.25rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-totals {
    border-top: 2px solid #dee2e6;
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.final-total {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    border-top: 2px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ========================================
   Review Page Styles (mdt-review.php)
   ======================================== */
.review-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.review-content h2 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.review-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-summary {
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: #fff;
}

.order-summary h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 18px;
    text-align: left;
}

.order-date {
    color: #666;
    margin: 0;
}

.review-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.review-section h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item label {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}

.info-item span {
    color: #333;
    font-size: 1.1rem;
}

.address-info, .billing-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.billing-info h4 {
    margin-bottom: 0.5rem;
    color: #555;
}

.order-items-table {
    overflow-x: auto;
}

.order-items-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.order-items-table th,
.order-items-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.order-items-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.item-name {
    width: 40%;
}

.item-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.item-options {
    font-size: 0.9rem;
    color: #666;
}

.option {
    display: block;
    margin-bottom: 0.25rem;
}

.item-price,
.item-subtotal {
    font-weight: bold;
    color: #333;
    text-align: right;
}

.item-quantity {
    text-align: center;
}

.price-breakdown {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.price-row.total {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    border-top: 2px solid #ddd;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.notes-content {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #007cba;
}

.review-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #dee2e6;
}

/* ========================================
   Complete Page Styles (mdt-complete.php)
   ======================================== */
.complete-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.complete-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.success-icon {
    margin-bottom: 1rem;
}

.complete-header h1 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.complete-message {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.order-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

/*
.order-info,
.order-items,
.shipping-info,
.payment-info,
.next-steps {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
*/

.order-info h2,
.order-items h2,
.shipping-info h2,
.payment-info h2,
.next-steps h2 {
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 0.5rem;
}

.info-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item label {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}

.info-item span {
    color: #333;
    font-size: 1.1rem;
}

.order-id {
    font-weight: bold;
    color: #007cba;
    font-size: 1.3rem;
}

.total-amount {
    font-weight: bold;
    color: #28a745;
    font-size: 1.3rem;
}

.items-list {
    display: grid;
    gap: 1rem;
}

.item-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.item-options {
    margin-bottom: 0.5rem;
}

.option {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity {
    color: #666;
}

.price {
    font-weight: bold;
    color: #333;
}

.address-card,
.payment-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.payment-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method label {
    font-weight: bold;
    color: #555;
}

.payment-method span {
    color: #333;
    font-size: 1.1rem;
}

.bank-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.bank-details h3 {
    margin-bottom: 1rem;
    color: #333;
}

.bank-info p {
    margin-bottom: 0.5rem;
}

.steps-list {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #007cba;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin: 0;
}

.complete-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 2px solid #dee2e6;
}

/* ========================================
   MDT Cart System Button Styles
   ======================================== */
.mdt-btn {
    padding: 1rem 2rem;
    min-width: 14em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s;
    line-height: 1.5;
}

.mdt-btn-primary {
    background: #2169f3;
    color: white;
}

.mdt-btn-primary:hover {
    background: #005a87;
}

.mdt-btn-secondary {
    background: #6c757d;
    color: white;
}

.mdt-btn-secondary:hover {
    background: #545b62;
}

/* カート専用ボタンスタイル */
.cart-btn {
    padding: 0.5rem 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s;
    line-height: 1.2;
    min-width: auto;
    white-space: nowrap;
}

.cart-btn-update {
    background: #2169f3;
    color: white;
}

.cart-btn-update:hover {
    background: #005a87;
}

.cart-btn-remove {
    background: #7b7b7b;
    color: white;
}

.cart-btn-remove:hover {
    background: #5a5a5a;
}

/* CUSTOM */
.checkout-summary .summary-item {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
}
.checkout-summary .summary-item:last-child {
    padding-bottom: 0;
}
.checkout-summary .summary-item .item-image {
    margin-bottom: 15px;
}
.checkout-summary .summary-item .item-info {
    width: 100%;
    flex-direction: unset;
    align-items: center;
}
.checkout-summary .summary-item .item-name {
    width: 90%;
}
.checkout-summary .summary-item .item-price, .checkout-summary .summary-item .item-subtotal {
    font-size: 14px;
}
.checkout-summary .summary-row {
    font-size: 0.8rem;
    margin-bottom: 0.2em;
}
.checkout-summary .summary-row.total {
    font-size: 1em;
}
.payment-order-items .item-info {
    width: 60%;
    flex-direction: unset;
    align-items: center;
    justify-content: space-between;
}
.payment-order-items .summary-item {
    padding: 1.5rem 0 1.5rem;
}
.payment-order-items .summary-item:last-child {
    padding-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .cart-content,
    .checkout-content,
    .payment-content,
    .review-content,
    .complete-content {
        padding: 1rem;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .item-info__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .item-image img {
        width: 60px;
        height: 60px;
    }

    .cart-actions,
    .form-actions,
    .payment-actions,
    .review-actions,
    .complete-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .checkout-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .order-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .order-items-table th,
    .order-items-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .item-name {
        width: auto;
    }

    .complete-header h1 {
        font-size: 2rem;
    }

    .info-card {
        grid-template-columns: 1fr;
    }

    .item-card {
        flex-direction: column;
        text-align: center;
    }

    .item-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-method {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    /* CUSTOM */
    .cart_iconttl {
        font-size: 18px;
    }
    
    /* テーブルヘッダーを非表示 */
    .cart-table th {
        display: none;
    }
    
    /* テーブルをカード形式に変更 */
    .cart-table table {
        display: block;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .cart-table tbody {
        display: block;
    }
    
    .cart-table tr.cart-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        background: white;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .cart-table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
        text-align: left;
    }
    
    /* 商品情報カラム */
    .cart-table td:nth-child(1) {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .item-info__content {
        display: flex;
        flex-direction: unset;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .item-details h3 {
        font-size: 14px;
        letter-spacing: 0;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .item-options {
        font-size: 0.85rem;
        color: #666;
    }
    .option {
        font-size: 11px;
        margin-bottom: 0;
    }
    
    /* 価格・数量・小計を横並びに */
    .cart-table td:nth-child(2), .cart-table td:nth-child(3), .cart-table td:nth-child(4) {
        display: inline-block;
        width: 30%;
        margin-right: 3%;
        vertical-align: top;
        font-size: 13px;
    }
    
    .cart-table td:nth-child(2) {
        text-align: left;
        width: 30%;
    }
    
    .cart-table td:nth-child(3) {
        text-align: center;
        width: 67%;
        margin-right: 0;
    }
    
    .cart-table td:nth-child(4) {
        text-align: left;
        margin-right: 0;
        width: 30%;
    }

    form.quantity-form {
        gap: 0;
        justify-content: flex-end;
    }
    
    /* ラベルを追加 */
    .cart-table td:nth-child(2)::before {
        content: "価格: ";
        font-weight: bold;
        color: #666;
        font-size: 11px;
    }
    
    .cart-table td:nth-child(4)::before {
        content: "小計: ";
        font-weight: bold;
        color: #666;
        font-size: 11px;
    }
    
    /* 操作ボタン */
    .cart-table td:nth-child(5) {
        width: 20%;
        display: inline-block;
    }
    
    .quantity-controls {
        width: 100px;
        margin: 0 auto;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .quantity-input {
        width: 40px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .cart-btn-update,
    .cart-btn-remove {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .item-price,
    .item-subtotal {
        font-size: 1rem;
        font-weight: bold;
        color: #333;
    }
    .cart-btn-remove {
        border-bottom: solid 1px #000!important;
        padding: 0rem 0.2rem!important;
        border-radius: 0;
        font-size: 0.8rem;
        min-width: unset!important;
        margin: 0 0 0 auto;
        background: unset;
        color: #333;
    }
    .cart-table td:nth-child(5) form.remove-form {
        text-align: right;
    }
}
