.cart-matec-icon{
    cursor:pointer;
}
.cart-matec-notification {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cart-matec-notification .notification-content {
    display: flex;
    align-items: center;
}

.cart-matec-notification .product-title {
    margin-right: 10px;
}

.cart-matec-notification .product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}


.cart-matec-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    z-index: 99999;
}


.cart-matec-full-cart {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 300px;
    background-color: #fff;
    border-left: 1px solid #ddd;
    z-index: 99999;
    overflow-y: auto;
}


.cart-matec-full-cart {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
}

.full-cart-header, .full-cart-footer {
    padding: 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.full-cart-footer {
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;    
    gap: 10px;
}

.full-cart-footer a {
    background: var( --e-global-color-primary );
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-family: "Montserrat";
      font-weight: 600;
      font-size: 14px;
      color: #fff !important;
}


.full-cart-footer #ver-carrito{
    background: #191c1f;
}

.full-cart-content {
    overflow: auto;
    flex: 1;
    padding: 10px;
}

.cart-item {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-item-image {
    flex: 1;
    text-align: center;
}

.cart-item-image img {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
}

.cart-item-info {
    flex: 2;
    padding-left: 15px;
}

.cart-item-info h2 {
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
}

.cart-item-info p {
    margin: 0;
    margin-bottom: 5px;
}
