.todocell-card {
            max-width: 900px;
            margin: 40px auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 32px 24px;
            display: flex;
            gap: 32px;
        }
        .todocell-img {
            flex: 1 1 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .todocell-img img {
            max-width: 320px;
            max-height: 320px;
            border-radius: 8px;
            border: 1px solid #eee;
            background: #fafafa;
        }
        .todocell-details {
            flex: 2 1 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .todocell-title {
            font-size: 2em;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .todocell-desc {
            color: #444;
            margin-bottom: 18px;
        }
        .todocell-price {
            font-size: 1.7em;
            color: #b12704;
            font-weight: 700;
            margin-bottom: 18px;
        }
        .todocell-actions button {
            min-width: 180px;
            margin-bottom: 10px;
        }
        .todocell-actions .btn {
            font-size: 1.1em;
        }
        .todocell-actions .btn-warning {
            color: #111;
            background: #ffd814;
            border-color: #fcd200;
        }
        .todocell-actions .btn-warning:hover {
            background: #f7ca00;
        }
        .todocell-quantity {
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .todocell-card { flex-direction: column; padding: 18px 6px; }
            .todocell-img { justify-content: flex-start; }
        }