/**
 * TEATIA CARRINHO - DESIGN PREMIUM COM NOVA PALETA
 */

/* === HERO DO CARRINHO === */
.cart-hero-modern {
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cart-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite;
}

.cart-hero-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.cart-page-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-page-title .title-icon {
    font-size: 0.9em;
    display: inline-block;
    margin-right: 12px;
}

.cart-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* === CART WRAPPER === */
.teatia-cart-wrapper-modern {
    background: linear-gradient(135deg, #faf8fc 0%, #f0f4f8 50%, #fef9f3 100%);
    min-height: 60vh;
    position: relative;
}

/* Adicionar padrão decorativo de fundo */
.teatia-cart-wrapper-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(198, 163, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 205, 214, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cart-content-modern {
    padding: 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* === TABELA DO CARRINHO === */
.woocommerce-cart-form {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.shop_table thead {
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
}

.shop_table thead th {
    color: white;
    padding: 18px 15px;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.shop_table thead th:first-child {
    border-radius: 15px 0 0 0;
}

.shop_table thead th:last-child {
    border-radius: 0 15px 0 0;
}

.shop_table tbody tr {
    border-bottom: 1px solid #e8e1ea;
    transition: all 0.3s ease;
}

.shop_table tbody tr:hover {
    background: #f5f0f8;
}

.shop_table tbody td {
    padding: 25px 15px;
    vertical-align: middle;
}

.shop_table .product-thumbnail img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(198, 163, 213, 0.2);
    transition: transform 0.3s ease;
}

.shop_table tbody tr:hover .product-thumbnail img {
    transform: scale(1.05);
}

.shop_table .product-name a {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop_table .product-name a:hover {
    color: #c6a3d5;
}

.shop_table .product-price,
.shop_table .product-subtotal {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c6a3d5;
    font-family: 'Fredoka', sans-serif;
}

.shop_table .product-remove a {
    color: #e57373;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.shop_table .product-remove a:hover {
    transform: scale(1.2) rotate(90deg);
    color: #d32f2f;
}

/* Quantidade */
.quantity input[type="number"] {
    width: 80px;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.quantity input[type="number"]:focus {
    border-color: #9c27b0;
    outline: none;
}

/* Botões de ações */
.actions {
    padding: 30px 20px !important;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.coupon input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
}

.coupon input[type="text"]:focus {
    border-color: #9c27b0;
    outline: none;
}

.teatia-button-coupon,
.teatia-button-update,
button[name="update_cart"] {
    background: linear-gradient(135deg, #b2cdd6 0%, #9bc4d1 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(178, 205, 214, 0.3);
}

.teatia-button-coupon:hover,
.teatia-button-update:hover,
button[name="update_cart"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(178, 205, 214, 0.4);
}

/* === TOTAIS DO CARRINHO === */
.cart-collaterals {
    max-width: 500px;
    margin-left: auto;
}

.cart_totals {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(198, 163, 213, 0.15);
    border: 2px solid #f5f0f8;
}

.cart_totals h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c6a3d5;
    position: relative;
}

.cart_totals h2::after {
    content: '✨';
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 1.5rem;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 15px 0;
    border-bottom: 1px solid #e8e1ea;
}

.cart_totals th {
    text-align: left;
    font-weight: 600;
    color: #4a5568;
}

.cart_totals td {
    text-align: right;
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.order-total th,
.order-total td {
    font-size: 1.5rem;
    color: #c6a3d5;
    border-bottom: none;
    padding-top: 20px;
    font-family: 'Fredoka', sans-serif;
}

.checkout-button {
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%) !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 15px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    width: 100% !important;
    margin-top: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(198, 163, 213, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: 'Fredoka', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

.checkout-button::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../../../imagens/SVG/ADICIONARCARRINGO.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.checkout-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.checkout-button:hover::after {
    left: 100%;
}

.checkout-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(198, 163, 213, 0.4) !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .woocommerce-cart-form {
        padding: 20px;
        overflow-x: auto;
    }
    
    .shop_table {
        min-width: 600px;
    }
    
    .cart_totals {
        padding: 25px;
    }
}
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 20px 0 40px 0;
    text-align: center;
}

/* === CART WRAPPER === */
.teatia-cart-wrapper {
    background: var(--color-light-gray, #f9f9f9);
    min-height: 70vh;
    padding: 40px 0;
}

/* Tabela do Carrinho */
.woocommerce-cart-form {
    background: var(--color-white, white);
    border-radius: var(--radius-lg, 20px);
    padding: 35px;
    box-shadow: var(--shadow-md, 0 5px 25px rgba(0, 0, 0, 0.08));
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.shop_table thead {
    background: var(--color-light-gray, #f9f9f9);
}

.shop_table th {
    padding: 18px;
    text-align: left;
    font-family: var(--font-heading, 'Fredoka', sans-serif);
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-dark, #2d3748);
    border-bottom: 3px solid var(--color-border, #e0e0e0);
}

.shop_table td {
    padding: 25px 18px;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
    vertical-align: middle;
}

.cart_item .product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md, 12px);
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0, 0, 0, 0.05));
}

.cart_item .product-name a {
    font-weight: var(--font-weight-medium, 500);
    color: var(--color-dark, #2d3748);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color var(--transition-base, 0.3s ease);
}

.cart_item .product-name a:hover {
    color: var(--color-primary, #9c27b0);
}

.cart_item .product-price {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-accent-pink, #ff4081);
}

.cart_item .quantity input {
    width: 80px;
    padding: 10px;
    text-align: center;
    border: 2px solid var(--color-border, #e0e0e0);
    border-radius: var(--radius-sm, 8px);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold, 600);
}

.cart_item .product-subtotal {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold, 700);
    color: var(--color-dark, #2d3748);
}

.cart_item .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #ffebee;
    color: #f44336;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all var(--transition-base, 0.3s ease);
}

.cart_item .product-remove a:hover {
    background: #f44336;
    color: var(--color-white, white);
    transform: rotate(90deg) scale(1.1);
}

.actions {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.coupon {
    display: flex;
    gap: 10px;
}

.coupon input {
    padding: 12px 18px;
    border: 2px solid var(--color-border, #e0e0e0);
    border-radius: var(--radius-md, 12px);
    font-size: 1rem;
    transition: all var(--transition-base, 0.3s ease);
}

.coupon input:focus {
    border-color: var(--color-accent-pink, #ff4081);
    outline: none;
}

.coupon .button {
    background: var(--gradient-secondary, linear-gradient(135deg, #ffc107 0%, #ff9800 100%));
    color: var(--color-white, white);
    padding: 12px 25px;
    border: none;
    border-radius: var(--radius-md, 12px);
    font-weight: var(--font-weight-semibold, 600);
    cursor: pointer;
    transition: all var(--transition-base, 0.3s ease);
}

.coupon .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

button[name="update_cart"] {
    background: var(--color-light-gray, #f9f9f9);
    color: var(--color-dark, #2d3748);
    padding: 12px 30px;
    border: 2px solid var(--color-border, #e0e0e0);
    border-radius: var(--radius-md, 12px);
    font-weight: var(--font-weight-semibold, 600);
    cursor: pointer;
    transition: all var(--transition-base, 0.3s ease);
}

button[name="update_cart"]:hover {
    background: var(--color-white, white);
    border-color: var(--color-primary, #9c27b0);
    color: var(--color-primary, #9c27b0);
}

/* Totais do Carrinho */
.cart-collaterals {
    position: sticky;
    top: 20px;
}

.cart_totals {
    background: var(--color-white, white);
    border-radius: var(--radius-lg, 20px);
    padding: 35px;
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.12));
}

.cart_totals h2 {
    font-family: var(--font-heading, 'Fredoka', sans-serif);
    font-size: 1.6rem;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-border, #e0e0e0);
    color: var(--color-dark, #2d3748);
    font-weight: var(--font-weight-semibold, 600);
}

.cart_totals table {
    width: 100%;
    margin-bottom: 25px;
}

.cart_totals th,
.cart_totals td {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
}

.cart_totals th {
    text-align: left;
    font-weight: var(--font-weight-medium, 500);
    color: var(--color-gray, #666);
}

.cart_totals td {
    text-align: right;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-dark, #2d3748);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold, 700);
    padding-top: 20px;
    color: var(--color-dark, #2d3748);
}

.cart_totals .order-total td {
    color: var(--color-accent-pink, #ff4081);
}

.wc-proceed-to-checkout {
    margin-top: 20px;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gradient-pink, linear-gradient(135deg, #ff4081 0%, #f50057 100%));
    color: var(--color-white, white);
    border: none;
    border-radius: var(--radius-xl, 30px);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold, 700);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base, 0.3s ease);
    font-family: var(--font-heading, 'Fredoka', sans-serif);
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.3);
}

.wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 64, 129, 0.4);
}

.cart-security {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--color-border, #e0e0e0);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--color-gray, #666);
}

.security-icon {
    font-size: 1.3rem;
}

/* Carrinho Vazio */
.woocommerce-info {
    text-align: center;
    padding: 100px 20px;
    background: var(--color-white, white);
    border-radius: var(--radius-lg, 20px);
    box-shadow: var(--shadow-md, 0 5px 25px rgba(0, 0, 0, 0.08));
    border-left: none !important;
}

.woocommerce-info::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-image: url('../../../imagens/SVG/CARRINGO.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
}

.return-to-shop {
    margin-top: 30px;
}

.return-to-shop .button {
    background: var(--gradient-primary, linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%));
    color: var(--color-white, white);
    padding: 15px 40px;
    border: none;
    border-radius: var(--radius-xl, 30px);
    font-weight: var(--font-weight-semibold, 600);
    text-decoration: none;
    transition: all var(--transition-base, 0.3s ease);
}

.return-to-shop .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

/* Responsivo */
@media (max-width: 968px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-collaterals {
        position: relative;
        top: 0;
        order: 1;
        margin-bottom: 30px;
    }
    
    .woocommerce-cart-form {
        order: 2;
        padding: 25px 15px;
    }
    
    .shop_table th:not(.product-name):not(.product-total) {
        display: none;
    }
    
    .shop_table td {
        display: block;
        text-align: left !important;
        padding: 10px;
    }
    
    .shop_table td::before {
        content: attr(data-title);
        font-weight: var(--font-weight-semibold, 600);
        display: inline-block;
        margin-right: 10px;
    }
    
    .cart_item {
        display: block;
        border-bottom: 3px solid var(--color-border, #e0e0e0);
        margin-bottom: 20px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .coupon {
        width: 100%;
    }
    
    .coupon input {
        flex: 1;
    }
}

/* ===  WOOCOMMERCE BLOCKS - TABELA DE CARRINHO MODERNA === */
.wc-block-cart-items,
.wp-block-woocommerce-cart-line-items-block {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.wc-block-cart-items thead {
    background: linear-gradient(135deg, #e8e1ea 0%, #f5f2f6 100%);
    border-bottom: 3px solid #c6a3d5;
}

.wc-block-cart-items__header {
    font-family: 'Fredoka', sans-serif;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.wc-block-cart-items__header th {
    padding: 20px 15px;
    border: none;
}

.wc-block-cart-items__row {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wc-block-cart-items__row:hover {
    background: #faf9fb;
    transform: translateX(5px);
}

.wc-block-cart-items__row:last-child {
    border-bottom: none;
}

/* Imagem do Produto */
.wc-block-cart-item__image {
    padding: 20px 15px;
    width: 120px;
}

.wc-block-cart-item__image img {
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wc-block-cart-item__image:hover img {
    transform: scale(1.05);
}

/* Detalhes do Produto */
.wc-block-cart-item__product {
    padding: 20px 15px;
}

.wc-block-components-product-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 12px;
}

.wc-block-components-product-name:hover {
    color: #c6a3d5;
}

/* Preços */
.wc-block-cart-item__prices {
    margin-bottom: 12px;
}

.wc-block-components-product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
}

.wc-block-components-product-price__regular {
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.wc-block-components-product-price__value.is-discounted {
    color: #c6a3d5;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Badge de Desconto */
.wc-block-components-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

.wc-block-formatted-money-amount {
    font-weight: 700;
}

/* Descrição do Produto */
.wc-block-components-product-metadata__description {
    background: #f9f9f9;
    border-left: 3px solid #c6a3d5;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.wc-block-components-product-metadata__description p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Seletor de Quantidade */
.wc-block-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.wc-block-components-quantity-selector {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wc-block-components-quantity-selector__input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 10px 5px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: white;
}

.wc-block-components-quantity-selector__input:focus {
    outline: none;
}

.wc-block-components-quantity-selector__button {
    background: linear-gradient(135deg, #c6a3d5 0%, #b599c4 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-block-components-quantity-selector__button:hover:not(:disabled) {
    background: linear-gradient(135deg, #b599c4 0%, #a388b3 100%);
    transform: scale(1.05);
}

.wc-block-components-quantity-selector__button:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Botão Remover */
.wc-block-cart-item__remove-link {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d88 100%);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

.wc-block-cart-item__remove-link:hover {
    background: linear-gradient(135deg, #ff4d88 0%, #ff2e6e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

/* Coluna Total */
.wc-block-cart-item__total {
    padding: 20px 15px;
    vertical-align: middle;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wc-block-cart-item__total .wc-block-components-product-price__value {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
}

/* Responsivo */
@media (max-width: 768px) {
    .wc-block-cart-items__header-image,
    .wc-block-cart-item__image {
        display: none;
    }
    
    .wc-block-cart-items__row {
        display: block;
    }
    
    .wc-block-cart-item__product,
    .wc-block-cart-item__total {
        display: block;
        width: 100%;
    }
    
    .wc-block-cart-item__total-price-and-sale-badge-wrapper {
        align-items: flex-start;
        margin-top: 15px;
    }
    
    .wc-block-cart-item__quantity {
        flex-wrap: wrap;
    }
}
