/* -----------------------------
   CART PAGE WRAPPER
------------------------------ */

.page-header {
    display: none;
}

.wp-block-woocommerce-cart {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* Product Table alignment */
.wc-block-cart-items__row {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

/* Product Image */
.wc-block-cart-item__image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Product Name */
.wc-block-components-product-name {
    font-size: 17px;
    font-weight: 600;
    color: #0c1a2e;
    text-decoration: none;
}
.wc-block-components-product-name:hover {
    color: #16a34a;
}

/* Short Description */
.wc-block-components-product-metadata__description p {
    font-size: 14px;
    color: #555;
    margin: 5px 0 10px;
}

/* Price */
.wc-block-cart-item__prices .wc-block-components-product-price__value {
    font-weight: 600;
    color: #16a34a;
    font-size: 16px;
}

/* -----------------------------
   QUANTITY BOX
------------------------------ */
.wc-block-components-quantity-selector {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wc-block-components-quantity-selector__input {
    width: 48px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
}

.wc-block-components-quantity-selector__button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f3f3f3;
    border: 1px solid #ddd;
    color: #0c1a2e;
    cursor: pointer;
    font-size: 18px;
}
.wc-block-components-quantity-selector__button:hover {
    background: #e8e8e8;
}

/* Remove Item */
.wc-block-cart-item__remove-link {
    margin-top: 6px;
    font-size: 13px;
    color: #d33;
}
.wc-block-cart-item__remove-link:hover {
    text-decoration: underline;
}

/* -----------------------------
   CART TOTALS SIDEBAR
------------------------------ */
.wc-block-cart__sidebar {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

/* Cart Totals Title */
.wc-block-cart__totals-title {
    font-size: 20px;
    font-weight: 700;
    color: #0c1a2e;
    margin-bottom: 15px;
}

/* Totals Labels */
.wc-block-components-totals-item__label {
    font-weight: 500;
    color: #444;
}

/* Totals Values */
.wc-block-components-totals-item__value {
    font-weight: 700;
    color: #0c1a2e;
    font-size: 17px;
}

/* Estimated Total Bigger */
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

/* -----------------------------
   CHECKOUT BUTTON
------------------------------ */
.wc-block-cart__submit-button {
    background: black !important;
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
}

.wc-block-cart__submit-button:hover {
    background: #16a34a !important;
}

/* Coupon Toggle Button */
.wc-block-components-panel__button {
    background: #eef1f4;
    border-radius: 6px;
    padding: 10px;
    font-weight: 500;
    color: black;
    text-decoration: none;
}
.wc-block-components-panel__button:hover {
    background: #e4e7eb;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    text-decoration: none;
}

.wc-block-cart-item__wrap .wc-block-components-product-name {
    text-decoration: none;
    font-size: 16px;
}

.alignwide {
    margin-inline: 0px !important;
}