#sticky-atc-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #0f5132;
    z-index: 9999;
    display: none;
}

.sticky-inner {
    max-width: 1300px;
    margin: auto;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.sticky-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-left img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
}

.sticky-info .title {
    font-size: 18px;
    font-weight: 700;
	color:#000;
}

.sticky-info .meta {
    font-size: 13px;
    color: #f1b600;
}

.badge {
    color: #000;
    font-weight: 600;
    margin-left: 6px;
}

.sticky-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-wrap del {
    color: #999;
    margin-right: 6px;
}

.price-wrap ins {
    color: #0f5132;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.qty {
    display: flex;
    border: 1px solid #ccc;
}

.qty button {
    width: 32px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
}

.qty input {
    width: 40px;
    text-align: center;
    border: none;
}

.add-btn {
    background: #000;
    color: #fff;
    padding: 12px 22px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-left img {
        display: none;
    }
    .sticky-inner {
        flex-wrap: wrap;
    }
}
