.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    margin-right: 15px;
}

.cart-item-image img {
    border-radius: 4px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-category {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.cart-item-quantity button {
    padding: 2px 8px;
    font-size: 12px;
}

.cart-item-quantity .quantity {
    min-width: 20px;
    text-align: center;
}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    animation: slideIn 0.3s ease-out;
    z-index: 9999;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-inline {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    margin-top: 10px;
}

.cart-inline.active {
    display: block;
}

.cart-inline-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-inline-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.cart-inline-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

/* Ajustes para o RD Navbar */
.rd-navbar-basket-wrap {
    position: relative;
}

.rd-navbar-basket {
    position: relative;
    cursor: pointer;
}

.rd-navbar-basket .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

/* Estilo para o botão de remover */
.remove-item {
    color: #dc3545;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-item:hover {
    color: #c82333;
}

.cart-inline-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.cart-inline-figure {
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-inline-figure img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-inline-name {
    flex: 1;
    margin-right: 15px;
    min-width: 0;
}

.cart-inline-name h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-inline-name p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.cart-inline-quantity {
    margin-right: 15px;
    flex-shrink: 0;
}

.table-cart-stepper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-cart-stepper button {
    padding: 2px 8px;
    font-size: 12px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.table-cart-stepper button:hover {
    background: #f5f5f5;
}

.table-cart-stepper .quantity {
    min-width: 30px;
    text-align: center;
}

/* Estilos para o carrinho vazio */
.cart-items .text-center {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Estilos para a página do carrinho */
.breadcrumbs-custom {
    position: relative;
    padding: 35px 0 40px;
    background: #2b2b2b;
    text-align: center;
}

.breadcrumbs-custom-body {
    position: relative;
    z-index: 1;
}

.breadcrumbs-custom-title {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.breadcrumbs-custom-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.breadcrumbs-custom-img img {
    width: 100%;
    height: auto;
}

.breadcrumbs-custom-footer {
    padding-top: 15px;
}

.breadcrumbs-custom-path {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs-custom-path li {
    position: relative;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.breadcrumbs-custom-path li:after {
    content: '/';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    color: #fff;
}

.breadcrumbs-custom-path li:last-child:after {
    display: none;
}

.breadcrumbs-custom-path a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs-custom-path li.active {
    color: #fff;
}

/* Estilos da tabela do carrinho */
.table-custom-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-custom {
    min-width: 750px;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.table-custom th {
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2b2b2b;
    border-bottom: 1px solid #e5e5e5;
}

.table-custom td {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}

.table-custom-figure {
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}

.table-cart-link {
    font-size: 18px;
    font-weight: 500;
    color: #2b2b2b;
    text-decoration: none;
}

.table-cart-link:hover {
    color: #2b2b2b;
    text-decoration: underline;
}

/* Estilos para os botões de ação */
.button-zakaria {
    position: relative;
    overflow: hidden;
    padding: 16px 30px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}

.button-primary {
    background: #2b2b2b;
    color: #fff;
    border: none;
}

.button-primary:hover {
    background: #1a1a1a;
    color: #fff;
}

.button-secondary {
    background: transparent;
    color: #2b2b2b;
    border: 2px solid #2b2b2b;
}

.button-secondary:hover {
    background: #2b2b2b;
    color: #fff;
}

/* Estilos para o grupo de botões */
.group-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}

.group-xl > * {
    margin: 10px;
}

.group-justify {
    justify-content: space-between;
}

.group-middle {
    align-items: center;
}

/* Estilos para o total */
.heading-5 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.heading-3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
}

.text-gray-500 {
    color: #666;
} 