/**
 * Irmanha Cart Module Styles
 * 
 * A minimalist, high-end fashion cart design
 */

/* =============================================
   GLOBAL RESET - Prevent white background override
   ============================================= */

/* Ensure body/html don't force white background on cart page */
body.woocommerce-cart .irmanha-cart-wrapper,
body.woocommerce-cart-page .irmanha-cart-wrapper {
    background-color: transparent !important;
    background: transparent !important;
}

/* =============================================
   BASE WRAPPER
   ============================================= */

.irmanha-cart-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: transparent;
    padding: var(--irmanha-space-8) 0;
    font-family: inherit;
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    line-height: var(--irmanha-leading-normal);
}

/* =============================================
   PROGRESS BAR
   ============================================= */

.irmanha-cart-progress {
    max-width: 500px;
    margin: 0 auto var(--irmanha-space-12) auto;
}

.irmanha-cart-progress__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--irmanha-space-16);
}

.irmanha-cart-progress__step {
    display: flex;
    align-items: center;
    gap: var(--irmanha-space-2);
}

.irmanha-cart-progress__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-medium);
    background-color: #e1d5cc;
    border: 1px solid #e1d5cc;
    color: var(--irmanha-black);
    transition: var(--irmanha-transition-fast);
}

.irmanha-cart-progress__step--active .irmanha-cart-progress__number {
    background-color: var(--irmanha-beige);
    border-color: var(--irmanha-beige);
    color: var(--irmanha-white);
}

.irmanha-cart-progress__label {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
}

.irmanha-cart-progress__step--active .irmanha-cart-progress__label {
    color: var(--irmanha-black);
}

/* =============================================
   EMPTY CART STATE
   ============================================= */

.irmanha-cart-empty {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--irmanha-space-16) var(--irmanha-space-4);
}

.irmanha-cart-empty__title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: var(--irmanha-h2);
    font-weight: var(--irmanha-font-weight-normal);
    color: var(--irmanha-black);
    margin: 0 0 var(--irmanha-space-4) 0;
}

.irmanha-cart-empty__divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 0.5;
    margin-bottom: var(--irmanha-space-8);
}

.irmanha-cart-empty__message {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    margin: 0 0 var(--irmanha-space-6) 0;
}

.irmanha-cart-empty__button {
    display: inline-block;
    background-color: var(--irmanha-beige);
    color: var(--irmanha-black);
    padding: var(--irmanha-space-3) var(--irmanha-space-6);
    text-decoration: none;
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-medium);
    transition: var(--irmanha-transition-fast);
}

.irmanha-cart-empty__button:hover {
    background-color: var(--irmanha-black);
    color: var(--irmanha-white);
}

/* =============================================
   CART COLUMNS LAYOUT
   ============================================= */

.irmanha-cart-columns {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--irmanha-space-32);
    align-items: start;
}

/* =============================================
   LEFT COLUMN: CART ITEMS
   ============================================= */

.irmanha-cart-items {
    background: transparent;
}

.irmanha-cart-items__title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: var(--irmanha-h2);
    font-weight: var(--irmanha-font-weight-normal);
    color: var(--irmanha-black);
    margin: 0 0 var(--irmanha-space-4) 0;
}

.irmanha-cart-items__divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 0.5;
    margin-bottom: var(--irmanha-space-4);
}

.irmanha-cart-items__list {
    display: flex;
    flex-direction: column;
}

/* Individual Cart Item */
.irmanha-cart-item {
    display: flex;
    gap: var(--irmanha-space-6);
    padding: var(--irmanha-space-4) 0;
    position: relative;
}

.irmanha-cart-items__list > .irmanha-cart-item:last-child {
    padding-bottom: calc(var(--irmanha-space-4) + var(--irmanha-space-4));
}

.irmanha-cart-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #000000;
    opacity: 0.5;
}

/* Product Image - Portrait Orientation */
.irmanha-cart-item__image {
    flex: 0 0 180px;
    width: 180px;
}

.irmanha-cart-item__image a {
    display: block;
}

.irmanha-cart-item__image img {
    width: 100%;
    height: auto;
    aspect-ratio: var(--irmanha-aspect-portrait);
    object-fit: cover;
    display: block;
    background-color: var(--irmanha-grey);
}

/* Product Details */
.irmanha-cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--irmanha-space-2);
    padding-top: var(--irmanha-space-2);
}

.irmanha-cart-item__name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: var(--irmanha-h3);
    font-weight: var(--irmanha-font-weight-normal);
    margin: 0;
    line-height: var(--irmanha-leading-snug);
}

.irmanha-cart-item__name a {
    color: var(--irmanha-black);
    text-decoration: none;
}

.irmanha-cart-item__name a:hover {
    text-decoration: underline;
}

.irmanha-cart-item__price {
    font-size: 1.3em;
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
}

.irmanha-cart-item__price .woocommerce-Price-amount {
    font-weight: var(--irmanha-font-weight-normal);
}

.irmanha-cart-item__price .woocommerce-Price-amount bdi {
    font-size: 0.9em;
}

.irmanha-cart-item__attributes {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    text-transform: capitalize;
}

.irmanha-cart-item__attributes p {
    margin: 0;
}

/* WooCommerce item data styling */
.irmanha-cart-item__details dl.variation {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--irmanha-space-2);
}

.irmanha-cart-item__details dl.variation dt {
    margin: 0;
    font-weight: var(--irmanha-font-weight-normal);
    color: var(--irmanha-black);
    font-size: var(--irmanha-body-sm);
}

.irmanha-cart-item__details dl.variation dd {
    margin: 0 var(--irmanha-space-3) 0 0;
    color: var(--irmanha-black);
}

.irmanha-cart-item__details dl.variation dd p {
    margin: 0;
}

/* Quantity Selector - Styled exactly like product page */
.irmanha-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: var(--irmanha-space-3);
    width: fit-content;
}

.irmanha-cart-item__qty-btn {
    width: 32px;
    height: 40px;
    margin: 0;
    padding: var(--irmanha-space-2);
    border-top: 0.25px solid var(--irmanha-black);
    border-bottom: 0.25px solid var(--irmanha-black);
    border-left: none;
    border-right: none;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--irmanha-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-medium);
    transition: none;
    border-radius: 0;
    vertical-align: top;
    outline: none !important;
    box-shadow: none !important;
}

.irmanha-cart-item__qty-btn.irmanha-cart-item__qty-minus {
    border-left: 0.25px solid var(--irmanha-black) !important;
}

.irmanha-cart-item__qty-btn.irmanha-cart-item__qty-plus {
    border-right: 0.25px solid var(--irmanha-black) !important;
}

.irmanha-cart-item__qty-btn:hover,
.irmanha-cart-item__qty-btn:focus,
.irmanha-cart-item__qty-btn:active {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--irmanha-black);
    outline: none;
    box-shadow: none;
}

.irmanha-cart-item__qty-btn.irmanha-cart-item__qty-minus:hover {
    border-left-color: var(--irmanha-black) !important;
}

.irmanha-cart-item__qty-btn.irmanha-cart-item__qty-plus:hover {
    border-right-color: var(--irmanha-black) !important;
}

.irmanha-cart-item__qty-input {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border-top: 0.25px solid var(--irmanha-black) !important;
    border-bottom: 0.25px solid var(--irmanha-black) !important;
    border-left: none !important;
    border-right: none !important;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--irmanha-black);
    text-align: center;
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-medium);
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    vertical-align: top;
    box-sizing: border-box;
}

.irmanha-cart-item__qty-input::-webkit-outer-spin-button,
.irmanha-cart-item__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove Link */
.irmanha-cart-item__remove {
    margin-top: auto;
    padding-top: var(--irmanha-space-6);
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    text-decoration: underline;
    display: inline-block;
}

/* Update Cart Button - Hidden but functional */
.irmanha-cart-update {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =============================================
   RIGHT COLUMN: ORDER SUMMARY
   ============================================= */

.irmanha-cart-summary {
    position: sticky;
    top: var(--irmanha-space-4);
}

/* Force white background - must override hero module and any global styles */
body .irmanha-cart-wrapper .irmanha-cart-summary .irmanha-cart-summary__card,
body .irmanha-cart-wrapper .irmanha-cart-summary__card,
body .irmanha-cart-summary .irmanha-cart-summary__card,
body .irmanha-cart-summary__card,
.irmanha-cart-wrapper .irmanha-cart-summary .irmanha-cart-summary__card,
.irmanha-cart-wrapper .irmanha-cart-summary__card,
.irmanha-cart-summary .irmanha-cart-summary__card,
.irmanha-cart-summary__card {
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    padding: var(--irmanha-space-8);
    overflow: hidden;
}

.irmanha-cart-summary__title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: var(--irmanha-h3);
    font-weight: var(--irmanha-font-weight-bold) !important;
    color: var(--irmanha-black);
    margin: 0 0 var(--irmanha-space-6) 0;
    text-align: center;
    line-height: var(--irmanha-leading-snug);
}

.irmanha-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--irmanha-space-2) 0;
}

.irmanha-cart-summary__label {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
}

.irmanha-cart-summary__value {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    text-align: right;
    font-weight: var(--irmanha-font-weight-normal);
}

.irmanha-cart-summary__value--shipping {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
}

.irmanha-cart-summary .woocommerce-Price-amount bdi {
    font-size: 0.9em;
}

/* Cart Summary Items List */
.irmanha-cart-summary__items {
    margin-bottom: var(--irmanha-space-4);
}

.irmanha-cart-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--irmanha-space-2) 0;
    gap: var(--irmanha-space-4);
}

.irmanha-cart-summary__item-name {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--irmanha-space-1);
}

.irmanha-cart-summary__item-title {
    display: block;
    line-height: var(--irmanha-leading-snug);
}

.irmanha-cart-summary__item-size {
    display: block;
    font-size: var(--irmanha-body-sm);
    color: var(--irmanha-grey);
    text-transform: capitalize;
    line-height: var(--irmanha-leading-normal);
}

.irmanha-cart-summary__item-price {
    font-size: var(--irmanha-body);
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
    text-align: right;
    white-space: nowrap;
}

.irmanha-cart-summary__item-price .woocommerce-Price-amount bdi {
    font-size: 0.9em;
}

.irmanha-cart-summary__divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 0.5;
    margin: var(--irmanha-space-4) 0;
}

/* Total Row */
.irmanha-cart-summary__row--total .irmanha-cart-summary__label,
.irmanha-cart-summary__row--total .irmanha-cart-summary__value {
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-semibold);
}

/* =============================================
   COUPON SECTION
   ============================================= */

.irmanha-cart-coupon {
    margin-top: var(--irmanha-space-4);
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: var(--irmanha-space-4);
}

.irmanha-cart-coupon__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: var(--irmanha-space-2) 0;
    font-size: var(--irmanha-body) !important;
    color: var(--irmanha-black);
    font-weight: var(--irmanha-font-weight-normal);
    cursor: pointer;
    text-align: left;
    outline: none;
    box-shadow: none;
}

.irmanha-cart-coupon__toggle span {
    font-size: inherit !important;
}

.irmanha-cart-coupon__toggle:hover,
.irmanha-cart-coupon__toggle:focus,
.irmanha-cart-coupon__toggle:active,
.irmanha-cart-coupon__toggle:focus-visible {
    background: transparent;
    color: var(--irmanha-black);
    outline: none !important;
    box-shadow: none !important;
    border: none;
}

.irmanha-cart-coupon__chevron {
    transition: transform var(--irmanha-transition-fast);
}

.irmanha-cart-coupon__toggle--open .irmanha-cart-coupon__chevron {
    transform: rotate(180deg);
}

.irmanha-cart-coupon__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--irmanha-transition-base);
}

.irmanha-cart-coupon__content[aria-hidden="false"] {
    max-height: 100px;
}

.irmanha-cart-coupon__field {
    display: flex;
    gap: var(--irmanha-space-2);
    padding-top: var(--irmanha-space-3);
}

.irmanha-cart-coupon__input {
    flex: 1;
    padding: var(--irmanha-space-1) var(--irmanha-space-2);
    border: 1px solid var(--irmanha-grey);
    font-size: var(--irmanha-body-sm);
    background: transparent;
    color: var(--irmanha-black);
    height: auto;
    min-height: auto;
    outline: none;
    box-shadow: none;
}

.irmanha-cart-coupon__input:focus,
.irmanha-cart-coupon__input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--irmanha-black);
}

.irmanha-cart-coupon__apply {
    padding: var(--irmanha-space-1) var(--irmanha-space-2);
    background-color: var(--irmanha-black);
    color: var(--irmanha-white);
    border: none;
    font-family: var(--irmanha-body-sm);
    font-size: var(--irmanha-body-sm) !important;
    font-weight: var(--irmanha-font-weight-medium);
    cursor: pointer;
    transition: var(--irmanha-transition-fast);
    outline: none;
    box-shadow: none;
    height: auto;
    min-height: auto;
    line-height: 1.4;
}

.irmanha-cart-coupon__apply:hover,
.irmanha-cart-coupon__apply:focus,
.irmanha-cart-coupon__apply:focus-visible {
    background-color: var(--irmanha-black);
    opacity: 0.9;
    outline: none !important;
    box-shadow: none !important;
}

/* Applied Coupons */
.irmanha-cart-coupon__applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--irmanha-space-2) 0;
    font-size: var(--irmanha-body-sm);
}

.irmanha-cart-coupon__code {
    background-color: var(--irmanha-grey);
    padding: var(--irmanha-space-1) var(--irmanha-space-2);
    border-radius: var(--irmanha-radius-sm);
    font-family: monospace;
    font-size: var(--irmanha-body-sm);
}

.irmanha-cart-coupon__remove-coupon {
    color: var(--irmanha-grey);
    text-decoration: underline;
    font-size: var(--irmanha-body-sm);
}

.irmanha-cart-coupon__remove-coupon:hover {
    color: var(--irmanha-black);
}

/* =============================================
   CHECKOUT BUTTON
   ============================================= */

.irmanha-cart-checkout-btn {
    display: block;
    width: 100%;
    padding: var(--irmanha-space-4);
    margin-top: var(--irmanha-space-6);
    background-color: var(--irmanha-beige);
    color: var(--irmanha-black);
    text-align: center;
    text-decoration: none;
    font-size: var(--irmanha-body);
    font-weight: var(--irmanha-font-weight-medium);
    border: none;
    cursor: pointer;
    transition: var(--irmanha-transition-fast);
}

.irmanha-cart-checkout-btn:hover,
.irmanha-cart-checkout-btn:focus {
    background-color: var(--irmanha-black);
    color: var(--irmanha-white);
    outline: none;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .irmanha-cart-columns {
        grid-template-columns: 1fr 350px;
        gap: var(--irmanha-space-24);
    }
    
    .irmanha-cart-item__image {
        flex: 0 0 150px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .irmanha-cart-wrapper {
        padding: var(--irmanha-space-4) var(--irmanha-space-3);
    }
    
    .irmanha-cart-progress {
        margin-top: var(--irmanha-space-6);
    }
    
    .irmanha-cart-progress__container {
        gap: var(--irmanha-space-8);
    }
    
    .irmanha-cart-progress__label {
        font-size: var(--irmanha-text-mobile-lg);
        display: block;
    }
    
    .irmanha-cart-progress__number {
        width: 28px;
        height: 28px;
        font-size: var(--irmanha-text-mobile-lg);
    }
    
    .irmanha-cart-columns {
        grid-template-columns: 1fr;
        gap: var(--irmanha-space-8);
    }
    
    .irmanha-cart-summary {
        position: static;
        order: 1;
    }
    
    .irmanha-cart-items {
        order: 0;
    }
    
    .irmanha-cart-summary__card {
        padding: var(--irmanha-space-6);
        background-color: #ffffff !important;
        background: #ffffff !important;
    }
    
    .irmanha-cart-item {
        gap: var(--irmanha-space-4);
    }
    
    .irmanha-cart-item__image {
        flex: 0 0 120px;
        width: 120px;
    }

    .irmanha-cart-item__image img {
        aspect-ratio: unset;
    }
    
    .irmanha-cart-item__name {
        font-size: var(--irmanha-h3);
    }
    
    .irmanha-cart-items__title {
        font-size: var(--irmanha-h2);
    }

    .irmanha-cart-item__price {
        font-size: 1.3em !important;
        font-weight: var(--irmanha-font-weight-bold) !important; /* Bold */
    }

    .irmanha-cart-item__price .woocommerce-Price-amount {
        font-weight: var(--irmanha-font-weight-bold) !important; /* Bold */
    }

    .irmanha-cart-item__attributes {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }

    .irmanha-cart-summary__label,
    .irmanha-cart-summary__value {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }

    .irmanha-cart-checkout-btn {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }

    .irmanha-cart-coupon__toggle {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
}

@media (max-width: 480px) {
    .irmanha-cart-progress {
        margin-bottom: var(--irmanha-space-8);
    }
    
    .irmanha-cart-item {
        flex-direction: row;
        gap: var(--irmanha-space-8);
        padding: var(--irmanha-space-2) 0;
        align-items: center;
    }
    
    .irmanha-cart-item__image {
        flex: 0 0 80px;
        width: 80px;
        max-width: 80px;
    }
    
    .irmanha-cart-item__image img {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        object-fit: cover;
    }
    
    .irmanha-cart-item__details {
        flex: 1;
        padding-top: 0;
        gap: var(--irmanha-space-1);
        min-width: 0;
    }
    
    .irmanha-cart-item__name {
        font-size: var(--irmanha-h3);
        line-height: 1.3;
    }
    
    .irmanha-cart-item__name a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .irmanha-cart-item__price {
        font-size: 1.3em !important;
        font-weight: var(--irmanha-font-weight-bold) !important; /* Bold */
    }
    
    .irmanha-cart-item__attributes {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
    
    .irmanha-cart-item__quantity {
        margin-top: var(--irmanha-space-6);
    }
    
    .irmanha-cart-item__qty-btn {
        width: 20px;
        height: 24px;
        font-size: var(--irmanha-body);
        padding-left: var(--irmanha-space-2);
        padding-right: var(--irmanha-space-2);
    }
    
    .irmanha-cart-item__qty-input {
        width: 24px;
        height: 24px;
        font-size: var(--irmanha-body-sm);
    }
    
    .irmanha-cart-item__remove {
        font-size: var(--irmanha-body);
        padding-top: var(--irmanha-space-5);
    }
    
    .irmanha-cart-summary__card {
        padding: var(--irmanha-space-4);
        background-color: #ffffff !important;
        background: #ffffff !important;
    }
    
    .irmanha-cart-summary__title {
        font-size: var(--irmanha-h3);
        font-weight: var(--irmanha-font-weight-bold) !important;
    }
    
    .irmanha-cart-summary__label,
    .irmanha-cart-summary__value {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
    
    .irmanha-cart-checkout-btn {
        padding: var(--irmanha-space-3);
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
    
    .irmanha-cart-coupon__toggle {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
    
    .irmanha-cart-coupon__input {
        font-size: var(--irmanha-text-mobile-lg) !important;
    }
    
    .irmanha-cart-items__title {
        font-size: var(--irmanha-h2);
    }
    
    .irmanha-cart-coupon__toggle span {
        font-size: inherit !important;
    }
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */

/* Hide default WooCommerce notices inside cart wrapper */
.irmanha-cart-wrapper .woocommerce-message,
.irmanha-cart-wrapper .woocommerce-error,
.irmanha-cart-wrapper .woocommerce-info {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Price formatting */
.irmanha-cart-wrapper .woocommerce-Price-amount {
    color: inherit;
}

.irmanha-cart-wrapper .woocommerce-Price-currencySymbol {
    font-size: inherit;
}

/* Remove default WooCommerce table styling if any bleeds through */
.irmanha-cart-wrapper table {
    border: none;
    background: transparent;
}

.irmanha-cart-wrapper td,
.irmanha-cart-wrapper th {
    border: none;
    padding: 0;
}

