/* WooCommerce Cart Page Styles */
.wc-block-components-sidebar-layout .wc-block-components-main{
    width: 62% !important;
}
.wc-block-components-sidebar{
    width: 33% !important;
}

.is-large.wc-block-cart .wc-block-cart-items th {
    padding: 8px 16px 8px 16px !important;
}
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    background: var(--accent-color) !important;
}
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained span {
    opacity: 1;
    color: white !important;
}
.wc-block-components-totals-wrapper {
    padding: 20px 20px !important;
}

header.flexy-cart-header-page {
    text-align:center;
}

.wp-block-woocommerce-cart {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Cart Layout */
.wc-block-components-sidebar-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Cart Table */
.wc-block-cart-items {
    width: 100%;
    background: #191919;
    border-radius: 16px;
    border-collapse: collapse;
}

.wc-block-cart-items__header {
    width: 100%;
    background: #222;
    border-radius: 16px 16px 0 0;
}

.wc-block-cart-items__header th {
    padding: 20px;
    text-align: left;
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Cart Items */
.wc-block-cart-items__row {
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
}

.wc-block-cart-items__row td {
    padding: 20px;
    vertical-align: top;
}

.wc-block-cart-item__image {
    width: 100px;
}

.wc-block-cart-item__image img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.wc-block-components-product-name {
    width: 100%;
    color: var(--white-color);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

/* Price Styles */
.wc-block-components-product-price {
    width: 100%;
    font-size: 16px;
    color: var(--white-color);
}

.wc-block-components-product-price__regular {
    color: var(--text-color);
    text-decoration: line-through;
    margin-right: 10px;
}

.wc-block-components-product-price__value.is-discounted {
    color: var(--accent-color);
}

/* Quantity Selector */
.wc-block-components-quantity-selector {
    width: auto;
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 8px;
    padding: 5px;
    margin: 15px 0;
}

.wc-block-components-quantity-selector__input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-weight: 600;
}

.wc-block-components-quantity-selector__button {
    width: auto;
    background: transparent;
    border: none;
    color: var(--white-color);
    padding: 5px 10px;
    cursor: pointer;
}

.wc-block-cart-item__remove-link {
    width: auto;
    background: transparent;
    border: none;
    color: var(--error-color);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
}

/* Cart Sidebar */
.wc-block-cart__sidebar {
    width: 100%;
    background: #191919;
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
}

.wc-block-cart__totals-title {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

/* Totals */
.wc-block-components-totals-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--divider-color);
}

.wc-block-components-totals-footer-item {
    width: 100%;
    border: none;
    font-size: 20px;
    font-weight: 600;
}

/* Checkout Button */
.wc-block-cart__submit-button {
    width: 100%;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;
    border-radius: 100px;
    padding: 16px 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.wc-block-cart__submit-button:hover {
    opacity: 0.9;
}

/* Sale Badge */
.wc-block-components-sale-badge {
    width: auto;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-block-components-sidebar-layout {
        width: 100% !important;
        grid-template-columns: 1fr;
    }
    .wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
        width: 100% !important;
    }
    .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
        width:100%!important;
    }
    
    .wc-block-cart-items__header-image {
        display: none;
    }
    
    .wc-block-cart-item__image {
        display: none;
    }
}